Class CfnTopicProps.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CfnTopicProps>
- Enclosing interface:
CfnTopicProps
CfnTopicProps
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds the configured instance.contentBasedDeduplication
(Boolean contentBasedDeduplication) Sets the value ofCfnTopicProps.getContentBasedDeduplication()
contentBasedDeduplication
(IResolvable contentBasedDeduplication) Sets the value ofCfnTopicProps.getContentBasedDeduplication()
dataProtectionPolicy
(Object dataProtectionPolicy) Sets the value ofCfnTopicProps.getDataProtectionPolicy()
displayName
(String displayName) Sets the value ofCfnTopicProps.getDisplayName()
Sets the value ofCfnTopicProps.getFifoTopic()
fifoTopic
(IResolvable fifoTopic) Sets the value ofCfnTopicProps.getFifoTopic()
kmsMasterKeyId
(String kmsMasterKeyId) Sets the value ofCfnTopicProps.getKmsMasterKeyId()
signatureVersion
(String signatureVersion) Sets the value ofCfnTopicProps.getSignatureVersion()
subscription
(List<? extends Object> subscription) Sets the value ofCfnTopicProps.getSubscription()
subscription
(IResolvable subscription) Sets the value ofCfnTopicProps.getSubscription()
Sets the value ofCfnTopicProps.getTags()
Sets the value ofCfnTopicProps.getTopicName()
tracingConfig
(String tracingConfig) Sets the value ofCfnTopicProps.getTracingConfig()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
contentBasedDeduplication
@Stability(Stable) public CfnTopicProps.Builder contentBasedDeduplication(Boolean contentBasedDeduplication) Sets the value ofCfnTopicProps.getContentBasedDeduplication()
- Parameters:
contentBasedDeduplication
- 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,
- Returns:
this
-
contentBasedDeduplication
@Stability(Stable) public CfnTopicProps.Builder contentBasedDeduplication(IResolvable contentBasedDeduplication) Sets the value ofCfnTopicProps.getContentBasedDeduplication()
- Parameters:
contentBasedDeduplication
- 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,
- Returns:
this
-
dataProtectionPolicy
Sets the value ofCfnTopicProps.getDataProtectionPolicy()
- Parameters:
dataProtectionPolicy
- 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.
- Returns:
this
-
displayName
Sets the value ofCfnTopicProps.getDisplayName()
- Parameters:
displayName
- 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.- Returns:
this
-
fifoTopic
Sets the value ofCfnTopicProps.getFifoTopic()
- Parameters:
fifoTopic
- Set to true to create a FIFO topic.- Returns:
this
-
fifoTopic
Sets the value ofCfnTopicProps.getFifoTopic()
- Parameters:
fifoTopic
- Set to true to create a FIFO topic.- Returns:
this
-
kmsMasterKeyId
Sets the value ofCfnTopicProps.getKmsMasterKeyId()
- Parameters:
kmsMasterKeyId
- 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 .
- Returns:
this
-
signatureVersion
Sets the value ofCfnTopicProps.getSignatureVersion()
- Parameters:
signatureVersion
- 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
.- Returns:
this
-
subscription
Sets the value ofCfnTopicProps.getSubscription()
- Parameters:
subscription
- 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.- Returns:
this
-
subscription
Sets the value ofCfnTopicProps.getSubscription()
- Parameters:
subscription
- 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.- Returns:
this
-
tags
Sets the value ofCfnTopicProps.getTags()
- Parameters:
tags
- 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.- Returns:
this
-
topicName
Sets the value ofCfnTopicProps.getTopicName()
- Parameters:
topicName
- 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.
- Returns:
this
-
tracingConfig
Sets the value ofCfnTopicProps.getTracingConfig()
- Parameters:
tracingConfig
- Tracing mode of an Amazon SNS topic. By defaultTracingConfig
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.- Returns:
this
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<CfnTopicProps>
- Returns:
- a new instance of
CfnTopicProps
- Throws:
NullPointerException
- if any required attribute was not provided
-