GetTopicResult

data class GetTopicResult(val archivePolicy: Any? = null, val contentBasedDeduplication: Boolean? = null, val dataProtectionPolicy: Any? = null, val displayName: String? = null, val kmsMasterKeyId: String? = null, val signatureVersion: String? = null, val subscription: List<TopicSubscription>? = null, val tags: List<TopicTag>? = null, val topicArn: String? = null, val tracingConfig: String? = null)

Constructors

Link copied to clipboard
fun GetTopicResult(archivePolicy: Any? = null, contentBasedDeduplication: Boolean? = null, dataProtectionPolicy: Any? = null, displayName: String? = null, kmsMasterKeyId: String? = null, signatureVersion: String? = null, subscription: List<TopicSubscription>? = null, tags: List<TopicTag>? = null, topicArn: String? = null, tracingConfig: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val archivePolicy: Any? = null

The archive policy determines the number of days Amazon SNS retains messages. You can set a retention period from 1 to 365 days.

Link copied to clipboard

Enables content-based deduplication for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId 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 the Publish action.

Link copied to clipboard

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 30720

Link copied to clipboard
val displayName: String? = null

The display name to use for an Amazon SNS topic with SMS subscriptions.

Link copied to clipboard
val kmsMasterKeyId: String? = null

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 in the AWS Key Management Service API Reference. This property applies only to server-side-encryption.

Link copied to clipboard

Version of the Amazon SNS signature used. If the SignatureVersion is 1, Signature is a Base64-encoded SHA1withRSA signature of the Message, MessageId, Type, Timestamp, and TopicArn values. If the SignatureVersion is 2, Signature is a Base64-encoded SHA256withRSA signature of the Message, MessageId, Type, Timestamp, and TopicArn values.

Link copied to clipboard

The SNS subscriptions (endpoints) for this topic.

Link copied to clipboard
val tags: List<TopicTag>? = null
Link copied to clipboard
val topicArn: String? = null
Link copied to clipboard
val tracingConfig: String? = null

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 SNS publisher to its subscriptions. If set to Active, 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.