SNS

sns.platform_application

class sns.platform_application

Discovery Example:

>>> from cloudwanderer import CloudWanderer, ServiceResourceType
>>> from cloudwanderer.storage_connectors import GremlinStorageConnector
>>> cloud_wanderer = CloudWanderer(storage_connectors=[
...        GremlinStorageConnector(
...          endpoint_url="ws://localhost:8182",
...        )
...    ])
>>> cloud_wanderer.write_resources(
...     service_resource_types=[ServiceResourceType("sns","platform_application")]
... )

OpenCypher Example:

How to query resources of this type using OpenCypher in Neptune.

MATCH (platform_application:aws_sns_platform_application)
RETURN *

Gremlin Example:

How to query resources of this type using Gremlin in Neptune/local Gremlin.

g.V().hasLabel('aws_sns_platform_application').out().path().by(valueMap(true))
attributes

Attributes include the following: * AppleCertificateExpiryDate – The expiry date of the SSL certificate used to configure certificate-based authentication. * ApplePlatformTeamID – The Apple developer account ID used to configure token-based authentication. * ApplePlatformBundleID – The app identifier used to configure token-based authentication. * 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.

sns.subscription

class sns.subscription

Discovery Example:

>>> from cloudwanderer import CloudWanderer, ServiceResourceType
>>> from cloudwanderer.storage_connectors import GremlinStorageConnector
>>> cloud_wanderer = CloudWanderer(storage_connectors=[
...        GremlinStorageConnector(
...          endpoint_url="ws://localhost:8182",
...        )
...    ])
>>> cloud_wanderer.write_resources(
...     service_resource_types=[ServiceResourceType("sns","subscription")]
... )

OpenCypher Example:

How to query resources of this type using OpenCypher in Neptune.

MATCH (subscription:aws_sns_subscription)
RETURN *

Gremlin Example:

How to query resources of this type using Gremlin in Neptune/local Gremlin.

g.V().hasLabel('aws_sns_subscription').out().path().by(valueMap(true))
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 Amazon Web Services 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 .

sns.topic

class sns.topic

Discovery Example:

>>> from cloudwanderer import CloudWanderer, ServiceResourceType
>>> from cloudwanderer.storage_connectors import GremlinStorageConnector
>>> cloud_wanderer = CloudWanderer(storage_connectors=[
...        GremlinStorageConnector(
...          endpoint_url="ws://localhost:8182",
...        )
...    ])
>>> cloud_wanderer.write_resources(
...     service_resource_types=[ServiceResourceType("sns","topic")]
... )

OpenCypher Example:

How to query resources of this type using OpenCypher in Neptune.

MATCH (topic:aws_sns_topic)
RETURN *

Gremlin Example:

How to query resources of this type using Gremlin in Neptune/local Gremlin.

g.V().hasLabel('aws_sns_topic').out().path().by(valueMap(true))
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 Amazon Web Services 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 Amazon Web Services 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 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 MessageDeduplicationId parameter for the Publish action.