Class CfnTopic
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
AWS::SNS::Topic
.
The AWS::SNS::Topic
resource creates a topic to which notifications can be published.
One account can create a maximum of 100,000 standard topics and 1,000 FIFO topics. For more information, see Amazon SNS endpoints and quotas in the AWS General Reference .
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.sns.*; Object dataProtectionPolicy; CfnTopic cfnTopic = CfnTopic.Builder.create(this, "MyCfnTopic") .contentBasedDeduplication(false) .dataProtectionPolicy(dataProtectionPolicy) .displayName("displayName") .fifoTopic(false) .kmsMasterKeyId("kmsMasterKeyId") .signatureVersion("signatureVersion") .subscription(List.of(SubscriptionProperty.builder() .endpoint("endpoint") .protocol("protocol") .build())) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .topicName("topicName") .tracingConfig("tracingConfig") .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnTopic
.static interface
Subscription
is an embedded property that describes the subscription endpoints of an Amazon SNS topic.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCreate a newAWS::SNS::Topic
.CfnTopic
(Construct scope, String id, CfnTopicProps props) Create a newAWS::SNS::Topic
.protected
CfnTopic
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnTopic
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionReturns the ARN of an Amazon SNS topic.Returns the name of an Amazon SNS topic.Enables content-based deduplication for FIFO topics.The body of the policy document you want to use for this topic.The display name to use for an Amazon SNS topic with SMS subscriptions.Set to true to create a FIFO topic.The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK.The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS.The Amazon SNS subscriptions (endpoints) for this topic.getTags()
The list of tags to add to a new topic.The name of the topic you want to create.Tracing mode of an Amazon SNS topic.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
Enables content-based deduplication for FIFO topics.void
Enables content-based deduplication for FIFO topics.void
setDataProtectionPolicy
(Object value) The body of the policy document you want to use for this topic.void
setDisplayName
(String value) The display name to use for an Amazon SNS topic with SMS subscriptions.void
setFifoTopic
(Boolean value) Set to true to create a FIFO topic.void
setFifoTopic
(IResolvable value) Set to true to create a FIFO topic.void
setKmsMasterKeyId
(String value) The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK.void
setSignatureVersion
(String value) The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS.void
setSubscription
(List<Object> value) The Amazon SNS subscriptions (endpoints) for this topic.void
setSubscription
(IResolvable value) The Amazon SNS subscriptions (endpoints) for this topic.void
setTopicName
(String value) The name of the topic you want to create.void
setTracingConfig
(String value) Tracing mode of an Amazon SNS topic.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnTopic
protected CfnTopic(software.amazon.jsii.JsiiObjectRef objRef) -
CfnTopic
protected CfnTopic(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnTopic
@Stability(Stable) public CfnTopic(@NotNull Construct scope, @NotNull String id, @Nullable CfnTopicProps props) Create a newAWS::SNS::Topic
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
CfnTopic
Create a newAWS::SNS::Topic
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrTopicArn
Returns the ARN of an Amazon SNS topic. -
getAttrTopicName
Returns the name of an Amazon SNS topic. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
The list of tags to add to a new topic.To be able to tag a topic on creation, you must have the
sns:CreateTopic
andsns:TagResource
permissions. -
getDataProtectionPolicy
The body of the policy document you want to use for this topic.You can only add one policy per topic.
The policy must be in JSON string format.
Length Constraints: Maximum length of 30,720.
-
setDataProtectionPolicy
The body of the policy document you want to use for this topic.You can only add one policy per topic.
The policy must be in JSON string format.
Length Constraints: Maximum length of 30,720.
-
getContentBasedDeduplication
Enables content-based deduplication for FIFO topics.- By default,
ContentBasedDeduplication
is set tofalse
. If you create a FIFO topic and this attribute isfalse
, you must specify a value for theMessageDeduplicationId
parameter for the Publish action. - When you set
ContentBasedDeduplication
totrue
, Amazon SNS uses a SHA-256 hash to generate theMessageDeduplicationId
using the body of the message (but not the attributes of the message).
(Optional) To override the generated value, you can specify a value for the the
MessageDeduplicationId
parameter for thePublish
action. - By default,
-
setContentBasedDeduplication
Enables content-based deduplication for FIFO topics.- By default,
ContentBasedDeduplication
is set tofalse
. If you create a FIFO topic and this attribute isfalse
, you must specify a value for theMessageDeduplicationId
parameter for the Publish action. - When you set
ContentBasedDeduplication
totrue
, Amazon SNS uses a SHA-256 hash to generate theMessageDeduplicationId
using the body of the message (but not the attributes of the message).
(Optional) To override the generated value, you can specify a value for the the
MessageDeduplicationId
parameter for thePublish
action. - By default,
-
setContentBasedDeduplication
Enables content-based deduplication for FIFO topics.- By default,
ContentBasedDeduplication
is set tofalse
. If you create a FIFO topic and this attribute isfalse
, you must specify a value for theMessageDeduplicationId
parameter for the Publish action. - When you set
ContentBasedDeduplication
totrue
, Amazon SNS uses a SHA-256 hash to generate theMessageDeduplicationId
using the body of the message (but not the attributes of the message).
(Optional) To override the generated value, you can specify a value for the the
MessageDeduplicationId
parameter for thePublish
action. - By default,
-
getDisplayName
The display name to use for an Amazon SNS topic with SMS subscriptions.The display name must be maximum 100 characters long, including hyphens (-), underscores (_), spaces, and tabs.
-
setDisplayName
The display name to use for an Amazon SNS topic with SMS subscriptions.The display name must be maximum 100 characters long, including hyphens (-), underscores (_), spaces, and tabs.
-
getFifoTopic
Set to true to create a FIFO topic. -
setFifoTopic
Set to true to create a FIFO topic. -
setFifoTopic
Set to true to create a FIFO topic. -
getKmsMasterKeyId
The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK.For more information, see Key terms . For more examples, see
[KeyId](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters)
in the AWS Key Management Service API Reference .This property applies only to server-side-encryption .
-
setKmsMasterKeyId
The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK.For more information, see Key terms . For more examples, see
[KeyId](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters)
in the AWS Key Management Service API Reference .This property applies only to server-side-encryption .
-
getSignatureVersion
The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS.By default,
SignatureVersion
is set to1
. -
setSignatureVersion
The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS.By default,
SignatureVersion
is set to1
. -
getSubscription
The Amazon SNS subscriptions (endpoints) for this topic.If you specify the
Subscription
property in theAWS::SNS::Topic
resource and it creates an associated subscription resource, the associated subscription is not deleted when theAWS::SNS::Topic
resource is deleted. -
setSubscription
The Amazon SNS subscriptions (endpoints) for this topic.If you specify the
Subscription
property in theAWS::SNS::Topic
resource and it creates an associated subscription resource, the associated subscription is not deleted when theAWS::SNS::Topic
resource is deleted. -
setSubscription
The Amazon SNS subscriptions (endpoints) for this topic.If you specify the
Subscription
property in theAWS::SNS::Topic
resource and it creates an associated subscription resource, the associated subscription is not deleted when theAWS::SNS::Topic
resource is deleted. -
getTopicName
The name of the topic you want to create.Topic names must include only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long. FIFO topic names must end with
.fifo
.If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the topic name. For more information, see Name type .
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
-
setTopicName
The name of the topic you want to create.Topic names must include only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long. FIFO topic names must end with
.fifo
.If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the topic name. For more information, see Name type .
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
-
getTracingConfig
Tracing mode of an Amazon SNS topic.By default
TracingConfig
is set toPassThrough
, and the topic passes through the tracing header it receives from an SNS publisher to its subscriptions. If set toActive
, SNS will vend X-Ray segment data to topic owner account if the sampled flag in the tracing header is true. Only supported on standard topics. -
setTracingConfig
Tracing mode of an Amazon SNS topic.By default
TracingConfig
is set toPassThrough
, and the topic passes through the tracing header it receives from an SNS publisher to its subscriptions. If set toActive
, SNS will vend X-Ray segment data to topic owner account if the sampled flag in the tracing header is true. Only supported on standard topics.
-