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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPublicRepository.RepositoryCatalogDataProperty
static final class
An implementation forCfnPublicRepository.RepositoryCatalogDataProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The longform description of the contents of the repository.The architecture tags that are associated with the repository.The operating system tags that are associated with the repository.default String
The short description of the repository.default String
The longform usage details of the contents of the repository.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAboutText
The longform description of the contents of the repository.This text appears in the repository details on the Amazon ECR Public Gallery.
- See Also:
-
getArchitectures
The architecture tags that are associated with the repository.- See Also:
-
getOperatingSystems
The operating system tags that are associated with the repository.- See Also:
-
getRepositoryDescription
The short description of the repository.- See Also:
-
getUsageText
The longform usage details of the contents of the repository.The usage text provides context for users of the repository.
- See Also:
-
builder
-