@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.784Z") @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.customerprofiles.*;
CfnDomainProps cfnDomainProps = CfnDomainProps.builder()
.domainName("domainName")
// the properties below are optional
.deadLetterQueueUrl("deadLetterQueueUrl")
.defaultEncryptionKey("defaultEncryptionKey")
.defaultExpirationDays(123)
.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 |
getDeadLetterQueueUrl()
The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.
|
default String |
getDefaultEncryptionKey()
The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified.
|
default Number |
getDefaultExpirationDays()
The default number of days until the data within the domain expires.
|
String |
getDomainName()
The unique name of the domain.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default String getDeadLetterQueueUrl()
You must set up a policy on the DeadLetterQueue for the SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the DeadLetterQueue.
@Stability(value=Stable) @Nullable default String getDefaultEncryptionKey()
It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
@Stability(value=Stable) @Nullable default Number getDefaultExpirationDays()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDomainProps.Builder builder()
CfnDomainProps.Builder of CfnDomainPropsCopyright © 2022. All rights reserved.