SubscriptionOptions
- class aws_cdk.aws_sns.SubscriptionOptions(*, endpoint, protocol, dead_letter_queue=None, filter_policy=None, raw_message_delivery=None, region=None, subscription_role_arn=None)
Bases:
object
Options for creating a new subscription.
- Parameters:
endpoint (
str
) – The subscription endpoint. The meaning of this value depends on the value for ‘protocol’.protocol (
SubscriptionProtocol
) – What type of subscription to add.dead_letter_queue (
Optional
[IQueue
]) – Queue to be used as dead letter queue. If not passed no dead letter queue is enabled. Default: - No dead letter queue enabled.filter_policy (
Optional
[Mapping
[str
,SubscriptionFilter
]]) – The filter policy. Default: - all messages are deliveredraw_message_delivery (
Optional
[bool
]) – true 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. For more information, see GetSubscriptionAttributes in the Amazon Simple Notification Service API Reference. Default: falseregion (
Optional
[str
]) – The region where the topic resides, in the case of cross-region subscriptions. Default: - the region where the CloudFormation stack is being deployed.subscription_role_arn (
Optional
[str
]) – Arn of role allowing access to firehose delivery stream. Required for a firehose subscription protocol. Default: - No subscription role is provided
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_sns as sns import aws_cdk.aws_sqs as sqs # queue: sqs.Queue # subscription_filter: sns.SubscriptionFilter subscription_options = sns.SubscriptionOptions( endpoint="endpoint", protocol=sns.SubscriptionProtocol.HTTP, # the properties below are optional dead_letter_queue=queue, filter_policy={ "filter_policy_key": subscription_filter }, raw_message_delivery=False, region="region", subscription_role_arn="subscriptionRoleArn" )
Attributes
- dead_letter_queue
Queue to be used as dead letter queue.
If not passed no dead letter queue is enabled.
- Default:
No dead letter queue enabled.
- endpoint
The subscription endpoint.
The meaning of this value depends on the value for ‘protocol’.
- filter_policy
The filter policy.
- Default:
all messages are delivered
- protocol
What type of subscription to add.
- raw_message_delivery
true 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. For more information, see GetSubscriptionAttributes in the Amazon Simple Notification Service API Reference.
- Default:
false
- region
The region where the topic resides, in the case of cross-region subscriptions.
- Default:
the region where the CloudFormation stack is being deployed.
- Link:
- subscription_role_arn
Arn of role allowing access to firehose delivery stream.
Required for a firehose subscription protocol.
- Default:
No subscription role is provided