@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.617Z") @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.voiceid.*;
CfnDomainProps cfnDomainProps = CfnDomainProps.builder()
.name("name")
.serverSideEncryptionConfiguration(ServerSideEncryptionConfigurationProperty.builder()
.kmsKeyId("kmsKeyId")
.build())
// the properties below are optional
.description("description")
.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() |
default String |
getDescription()
The client-provided description of the domain.
|
String |
getName()
The client-provided name for the domain.
|
Object |
getServerSideEncryptionConfiguration()
The server-side encryption configuration containing the KMS Key Identifier you want Voice ID to use to encrypt your data.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getServerSideEncryptionConfiguration()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDomainProps.Builder builder()
CfnDomainProps.Builder of CfnDomainPropsCopyright © 2022. All rights reserved.