Given a valid region name, return a boto.sns.connection.SNSConnection.
| Type : | str |
|---|---|
| Parameters: | region_name – The name of the region to connect to. |
| Return type: | boto.sns.connection.SNSConnection or None |
| Returns: | A connection to the given region, or None if an invalid region name is given |
Find and return a boto.regioninfo.RegionInfo object given a region name.
| Type : | str |
|---|---|
| Param : | The name of the region. |
| Return type: | boto.regioninfo.RegionInfo |
| Returns: | The RegionInfo object for the given region or None if an invalid region name is provided. |
Get all available regions for the SNS service.
| Return type: | list |
|---|---|
| Returns: | A list of boto.regioninfo.RegionInfo instances |
Adds a statement to a topic’s access control policy, granting access for the specified AWS accounts to the specified actions.
| Parameters: |
|
|---|
Get properties of a Topic
| Parameters: |
|---|
Get list of all subscriptions.
| Parameters: | next_token (string) – Token returned by the previous call to this method. |
|---|
Get list of all subscriptions to a specific topic.
| Parameters: |
|---|
| Parameters: | next_token (string) – Token returned by the previous call to this method. |
|---|
Get attributes of a Topic
| Parameters: | topic (string) – The ARN of the topic. |
|---|
Get properties of a Topic
| Parameters: |
|---|
Removes a statement from a topic’s access control policy.
| Parameters: |
|---|
Get attributes of a Topic
| Parameters: |
|---|
Subscribe to a Topic.
| Parameters: |
|
|---|
Subscribe an SQS queue to a topic.
This is convenience method that handles most of the complexity involved in using ans SQS queue as an endpoint for an SNS topic. To achieve this the following operations are performed:
| Parameters: |
|
|---|