Interface CfnPublicRepository.RepositoryCatalogDataProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPublicRepository.RepositoryCatalogDataProperty.Jsii$Proxy
Enclosing class:
CfnPublicRepository

@Stability(Stable) public static interface CfnPublicRepository.RepositoryCatalogDataProperty extends software.amazon.jsii.JsiiSerializable
The details about the repository that are publicly visible in the Amazon ECR Public Gallery.

For more information, see Amazon ECR Public repository catalog data in the Amazon ECR Public User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecr.*;
 RepositoryCatalogDataProperty repositoryCatalogDataProperty = RepositoryCatalogDataProperty.builder()
         .aboutText("aboutText")
         .architectures(List.of("architectures"))
         .operatingSystems(List.of("operatingSystems"))
         .repositoryDescription("repositoryDescription")
         .usageText("usageText")
         .build();
 

See Also: