@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-10T18:01:58.845Z") @Stability(value=Stable) public interface CfnDomainProps 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;
CfnDomainProps cfnDomainProps = CfnDomainProps.builder()
.domainName("domainName")
// the properties below are optional
.encryptionKey("encryptionKey")
.permissionsPolicyDocument(permissionsPolicyDocument)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDomainProps.Builder
A builder for
CfnDomainProps |
static class |
CfnDomainProps.Jsii$Proxy
An implementation for
CfnDomainProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDomainProps.Builder |
builder() |
String |
getDomainName()
`AWS::CodeArtifact::Domain.DomainName`.
|
default String |
getEncryptionKey()
`AWS::CodeArtifact::Domain.EncryptionKey`.
|
default Object |
getPermissionsPolicyDocument()
`AWS::CodeArtifact::Domain.PermissionsPolicyDocument`.
|
default List<CfnTag> |
getTags()
`AWS::CodeArtifact::Domain.Tags`.
|
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default String getEncryptionKey()
@Stability(value=Stable) @Nullable default Object getPermissionsPolicyDocument()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDomainProps.Builder builder()
CfnDomainProps.Builder of CfnDomainPropsCopyright © 2021. All rights reserved.