interface CfnTopicProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SNS.CfnTopicProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssns#CfnTopicProps |
Java | software.amazon.awscdk.services.sns.CfnTopicProps |
Python | aws_cdk.aws_sns.CfnTopicProps |
TypeScript | aws-cdk-lib » aws_sns » CfnTopicProps |
Properties for defining a CfnTopic
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topic.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sns as sns } from 'aws-cdk-lib';
declare const archivePolicy: any;
declare const dataProtectionPolicy: any;
const cfnTopicProps: sns.CfnTopicProps = {
archivePolicy: archivePolicy,
contentBasedDeduplication: false,
dataProtectionPolicy: dataProtectionPolicy,
deliveryStatusLogging: [{
protocol: 'protocol',
// the properties below are optional
failureFeedbackRoleArn: 'failureFeedbackRoleArn',
successFeedbackRoleArn: 'successFeedbackRoleArn',
successFeedbackSampleRate: 'successFeedbackSampleRate',
}],
displayName: 'displayName',
fifoTopic: false,
kmsMasterKeyId: 'kmsMasterKeyId',
signatureVersion: 'signatureVersion',
subscription: [{
endpoint: 'endpoint',
protocol: 'protocol',
}],
tags: [{
key: 'key',
value: 'value',
}],
topicName: 'topicName',
tracingConfig: 'tracingConfig',
};
Properties
Name | Type | Description |
---|---|---|
archive | any | The ArchivePolicy determines the number of days Amazon SNS retains messages in FIFO topics. |
content | boolean | IResolvable | ContentBasedDeduplication enables deduplication of messages based on their content for FIFO topics. |
data | any | The body of the policy document you want to use for this topic. |
delivery | IResolvable | IResolvable | Logging [] | The DeliveryStatusLogging configuration enables you to log the delivery status of messages sent from your Amazon SNS topic to subscribed endpoints with the following supported delivery protocols:. |
display | string | The display name to use for an Amazon SNS topic with SMS subscriptions. |
fifo | boolean | IResolvable | Set to true to create a FIFO topic. |
kms | string | The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK. |
signature | string | 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. |
subscription? | IResolvable | IResolvable | Subscription [] | The Amazon SNS subscriptions (endpoints) for this topic. |
tags? | Cfn [] | The list of tags to add to a new topic. |
topic | string | The name of the topic you want to create. |
tracing | string | Tracing mode of an Amazon SNS topic. |
archivePolicy?
Type:
any
(optional)
The ArchivePolicy
determines the number of days Amazon SNS retains messages in FIFO topics.
You can set a retention period ranging from 1 to 365 days. This property is only applicable to FIFO topics; attempting to use it with standard topics will result in a creation failure.
contentBasedDeduplication?
Type:
boolean |
IResolvable
(optional)
ContentBasedDeduplication
enables deduplication of messages based on their content for FIFO topics.
By default, this property is set to false. If you create a FIFO topic with ContentBasedDeduplication
set to false, you must provide a MessageDeduplicationId
for each Publish
action. When set to true, Amazon SNS automatically generates a MessageDeduplicationId
using a SHA-256 hash of the message body (excluding message attributes). You can optionally override this generated value by specifying a MessageDeduplicationId
in the Publish
action. Note that this property only applies to FIFO topics; using it with standard topics will cause the creation to fail.
dataProtectionPolicy?
Type:
any
(optional)
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.
deliveryStatusLogging?
Type:
IResolvable
|
IResolvable
|
Logging
[]
(optional)
The DeliveryStatusLogging
configuration enables you to log the delivery status of messages sent from your Amazon SNS topic to subscribed endpoints with the following supported delivery protocols:.
- HTTP
- Amazon Kinesis Data Firehose
- AWS Lambda
- Platform application endpoint
- Amazon Simple Queue Service
Once configured, log entries are sent to Amazon CloudWatch Logs.
displayName?
Type:
string
(optional)
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.
fifoTopic?
Type:
boolean |
IResolvable
(optional)
Set to true to create a FIFO topic.
kmsMasterKeyId?
Type:
string
(optional)
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 .
signatureVersion?
Type:
string
(optional)
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 to 1
.
subscription?
Type:
IResolvable
|
IResolvable
|
Subscription
[]
(optional)
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.
tags?
Type:
Cfn
[]
(optional)
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.
topicName?
Type:
string
(optional)
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.
tracingConfig?
Type:
string
(optional)
Tracing mode of an Amazon SNS topic.
By default TracingConfig
is set to PassThrough
, and the topic passes through the tracing header it receives from an Amazon SNS publisher to its subscriptions. If set to Active
, Amazon SNS will vend X-Ray segment data to topic owner account if the sampled flag in the tracing header is true.