@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-10T18:01:58.846Z") @Stability(value=Stable) public interface CfnRepositoryProps 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.codeartifact.*;
Object permissionsPolicyDocument;
CfnRepositoryProps cfnRepositoryProps = CfnRepositoryProps.builder()
.domainName("domainName")
.repositoryName("repositoryName")
// the properties below are optional
.description("description")
.domainOwner("domainOwner")
.externalConnections(List.of("externalConnections"))
.permissionsPolicyDocument(permissionsPolicyDocument)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.upstreams(List.of("upstreams"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRepositoryProps.Builder
A builder for
CfnRepositoryProps |
static class |
CfnRepositoryProps.Jsii$Proxy
An implementation for
CfnRepositoryProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnRepositoryProps.Builder |
builder() |
default String |
getDescription()
`AWS::CodeArtifact::Repository.Description`.
|
String |
getDomainName()
`AWS::CodeArtifact::Repository.DomainName`.
|
default String |
getDomainOwner()
`AWS::CodeArtifact::Repository.DomainOwner`.
|
default List<String> |
getExternalConnections()
`AWS::CodeArtifact::Repository.ExternalConnections`.
|
default Object |
getPermissionsPolicyDocument()
`AWS::CodeArtifact::Repository.PermissionsPolicyDocument`.
|
String |
getRepositoryName()
`AWS::CodeArtifact::Repository.RepositoryName`.
|
default List<CfnTag> |
getTags()
`AWS::CodeArtifact::Repository.Tags`.
|
default List<String> |
getUpstreams()
`AWS::CodeArtifact::Repository.Upstreams`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default String getDomainOwner()
@Stability(value=Stable) @Nullable default List<String> getExternalConnections()
@Stability(value=Stable) @Nullable default Object getPermissionsPolicyDocument()
@Stability(value=Stable) @NotNull String getRepositoryName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default List<String> getUpstreams()
@Stability(value=Stable) static CfnRepositoryProps.Builder builder()
CfnRepositoryProps.Builder of CfnRepositoryPropsCopyright © 2021. All rights reserved.