SNS

class sns.platform_application

Example:

resources = storage_connector.read_resources(
    service="sns",
    resource_type="platform_application")
for resource in resources:
    resource.load()
    print(resource.urn)            print(resource.attributes)
attributes

Attributes include the following: * EventEndpointCreated – Topic ARN to which EndpointCreated event notifications should be sent. * EventEndpointDeleted – Topic ARN to which EndpointDeleted event notifications should be sent. * EventEndpointUpdated – Topic ARN to which EndpointUpdate event notifications should be sent. * EventDeliveryFailure – Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application’s endpoints.

class sns.subscription

Example:

resources = storage_connector.read_resources(
    service="sns",
    resource_type="subscription")
for resource in resources:
    resource.load()
    print(resource.urn)            print(resource.attributes)
attributes

A map of the subscription’s attributes. Attributes in this map include the following: * ConfirmationWasAuthenticatedtrue if the subscription confirmation request was authenticated. * DeliveryPolicy – The JSON serialization of the subscription’s delivery policy. * EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults. * FilterPolicy – The filter policy JSON that is assigned to the subscription. For more information, see Amazon SNS Message Filtering in the Amazon SNS Developer Guide . * Owner – The AWS account ID of the subscription’s owner. * PendingConfirmationtrue if the subscription hasn’t been confirmed. To confirm a pending subscription, call the ConfirmSubscription action with a confirmation token. * RawMessageDeliverytrue if raw message delivery is enabled for the subscription. Raw messages are free of JSON formatting and can be sent to HTTP/S and Amazon SQS endpoints. * RedrivePolicy – When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can’t be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing. * SubscriptionArn – The subscription’s ARN. * TopicArn – The topic ARN that the subscription is associated with. The following attribute applies only to Amazon Kinesis Data Firehose delivery stream subscriptions: * SubscriptionRoleArn – The ARN of the IAM role that has the following: * Permission to write to the Kinesis Data Firehose delivery stream * Amazon SNS listed as a trusted entity Specifying a valid ARN for this attribute is required for Kinesis Data Firehose delivery stream subscriptions. For more information, see Fanout to Kinesis Data Firehose delivery streams in the Amazon SNS Developer Guide .

class sns.topic

Example:

resources = storage_connector.read_resources(
    service="sns",
    resource_type="topic")
for resource in resources:
    resource.load()
    print(resource.urn)            print(resource.attributes)
attributes

A map of the topic’s attributes. Attributes in this map include the following: * DeliveryPolicy – The JSON serialization of the topic’s delivery policy. * DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints. * Owner – The AWS account ID of the topic’s owner. * Policy – The JSON serialization of the topic’s access control policy. * SubscriptionsConfirmed – The number of confirmed subscriptions for the topic. * SubscriptionsDeleted – The number of deleted subscriptions for the topic. * SubscriptionsPending – The number of subscriptions pending confirmation for the topic. * TopicArn – The topic’s ARN. * EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account. The following attribute applies only to server-side-encryption : * 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 in the AWS Key Management Service API Reference . The following attributes apply only to FIFO topics : * FifoTopic – When this is set to true , a FIFO topic is created. * ContentBasedDeduplication – 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.