@Generated(value="jsii-pacmak/1.54.0 (build b1b977a)", date="2022-02-19T00:19:28.706Z") @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()
A string that specifies the name of the requested domain.
|
default String |
getEncryptionKey()
The key used to encrypt the domain.
|
default Object |
getPermissionsPolicyDocument()
The document that defines the resource policy that is set on a domain.
|
default List<CfnTag> |
getTags()
A list of tags to be applied to the domain.
|
@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 © 2022. All rights reserved.