@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:09:24.478Z") @Stability(value=Stable) public interface CfnPublicRepositoryProps extends software.amazon.jsii.JsiiSerializable
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.*; Object repositoryCatalogData; Object repositoryPolicyText; CfnPublicRepositoryProps cfnPublicRepositoryProps = CfnPublicRepositoryProps.builder() .repositoryCatalogData(repositoryCatalogData) .repositoryName("repositoryName") .repositoryPolicyText(repositoryPolicyText) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPublicRepositoryProps.Builder
A builder for
CfnPublicRepositoryProps |
static class |
CfnPublicRepositoryProps.Jsii$Proxy
An implementation for
CfnPublicRepositoryProps |
Modifier and Type | Method and Description |
---|---|
static CfnPublicRepositoryProps.Builder |
builder() |
default Object |
getRepositoryCatalogData()
The details about the repository that are publicly visible in the Amazon ECR Public Gallery.
|
default String |
getRepositoryName()
The name to use for the public repository.
|
default Object |
getRepositoryPolicyText()
The JSON repository policy text to apply to the public repository.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @Nullable default Object getRepositoryCatalogData()
For more information, see Amazon ECR Public repository catalog data in the Amazon ECR Public User Guide .
@Stability(value=Stable) @Nullable default String getRepositoryName()
The repository name may be specified on its own (such as nginx-web-app
) or it can be prepended with a namespace to group the repository into a category (such as project-a/nginx-web-app
). If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the repository name. For more information, see Name Type .
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
@Stability(value=Stable) @Nullable default Object getRepositoryPolicyText()
For more information, see Amazon ECR Public repository policies in the Amazon ECR Public User Guide .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnPublicRepositoryProps.Builder builder()
CfnPublicRepositoryProps.Builder
of CfnPublicRepositoryProps
Copyright © 2023. All rights reserved.