@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.783Z") @Stability(value=Stable) public class CfnDomain extends CfnResource implements IInspectable
Specifies an Amazon Connect Customer Profiles Domain.
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.*;
CfnDomain cfnDomain = CfnDomain.Builder.create(this, "MyCfnDomain")
.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 | Class and Description |
|---|---|
static class |
CfnDomain.Builder
A fluent builder for
CfnDomain. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnDomain(software.constructs.Construct scope,
String id,
CfnDomainProps props)
Create a new `AWS::CustomerProfiles::Domain`.
|
protected |
CfnDomain(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnDomain(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrCreatedAt()
The timestamp of when the domain was created.
|
String |
getAttrLastUpdatedAt()
The timestamp of when the domain was most recently edited.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getDeadLetterQueueUrl()
The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.
|
String |
getDefaultEncryptionKey()
The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified.
|
Number |
getDefaultExpirationDays()
The default number of days until the data within the domain expires.
|
String |
getDomainName()
The unique name of the domain.
|
TagManager |
getTags()
The tags used to organize, track, or control access for this resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setDeadLetterQueueUrl(String value)
The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.
|
void |
setDefaultEncryptionKey(String value)
The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified.
|
void |
setDefaultExpirationDays(Number value)
The default number of days until the data within the domain expires.
|
void |
setDomainName(String value)
The unique name of the domain.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnDomain(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnDomain(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnDomain(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnDomainProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrCreatedAt()
@Stability(value=Stable) @NotNull public String getAttrLastUpdatedAt()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @NotNull public String getDomainName()
@Stability(value=Stable)
public void setDomainName(@NotNull
String value)
@Stability(value=Stable) @Nullable public 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)
public void setDeadLetterQueueUrl(@Nullable
String value)
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 public String getDefaultEncryptionKey()
It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
@Stability(value=Stable)
public void setDefaultEncryptionKey(@Nullable
String value)
It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
@Stability(value=Stable) @Nullable public Number getDefaultExpirationDays()
@Stability(value=Stable)
public void setDefaultExpirationDays(@Nullable
Number value)
Copyright © 2022. All rights reserved.