Interface CfnTopicProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicProps.Jsii$Proxy
CfnTopic.
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;
CfnTopicProps cfnTopicProps = CfnTopicProps.builder()
.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicPropsstatic final classAn implementation forCfnTopicProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTopicProps.Builderbuilder()default ObjectEnables content-based deduplication for FIFO topics.default ObjectThe body of the policy document you want to use for this topic.default StringThe display name to use for an Amazon SNS topic with SMS subscriptions.default ObjectSet to true to create a FIFO topic.default StringThe ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK.default StringThe 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.default ObjectThe Amazon SNS subscriptions (endpoints) for this topic.getTags()The list of tags to add to a new topic.default StringThe name of the topic you want to create.default StringTracing mode of an Amazon SNS topic.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContentBasedDeduplication
Enables content-based deduplication for FIFO topics.- By default,
ContentBasedDeduplicationis set tofalse. If you create a FIFO topic and this attribute isfalse, you must specify a value for theMessageDeduplicationIdparameter for the Publish action. - When you set
ContentBasedDeduplicationtotrue, Amazon SNS uses a SHA-256 hash to generate theMessageDeduplicationIdusing 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
MessageDeduplicationIdparameter for thePublishaction. - By default,
-
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.
-
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.
-
getFifoTopic
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 .
-
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,
SignatureVersionis set to1. -
getSubscription
The Amazon SNS subscriptions (endpoints) for this topic.If you specify the
Subscriptionproperty in theAWS::SNS::Topicresource and it creates an associated subscription resource, the associated subscription is not deleted when theAWS::SNS::Topicresource is deleted. -
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:CreateTopicandsns:TagResourcepermissions. -
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.
-
getTracingConfig
Tracing mode of an Amazon SNS topic.By default
TracingConfigis 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. -
builder
- Returns:
- a
CfnTopicProps.BuilderofCfnTopicProps
-