Sns-2010-03-31 - AWS SDK for PHP V3 (original) (raw)

Client: Aws\Sns\SnsClient

Service ID: sns

Version: 2010-03-31

This page describes the parameters and results for the operations of the Amazon Simple Notification Service (2010-03-31), and shows how to use the Aws\Sns\SnsClientobject to call the described operations. This documentation is specific to the 2010-03-31 API version of the service.

Operation Summary

Each of the following operations can be created from a client using$client->getCommand('CommandName'), where "CommandName" is the name of one of the following operations. Note: a command is a value that encapsulates an operation and the parameters used to create an HTTP request.

You can also create and send a command immediately using the magic methods available on a client object: $client->commandName(/* parameters */). You can send the command asynchronously (returning a promise) by appending the word "Async" to the operation name: $client->commandNameAsync(/* parameters */).

AddPermission ( array $params = [] )

Adds a statement to a topic's access control policy, granting access for the specified Amazon Web Services accounts to the specified actions.

CheckIfPhoneNumberIsOptedOut ( array $params = [] )

Accepts a phone number and indicates whether the phone holder has opted out of receiving SMS messages from your Amazon Web Services account.

ConfirmSubscription ( array $params = [] )

Verifies an endpoint owner's intent to receive messages by validating the token sent to the endpoint by an earlier Subscribe action.

CreatePlatformApplication ( array $params = [] )

Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register.

CreatePlatformEndpoint ( array $params = [] )

Creates an endpoint for a device and mobile app on one of the supported push notification services, such as GCM (Firebase Cloud Messaging) and APNS.

CreateSMSSandboxPhoneNumber ( array $params = [] )

Adds a destination phone number to an Amazon Web Services account in the SMS sandbox and sends a one-time password (OTP) to that phone number.

CreateTopic ( array $params = [] )

Creates a topic to which notifications can be published.

DeleteEndpoint ( array $params = [] )

Deletes the endpoint for a device and mobile app from Amazon SNS.

DeletePlatformApplication ( array $params = [] )

Deletes a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging).

DeleteSMSSandboxPhoneNumber ( array $params = [] )

Deletes an Amazon Web Services account's verified or pending phone number from the SMS sandbox.

DeleteTopic ( array $params = [] )

Deletes a topic and all its subscriptions.

GetDataProtectionPolicy ( array $params = [] )

Retrieves the specified inline DataProtectionPolicy document that is stored in the specified Amazon SNS topic.

GetEndpointAttributes ( array $params = [] )

Retrieves the endpoint attributes for a device on one of the supported push notification services, such as GCM (Firebase Cloud Messaging) and APNS.

GetPlatformApplicationAttributes ( array $params = [] )

Retrieves the attributes of the platform application object for the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging).

GetSMSAttributes ( array $params = [] )

Returns the settings for sending SMS messages from your Amazon Web Services account.

GetSMSSandboxAccountStatus ( array $params = [] )

Retrieves the SMS sandbox status for the calling Amazon Web Services account in the target Amazon Web Services Region.

GetSubscriptionAttributes ( array $params = [] )

Returns all of the properties of a subscription.

GetTopicAttributes ( array $params = [] )

Returns all of the properties of a topic.

ListEndpointsByPlatformApplication ( array $params = [] )

Lists the endpoints and endpoint attributes for devices in a supported push notification service, such as GCM (Firebase Cloud Messaging) and APNS.

ListOriginationNumbers ( array $params = [] )

Lists the calling Amazon Web Services account's dedicated origination numbers and their metadata.

ListPhoneNumbersOptedOut ( array $params = [] )

Returns a list of phone numbers that are opted out, meaning you cannot send SMS messages to them.

ListPlatformApplications ( array $params = [] )

Lists the platform application objects for the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging).

ListSMSSandboxPhoneNumbers ( array $params = [] )

Lists the calling Amazon Web Services account's current verified and pending destination phone numbers in the SMS sandbox.

ListSubscriptions ( array $params = [] )

Returns a list of the requester's subscriptions.

ListSubscriptionsByTopic ( array $params = [] )

Returns a list of the subscriptions to a specific topic.

ListTagsForResource ( array $params = [] )

List all tags added to the specified Amazon SNS topic.

ListTopics ( array $params = [] )

Returns a list of the requester's topics.

OptInPhoneNumber ( array $params = [] )

Use this request to opt in a phone number that is opted out, which enables you to resume sending SMS messages to the number.

Publish ( array $params = [] )

Sends a message to an Amazon SNS topic, a text message (SMS message) directly to a phone number, or a message to a mobile platform endpoint (when you specify the TargetArn).

PublishBatch ( array $params = [] )

Publishes up to 10 messages to the specified topic in a single batch.

PutDataProtectionPolicy ( array $params = [] )

Adds or updates an inline policy document that is stored in the specified Amazon SNS topic.

RemovePermission ( array $params = [] )

Removes a statement from a topic's access control policy.

SetEndpointAttributes ( array $params = [] )

Sets the attributes for an endpoint for a device on one of the supported push notification services, such as GCM (Firebase Cloud Messaging) and APNS.

SetPlatformApplicationAttributes ( array $params = [] )

Sets the attributes of the platform application object for the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging).

SetSMSAttributes ( array $params = [] )

Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports.

SetSubscriptionAttributes ( array $params = [] )

Allows a subscription owner to set an attribute of the subscription to a new value.

SetTopicAttributes ( array $params = [] )

Allows a topic owner to set an attribute of the topic to a new value.

Subscribe ( array $params = [] )

Subscribes an endpoint to an Amazon SNS topic.

TagResource ( array $params = [] )

Add tags to the specified Amazon SNS topic.

Unsubscribe ( array $params = [] )

Deletes a subscription.

UntagResource ( array $params = [] )

Remove tags from the specified Amazon SNS topic.

VerifySMSSandboxPhoneNumber ( array $params = [] )

Verifies a destination phone number with a one-time password (OTP) for the calling Amazon Web Services account.

Paginators

Paginators handle automatically iterating over paginated API results. Paginators are associated with specific API operations, and they accept the parameters that the corresponding API operation accepts. You can get a paginator from a client class using getPaginator($paginatorName, $operationParameters). This client supports the following paginators:

ListEndpointsByPlatformApplication

ListOriginationNumbers

ListPhoneNumbersOptedOut

ListPlatformApplications

ListSMSSandboxPhoneNumbers

ListSubscriptions

ListSubscriptionsByTopic

ListTopics

Operations

AddPermission

result=result = result=client->addPermission([/* ... /]); promise=promise = promise=client->addPermissionAsync([/ ... */]);

Adds a statement to a topic's access control policy, granting access for the specified Amazon Web Services accounts to the specified actions.

To remove the ability to change topic permissions, you must deny permissions to the AddPermission, RemovePermission, and SetTopicAttributes actions in your IAM policy.

Parameter Syntax

result=result = result=client->addPermission([ 'AWSAccountId' => ['', ...], // REQUIRED 'ActionName' => ['', ...], // REQUIRED 'Label' => '', // REQUIRED 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

AWSAccountId

Required: Yes

Type: Array of strings

The Amazon Web Services account IDs of the users (principals) who will be given access to the specified actions. The users must have Amazon Web Services account, but do not need to be signed up for this service.

ActionName

Required: Yes

Type: Array of strings

The action you want to allow for the specified principal(s).

Valid values: Any Amazon SNS action name, for example Publish.

Label

Required: Yes

Type: string

A unique identifier for the new policy statement.

TopicArn

Required: Yes

Type: string

The ARN of the topic whose access control policy you wish to modify.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

CheckIfPhoneNumberIsOptedOut

result=result = result=client->checkIfPhoneNumberIsOptedOut([/* ... /]); promise=promise = promise=client->checkIfPhoneNumberIsOptedOutAsync([/ ... */]);

Accepts a phone number and indicates whether the phone holder has opted out of receiving SMS messages from your Amazon Web Services account. You cannot send SMS messages to a number that is opted out.

To resume sending messages, you can opt in the number by using the OptInPhoneNumber action.

Parameter Syntax

result=result = result=client->checkIfPhoneNumberIsOptedOut([ 'phoneNumber' => '', // REQUIRED ]);

Parameter Details

Members

phoneNumber

Required: Yes

Type: string

The phone number for which you want to check the opt out status.

Result Syntax

[ 'isOptedOut' => true || false, ]

Result Details

Members

isOptedOut

Indicates whether the phone number is opted out:

Errors

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ConfirmSubscription

result=result = result=client->confirmSubscription([/* ... /]); promise=promise = promise=client->confirmSubscriptionAsync([/ ... */]);

Verifies an endpoint owner's intent to receive messages by validating the token sent to the endpoint by an earlier Subscribe action. If the token is valid, the action creates a new subscription and returns its Amazon Resource Name (ARN). This call requires an AWS signature only when the AuthenticateOnUnsubscribe flag is set to "true".

Parameter Syntax

result=result = result=client->confirmSubscription([ 'AuthenticateOnUnsubscribe' => '', 'Token' => '', // REQUIRED 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

AuthenticateOnUnsubscribe

Disallows unauthenticated unsubscribes of the subscription. If the value of this parameter is true and the request has an Amazon Web Services signature, then only the topic owner and the subscription owner can unsubscribe the endpoint. The unsubscribe action requires Amazon Web Services authentication.

Token

Required: Yes

Type: string

Short-lived token sent to an endpoint during the Subscribe action.

TopicArn

Required: Yes

Type: string

The ARN of the topic for which you wish to confirm a subscription.

Result Syntax

[ 'SubscriptionArn' => '', ]

Result Details

Members

SubscriptionArn

The ARN of the created subscription.

Errors

SubscriptionLimitExceededException:

Indicates that the customer already owns the maximum allowed number of subscriptions.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

NotFoundException:

Indicates that the requested resource does not exist.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

FilterPolicyLimitExceededException:

Indicates that the number of filter polices in your Amazon Web Services account exceeds the limit. To add more filter polices, submit an Amazon SNS Limit Increase case in the Amazon Web Services Support Center.

ReplayLimitExceededException:

Indicates that the request parameter has exceeded the maximum number of concurrent message replays.

CreatePlatformApplication

result=result = result=client->createPlatformApplication([/* ... /]); promise=promise = promise=client->createPlatformApplicationAsync([/ ... */]);

Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal and PlatformCredential attributes when using the CreatePlatformApplication action.

PlatformPrincipal and PlatformCredential are received from the notification service.

You can use the returned PlatformApplicationArn as an attribute for the CreatePlatformEndpoint action.

Parameter Syntax

result=result = result=client->createPlatformApplication([ 'Attributes' => ['', ...], // REQUIRED 'Name' => '', // REQUIRED 'Platform' => '', // REQUIRED ]);

Parameter Details

Members

Attributes

Required: Yes

Type: Associative array of custom strings keys (String) to strings

Name

Required: Yes

Type: string

Application names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, hyphens, and periods, and must be between 1 and 256 characters long.

Platform

Required: Yes

Type: string

The following platforms are supported: ADM (Amazon Device Messaging), APNS (Apple Push Notification Service), APNS_SANDBOX, and GCM (Firebase Cloud Messaging).

Result Syntax

[ 'PlatformApplicationArn' => '', ]

Result Details

Members

PlatformApplicationArn

PlatformApplicationArn is returned.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

CreatePlatformEndpoint

result=result = result=client->createPlatformEndpoint([/* ... /]); promise=promise = promise=client->createPlatformEndpointAsync([/ ... */]);

Creates an endpoint for a device and mobile app on one of the supported push notification services, such as GCM (Firebase Cloud Messaging) and APNS. CreatePlatformEndpoint requires the PlatformApplicationArn that is returned from CreatePlatformApplication. You can use the returned EndpointArn to send a message to a mobile app or by the Subscribe action for subscription to a topic. The CreatePlatformEndpoint action is idempotent, so if the requester already owns an endpoint with the same device token and attributes, that endpoint's ARN is returned without creating a new endpoint. For more information, see Using Amazon SNS Mobile Push Notifications.

When using CreatePlatformEndpoint with Baidu, two attributes must be provided: ChannelId and UserId. The token field must also contain the ChannelId. For more information, see Creating an Amazon SNS Endpoint for Baidu.

Parameter Syntax

result=result = result=client->createPlatformEndpoint([ 'Attributes' => ['', ...], 'CustomUserData' => '', 'PlatformApplicationArn' => '', // REQUIRED 'Token' => '', // REQUIRED ]);

Parameter Details

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

CustomUserData

Arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.

PlatformApplicationArn

Required: Yes

Type: string

PlatformApplicationArn returned from CreatePlatformApplication is used to create a an endpoint.

Token

Required: Yes

Type: string

Unique identifier created by the notification service for an app on a device. The specific name for Token will vary, depending on which notification service is being used. For example, when using APNS as the notification service, you need the device token. Alternatively, when using GCM (Firebase Cloud Messaging) or ADM, the device token equivalent is called the registration ID.

Result Syntax

[ 'EndpointArn' => '', ]

Result Details

Members

EndpointArn

EndpointArn returned from CreateEndpoint action.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

CreateSMSSandboxPhoneNumber

result=result = result=client->createSMSSandboxPhoneNumber([/* ... /]); promise=promise = promise=client->createSMSSandboxPhoneNumberAsync([/ ... */]);

Adds a destination phone number to an Amazon Web Services account in the SMS sandbox and sends a one-time password (OTP) to that phone number.

When you start using Amazon SNS to send SMS messages, your Amazon Web Services account is in the SMS sandbox. The SMS sandbox provides a safe environment for you to try Amazon SNS features without risking your reputation as an SMS sender. While your Amazon Web Services account is in the SMS sandbox, you can use all of the features of Amazon SNS. However, you can send SMS messages only to verified destination phone numbers. For more information, including how to move out of the sandbox to send messages without restrictions, see SMS sandbox in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->createSMSSandboxPhoneNumber([ 'LanguageCode' => 'en-US|en-GB|es-419|es-ES|de-DE|fr-CA|fr-FR|it-IT|ja-JP|pt-BR|kr-KR|zh-CN|zh-TW', 'PhoneNumber' => '', // REQUIRED ]);

Parameter Details

Members

LanguageCode

The language to use for sending the OTP. The default value is en-US.

PhoneNumber

Required: Yes

Type: string

The destination phone number to verify. On verification, Amazon SNS adds this phone number to the list of verified phone numbers that you can send SMS messages to.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InternalErrorException:

Indicates an internal service error.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

OptedOutException:

Indicates that the specified phone number opted out of receiving SMS messages from your Amazon Web Services account. You can't send SMS messages to phone numbers that opt out.

UserErrorException:

Indicates that a request parameter does not comply with the associated constraints.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

CreateTopic

result=result = result=client->createTopic([/* ... /]); promise=promise = promise=client->createTopicAsync([/ ... */]);

Creates a topic to which notifications can be published. Users can create at most 100,000 standard topics (at most 1,000 FIFO topics). For more information, see Creating an Amazon SNS topic in the Amazon SNS Developer Guide. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.

Parameter Syntax

result=result = result=client->createTopic([ 'Attributes' => ['', ...], 'DataProtectionPolicy' => '', 'Name' => '', // REQUIRED 'Tags' => [ [ 'Key' => '', // REQUIRED 'Value' => '', // REQUIRED ], // ... ], ]);

Parameter Details

Members

Attributes

Type: Associative array of custom strings keys (attributeName) to strings

A map of attributes with their corresponding values.

The following lists names, descriptions, and values of the special request parameters that the CreateTopic action uses:

The SuccessFeedbackRoleArn and FailureFeedbackRoleArn attributes are used to give Amazon SNS write access to use CloudWatch Logs on your behalf. The SuccessFeedbackSampleRate attribute is for specifying the sample rate percentage (0-100) of successfully delivered messages. After you configure the FailureFeedbackRoleArn attribute, then all failed message deliveries generate CloudWatch Logs.

The following attribute applies only to server-side encryption:

The following attributes apply only to FIFO topics:

DataProtectionPolicy

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 30,720.

Name

Required: Yes

Type: string

The name of the topic you want to create.

Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long.

For a FIFO (first-in-first-out) topic, the name must end with the .fifo suffix.

Tags

Type: Array of Tag structures

The list of tags to add to a new topic.

To be able to tag a topic on creation, you must have the sns:CreateTopic and sns:TagResource permissions.

Result Syntax

[ 'TopicArn' => '', ]

Result Details

Members

TopicArn

The Amazon Resource Name (ARN) assigned to the created topic.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

TopicLimitExceededException:

Indicates that the customer already owns the maximum allowed number of topics.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

TagLimitExceededException:

Can't add more than 50 tags to a topic.

StaleTagException:

A tag has been added to a resource with the same ARN as a deleted resource. Wait a short while and then retry the operation.

TagPolicyException:

The request doesn't comply with the IAM tag policy. Correct your request and then retry it.

ConcurrentAccessException:

Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.

DeleteEndpoint

result=result = result=client->deleteEndpoint([/* ... /]); promise=promise = promise=client->deleteEndpointAsync([/ ... */]);

Deletes the endpoint for a device and mobile app from Amazon SNS. This action is idempotent. For more information, see Using Amazon SNS Mobile Push Notifications.

When you delete an endpoint that is also subscribed to a topic, then you must also unsubscribe the endpoint from the topic.

Parameter Syntax

result=result = result=client->deleteEndpoint([ 'EndpointArn' => '', // REQUIRED ]);

Parameter Details

Members

EndpointArn

Required: Yes

Type: string

EndpointArn of endpoint to delete.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

DeletePlatformApplication

result=result = result=client->deletePlatformApplication([/* ... /]); promise=promise = promise=client->deletePlatformApplicationAsync([/ ... */]);

Deletes a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging). For more information, see Using Amazon SNS Mobile Push Notifications.

Parameter Syntax

result=result = result=client->deletePlatformApplication([ 'PlatformApplicationArn' => '', // REQUIRED ]);

Parameter Details

Members

PlatformApplicationArn

Required: Yes

Type: string

PlatformApplicationArn of platform application object to delete.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

DeleteSMSSandboxPhoneNumber

result=result = result=client->deleteSMSSandboxPhoneNumber([/* ... /]); promise=promise = promise=client->deleteSMSSandboxPhoneNumberAsync([/ ... */]);

Deletes an Amazon Web Services account's verified or pending phone number from the SMS sandbox.

When you start using Amazon SNS to send SMS messages, your Amazon Web Services account is in the SMS sandbox. The SMS sandbox provides a safe environment for you to try Amazon SNS features without risking your reputation as an SMS sender. While your Amazon Web Services account is in the SMS sandbox, you can use all of the features of Amazon SNS. However, you can send SMS messages only to verified destination phone numbers. For more information, including how to move out of the sandbox to send messages without restrictions, see SMS sandbox in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->deleteSMSSandboxPhoneNumber([ 'PhoneNumber' => '', // REQUIRED ]);

Parameter Details

Members

PhoneNumber

Required: Yes

Type: string

The destination phone number to delete.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InternalErrorException:

Indicates an internal service error.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ResourceNotFoundException:

Can’t perform the action on the specified resource. Make sure that the resource exists.

UserErrorException:

Indicates that a request parameter does not comply with the associated constraints.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

DeleteTopic

result=result = result=client->deleteTopic([/* ... /]); promise=promise = promise=client->deleteTopicAsync([/ ... */]);

Deletes a topic and all its subscriptions. Deleting a topic might prevent some messages previously sent to the topic from being delivered to subscribers. This action is idempotent, so deleting a topic that does not exist does not result in an error.

Parameter Syntax

result=result = result=client->deleteTopic([ 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

TopicArn

Required: Yes

Type: string

The ARN of the topic you want to delete.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InvalidStateException:

Indicates that the specified state is not a valid state for an event source.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

StaleTagException:

A tag has been added to a resource with the same ARN as a deleted resource. Wait a short while and then retry the operation.

TagPolicyException:

The request doesn't comply with the IAM tag policy. Correct your request and then retry it.

ConcurrentAccessException:

Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.

GetDataProtectionPolicy

result=result = result=client->getDataProtectionPolicy([/* ... /]); promise=promise = promise=client->getDataProtectionPolicyAsync([/ ... */]);

Retrieves the specified inline DataProtectionPolicy document that is stored in the specified Amazon SNS topic.

Parameter Syntax

result=result = result=client->getDataProtectionPolicy([ 'ResourceArn' => '', // REQUIRED ]);

Parameter Details

Members

ResourceArn

Required: Yes

Type: string

The ARN of the topic whose DataProtectionPolicy you want to get.

For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

Result Syntax

[ 'DataProtectionPolicy' => '', ]

Result Details

Members

DataProtectionPolicy

Retrieves the DataProtectionPolicy in JSON string format.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

GetEndpointAttributes

result=result = result=client->getEndpointAttributes([/* ... /]); promise=promise = promise=client->getEndpointAttributesAsync([/ ... */]);

Retrieves the endpoint attributes for a device on one of the supported push notification services, such as GCM (Firebase Cloud Messaging) and APNS. For more information, see Using Amazon SNS Mobile Push Notifications.

Parameter Syntax

result=result = result=client->getEndpointAttributes([ 'EndpointArn' => '', // REQUIRED ]);

Parameter Details

Members

EndpointArn

Required: Yes

Type: string

EndpointArn for GetEndpointAttributes input.

Result Syntax

[ 'Attributes' => ['', ...], ]

Result Details

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

Attributes include the following:

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

GetPlatformApplicationAttributes

result=result = result=client->getPlatformApplicationAttributes([/* ... /]); promise=promise = promise=client->getPlatformApplicationAttributesAsync([/ ... */]);

Retrieves the attributes of the platform application object for the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging). For more information, see Using Amazon SNS Mobile Push Notifications.

Parameter Syntax

result=result = result=client->getPlatformApplicationAttributes([ 'PlatformApplicationArn' => '', // REQUIRED ]);

Parameter Details

Members

PlatformApplicationArn

Required: Yes

Type: string

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

Result Syntax

[ 'Attributes' => ['', ...], ]

Result Details

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

Attributes include the following:

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

GetSMSAttributes

result=result = result=client->getSMSAttributes([/* ... /]); promise=promise = promise=client->getSMSAttributesAsync([/ ... */]);

Returns the settings for sending SMS messages from your Amazon Web Services account.

These settings are set with the SetSMSAttributes action.

Parameter Syntax

result=result = result=client->getSMSAttributes([ 'attributes' => ['', ...], ]);

Parameter Details

Members

attributes

A list of the individual attribute names, such as MonthlySpendLimit, for which you want values.

For all attribute names, see SetSMSAttributes.

If you don't use this parameter, Amazon SNS returns all SMS attributes.

Result Syntax

[ 'attributes' => ['', ...], ]

Result Details

Members

attributes

Type: Associative array of custom strings keys (String) to strings

The SMS attribute names and their values.

Errors

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

GetSMSSandboxAccountStatus

result=result = result=client->getSMSSandboxAccountStatus([/* ... /]); promise=promise = promise=client->getSMSSandboxAccountStatusAsync([/ ... */]);

Retrieves the SMS sandbox status for the calling Amazon Web Services account in the target Amazon Web Services Region.

When you start using Amazon SNS to send SMS messages, your Amazon Web Services account is in the SMS sandbox. The SMS sandbox provides a safe environment for you to try Amazon SNS features without risking your reputation as an SMS sender. While your Amazon Web Services account is in the SMS sandbox, you can use all of the features of Amazon SNS. However, you can send SMS messages only to verified destination phone numbers. For more information, including how to move out of the sandbox to send messages without restrictions, see SMS sandbox in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->getSMSSandboxAccountStatus([ ]);

Parameter Details

Members

Result Syntax

[ 'IsInSandbox' => true || false, ]

Result Details

Members

IsInSandbox

Required: Yes

Type: boolean

Indicates whether the calling Amazon Web Services account is in the SMS sandbox.

Errors

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InternalErrorException:

Indicates an internal service error.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

GetSubscriptionAttributes

result=result = result=client->getSubscriptionAttributes([/* ... /]); promise=promise = promise=client->getSubscriptionAttributesAsync([/ ... */]);

Returns all of the properties of a subscription.

Parameter Syntax

result=result = result=client->getSubscriptionAttributes([ 'SubscriptionArn' => '', // REQUIRED ]);

Parameter Details

Members

SubscriptionArn

Required: Yes

Type: string

The ARN of the subscription whose properties you want to get.

Result Syntax

[ 'Attributes' => ['', ...], ]

Result Details

Members

Attributes

Type: Associative array of custom strings keys (attributeName) to strings

A map of the subscription's attributes. Attributes in this map include the following:

The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

GetTopicAttributes

result=result = result=client->getTopicAttributes([/* ... /]); promise=promise = promise=client->getTopicAttributesAsync([/ ... */]);

Returns all of the properties of a topic. Topic properties returned might differ based on the authorization of the user.

Parameter Syntax

result=result = result=client->getTopicAttributes([ 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

TopicArn

Required: Yes

Type: string

The ARN of the topic whose properties you want to get.

Result Syntax

[ 'Attributes' => ['', ...], ]

Result Details

Members

Attributes

Type: Associative array of custom strings keys (attributeName) to strings

A map of the topic's attributes. Attributes in this map include the following:

The following attribute applies only to server-side-encryption:

The following attributes apply only to FIFO topics:

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

ListEndpointsByPlatformApplication

result=result = result=client->listEndpointsByPlatformApplication([/* ... /]); promise=promise = promise=client->listEndpointsByPlatformApplicationAsync([/ ... */]);

Lists the endpoints and endpoint attributes for devices in a supported push notification service, such as GCM (Firebase Cloud Messaging) and APNS. The results for ListEndpointsByPlatformApplication are paginated and return a limited list of endpoints, up to 100. If additional records are available after the first page results, then a NextToken string will be returned. To receive the next page, you call ListEndpointsByPlatformApplication again using the NextToken string received from the previous call. When there are no more records to return, NextToken will be null. For more information, see Using Amazon SNS Mobile Push Notifications.

This action is throttled at 30 transactions per second (TPS).

Parameter Syntax

result=result = result=client->listEndpointsByPlatformApplication([ 'NextToken' => '', 'PlatformApplicationArn' => '', // REQUIRED ]);

Parameter Details

Members

NextToken

NextToken string is used when calling ListEndpointsByPlatformApplication action to retrieve additional records that are available after the first page results.

PlatformApplicationArn

Required: Yes

Type: string

PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action.

Result Syntax

[ 'Endpoints' => [ [ 'Attributes' => ['', ...], 'EndpointArn' => '', ], // ... ], 'NextToken' => '', ]

Result Details

Members

Endpoints

Type: Array of Endpoint structures

Endpoints returned for ListEndpointsByPlatformApplication action.

NextToken

NextToken string is returned when calling ListEndpointsByPlatformApplication action if additional records are available after the first page results.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

ListOriginationNumbers

result=result = result=client->listOriginationNumbers([/* ... /]); promise=promise = promise=client->listOriginationNumbersAsync([/ ... */]);

Lists the calling Amazon Web Services account's dedicated origination numbers and their metadata. For more information about origination numbers, see Origination numbers in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->listOriginationNumbers([ 'MaxResults' => , 'NextToken' => '', ]);

Parameter Details

Members

MaxResults

The maximum number of origination numbers to return.

NextToken

Token that the previous ListOriginationNumbers request returns.

Result Syntax

[ 'NextToken' => '', 'PhoneNumbers' => [ [ 'CreatedAt' => , 'Iso2CountryCode' => '', 'NumberCapabilities' => ['', ...], 'PhoneNumber' => '', 'RouteType' => 'Transactional|Promotional|Premium', 'Status' => '', ], // ... ], ]

Result Details

Members

NextToken

A NextToken string is returned when you call the ListOriginationNumbers operation if additional pages of records are available.

PhoneNumbers

Type: Array of PhoneNumberInformation structures

A list of the calling account's verified and pending origination numbers.

Errors

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ValidationException:

Indicates that a parameter in the request is invalid.

ListPhoneNumbersOptedOut

result=result = result=client->listPhoneNumbersOptedOut([/* ... /]); promise=promise = promise=client->listPhoneNumbersOptedOutAsync([/ ... */]);

Returns a list of phone numbers that are opted out, meaning you cannot send SMS messages to them.

The results for ListPhoneNumbersOptedOut are paginated, and each page returns up to 100 phone numbers. If additional phone numbers are available after the first page of results, then a NextToken string will be returned. To receive the next page, you call ListPhoneNumbersOptedOut again using the NextToken string received from the previous call. When there are no more records to return, NextToken will be null.

Parameter Syntax

result=result = result=client->listPhoneNumbersOptedOut([ 'nextToken' => '', ]);

Parameter Details

Members

nextToken

A NextToken string is used when you call the ListPhoneNumbersOptedOut action to retrieve additional records that are available after the first page of results.

Result Syntax

[ 'nextToken' => '', 'phoneNumbers' => ['', ...], ]

Result Details

Members

nextToken

A NextToken string is returned when you call the ListPhoneNumbersOptedOut action if additional records are available after the first page of results.

phoneNumbers

A list of phone numbers that are opted out of receiving SMS messages. The list is paginated, and each page can contain up to 100 phone numbers.

Errors

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ListPlatformApplications

result=result = result=client->listPlatformApplications([/* ... /]); promise=promise = promise=client->listPlatformApplicationsAsync([/ ... */]);

Lists the platform application objects for the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging). The results for ListPlatformApplications are paginated and return a limited list of applications, up to 100. If additional records are available after the first page results, then a NextToken string will be returned. To receive the next page, you call ListPlatformApplications using the NextToken string received from the previous call. When there are no more records to return, NextToken will be null. For more information, see Using Amazon SNS Mobile Push Notifications.

This action is throttled at 15 transactions per second (TPS).

Parameter Syntax

result=result = result=client->listPlatformApplications([ 'NextToken' => '', ]);

Parameter Details

Members

NextToken

NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.

Result Syntax

[ 'NextToken' => '', 'PlatformApplications' => [ [ 'Attributes' => ['', ...], 'PlatformApplicationArn' => '', ], // ... ], ]

Result Details

Members

NextToken

NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.

PlatformApplications

Type: Array of PlatformApplication structures

Platform applications returned when calling ListPlatformApplications action.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ListSMSSandboxPhoneNumbers

result=result = result=client->listSMSSandboxPhoneNumbers([/* ... /]); promise=promise = promise=client->listSMSSandboxPhoneNumbersAsync([/ ... */]);

Lists the calling Amazon Web Services account's current verified and pending destination phone numbers in the SMS sandbox.

When you start using Amazon SNS to send SMS messages, your Amazon Web Services account is in the SMS sandbox. The SMS sandbox provides a safe environment for you to try Amazon SNS features without risking your reputation as an SMS sender. While your Amazon Web Services account is in the SMS sandbox, you can use all of the features of Amazon SNS. However, you can send SMS messages only to verified destination phone numbers. For more information, including how to move out of the sandbox to send messages without restrictions, see SMS sandbox in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->listSMSSandboxPhoneNumbers([ 'MaxResults' => , 'NextToken' => '', ]);

Parameter Details

Members

MaxResults

The maximum number of phone numbers to return.

NextToken

Token that the previous ListSMSSandboxPhoneNumbersInput request returns.

Result Syntax

[ 'NextToken' => '', 'PhoneNumbers' => [ [ 'PhoneNumber' => '', 'Status' => 'Pending|Verified', ], // ... ], ]

Result Details

Members

NextToken

A NextToken string is returned when you call the ListSMSSandboxPhoneNumbersInput operation if additional pages of records are available.

PhoneNumbers

Required: Yes

Type: Array of SMSSandboxPhoneNumber structures

A list of the calling account's pending and verified phone numbers.

Errors

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InternalErrorException:

Indicates an internal service error.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ResourceNotFoundException:

Can’t perform the action on the specified resource. Make sure that the resource exists.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

ListSubscriptions

result=result = result=client->listSubscriptions([/* ... /]); promise=promise = promise=client->listSubscriptionsAsync([/ ... */]);

Returns a list of the requester's subscriptions. Each call returns a limited list of subscriptions, up to 100. If there are more subscriptions, a NextToken is also returned. Use the NextToken parameter in a new ListSubscriptions call to get further results.

This action is throttled at 30 transactions per second (TPS).

Parameter Syntax

result=result = result=client->listSubscriptions([ 'NextToken' => '', ]);

Parameter Details

Members

NextToken

Token returned by the previous ListSubscriptions request.

Result Syntax

[ 'NextToken' => '', 'Subscriptions' => [ [ 'Endpoint' => '', 'Owner' => '', 'Protocol' => '', 'SubscriptionArn' => '', 'TopicArn' => '', ], // ... ], ]

Result Details

Members

NextToken

Token to pass along to the next ListSubscriptions request. This element is returned if there are more subscriptions to retrieve.

Subscriptions

Type: Array of Subscription structures

A list of subscriptions.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ListSubscriptionsByTopic

result=result = result=client->listSubscriptionsByTopic([/* ... /]); promise=promise = promise=client->listSubscriptionsByTopicAsync([/ ... */]);

Returns a list of the subscriptions to a specific topic. Each call returns a limited list of subscriptions, up to 100. If there are more subscriptions, a NextToken is also returned. Use the NextToken parameter in a new ListSubscriptionsByTopic call to get further results.

This action is throttled at 30 transactions per second (TPS).

Parameter Syntax

result=result = result=client->listSubscriptionsByTopic([ 'NextToken' => '', 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

NextToken

Token returned by the previous ListSubscriptionsByTopic request.

TopicArn

Required: Yes

Type: string

The ARN of the topic for which you wish to find subscriptions.

Result Syntax

[ 'NextToken' => '', 'Subscriptions' => [ [ 'Endpoint' => '', 'Owner' => '', 'Protocol' => '', 'SubscriptionArn' => '', 'TopicArn' => '', ], // ... ], ]

Result Details

Members

NextToken

Token to pass along to the next ListSubscriptionsByTopic request. This element is returned if there are more subscriptions to retrieve.

Subscriptions

Type: Array of Subscription structures

A list of subscriptions.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ListTagsForResource

result=result = result=client->listTagsForResource([/* ... /]); promise=promise = promise=client->listTagsForResourceAsync([/ ... */]);

List all tags added to the specified Amazon SNS topic. For an overview, see Amazon SNS Tags in the Amazon Simple Notification Service Developer Guide.

Parameter Syntax

result=result = result=client->listTagsForResource([ 'ResourceArn' => '', // REQUIRED ]);

Parameter Details

Members

ResourceArn

Required: Yes

Type: string

The ARN of the topic for which to list tags.

Result Syntax

[ 'Tags' => [ [ 'Key' => '', 'Value' => '', ], // ... ], ]

Result Details

Members

Tags

Type: Array of Tag structures

The tags associated with the specified topic.

Errors

ResourceNotFoundException:

Can’t perform the action on the specified resource. Make sure that the resource exists.

TagPolicyException:

The request doesn't comply with the IAM tag policy. Correct your request and then retry it.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ConcurrentAccessException:

Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.

ListTopics

result=result = result=client->listTopics([/* ... /]); promise=promise = promise=client->listTopicsAsync([/ ... */]);

Returns a list of the requester's topics. Each call returns a limited list of topics, up to 100. If there are more topics, a NextToken is also returned. Use the NextToken parameter in a new ListTopics call to get further results.

This action is throttled at 30 transactions per second (TPS).

Parameter Syntax

result=result = result=client->listTopics([ 'NextToken' => '', ]);

Parameter Details

Members

NextToken

Token returned by the previous ListTopics request.

Result Syntax

[ 'NextToken' => '', 'Topics' => [ [ 'TopicArn' => '', ], // ... ], ]

Result Details

Members

NextToken

Token to pass along to the next ListTopics request. This element is returned if there are additional topics to retrieve.

Topics

Type: Array of Topic structures

A list of topic ARNs.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

OptInPhoneNumber

result=result = result=client->optInPhoneNumber([/* ... /]); promise=promise = promise=client->optInPhoneNumberAsync([/ ... */]);

Use this request to opt in a phone number that is opted out, which enables you to resume sending SMS messages to the number.

You can opt in a phone number only once every 30 days.

Parameter Syntax

result=result = result=client->optInPhoneNumber([ 'phoneNumber' => '', // REQUIRED ]);

Parameter Details

Members

phoneNumber

Required: Yes

Type: string

The phone number to opt in. Use E.164 format.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

Publish

result=result = result=client->publish([/* ... /]); promise=promise = promise=client->publishAsync([/ ... */]);

Sends a message to an Amazon SNS topic, a text message (SMS message) directly to a phone number, or a message to a mobile platform endpoint (when you specify the TargetArn).

If you send a message to a topic, Amazon SNS delivers the message to each endpoint that is subscribed to the topic. The format of the message depends on the notification protocol for each subscribed endpoint.

When a messageId is returned, the message is saved and Amazon SNS immediately delivers it to subscribers.

To use the Publish action for publishing a message to a mobile endpoint, such as an app on a Kindle device or mobile phone, you must specify the EndpointArn for the TargetArn parameter. The EndpointArn is returned when making a call with the CreatePlatformEndpoint action.

For more information about formatting messages, see Send Custom Platform-Specific Payloads in Messages to Mobile Devices.

You can publish messages only to topics and endpoints in the same Amazon Web Services Region.

Parameter Syntax

result=result = result=client->publish([ 'Message' => '', // REQUIRED 'MessageAttributes' => [ '' => [ 'BinaryValue' => <string || resource || Psr\Http\Message\StreamInterface>, 'DataType' => '', // REQUIRED 'StringValue' => '', ], // ... ], 'MessageDeduplicationId' => '', 'MessageGroupId' => '', 'MessageStructure' => '', 'PhoneNumber' => '', 'Subject' => '', 'TargetArn' => '', 'TopicArn' => '', ]);

Parameter Details

Members

Message

Required: Yes

Type: string

The message you want to send.

If you are publishing to a topic and you want to send the same message to all transport protocols, include the text of the message as a String value. If you want to send different messages for each transport protocol, set the value of the MessageStructure parameter to json and use a JSON object for the Message parameter.

Constraints:

JSON-specific constraints:

MessageAttributes

Type: Associative array of custom strings keys (String) to MessageAttributeValue structures

Message attributes for Publish action.

MessageDeduplicationId

MessageGroupId

The MessageGroupId can contain up to 128 alphanumeric characters (a-z, A-Z, 0-9) and punctuation (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~).

For FIFO topics: The MessageGroupId is a tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). Every message must include a MessageGroupId.

For standard topics: The MessageGroupId is optional and is forwarded only to Amazon SQS standard subscriptions to activate fair queues. The MessageGroupId is not used for, or sent to, any other endpoint types. When provided, the same validation rules apply as for FIFO topics.

MessageStructure

Set MessageStructure to json if you want to send a different message for each protocol. For example, using one publish action, you can send a short message to your SMS subscribers and a longer message to your email subscribers. If you set MessageStructure to json, the value of the Message parameter must:

You can define other top-level keys that define the message you want to send to a specific transport protocol (e.g., "http").

Valid value: json

PhoneNumber

The phone number to which you want to deliver an SMS message. Use E.164 format.

If you don't specify a value for the PhoneNumber parameter, you must specify a value for the TargetArn or TopicArn parameters.

Subject

Optional parameter to be used as the "Subject" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints.

Constraints: Subjects must be UTF-8 text with no line breaks or control characters, and less than 100 characters long.

TargetArn

If you don't specify a value for the TargetArn parameter, you must specify a value for the PhoneNumber or TopicArn parameters.

TopicArn

The topic you want to publish to.

If you don't specify a value for the TopicArn parameter, you must specify a value for the PhoneNumber or TargetArn parameters.

Result Syntax

[ 'MessageId' => '', 'SequenceNumber' => '', ]

Result Details

Members

MessageId

Unique identifier assigned to the published message.

Length Constraint: Maximum 100 characters

SequenceNumber

This response element applies only to FIFO (first-in-first-out) topics.

The sequence number is a large, non-consecutive number that Amazon SNS assigns to each message. The length of SequenceNumber is 128 bits. SequenceNumber continues to increase for each MessageGroupId.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InvalidParameterValueException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

EndpointDisabledException:

Exception error indicating endpoint disabled.

PlatformApplicationDisabledException:

Exception error indicating platform application disabled.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

KMSDisabledException:

The request was rejected because the specified Amazon Web Services KMS key isn't enabled.

KMSInvalidStateException:

The request was rejected because the state of the specified resource isn't valid for this request. For more information, see Key states of Amazon Web Services KMS keys in the Key Management Service Developer Guide.

KMSNotFoundException:

The request was rejected because the specified entity or resource can't be found.

KMSOptInRequired:

The Amazon Web Services access key ID needs a subscription for the service.

KMSThrottlingException:

The request was denied due to request throttling. For more information about throttling, see Limits in the Key Management Service Developer Guide.

KMSAccessDeniedException:

The ciphertext references a key that doesn't exist or that you don't have access to.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

ValidationException:

Indicates that a parameter in the request is invalid.

PublishBatch

result=result = result=client->publishBatch([/* ... /]); promise=promise = promise=client->publishBatchAsync([/ ... */]);

Publishes up to 10 messages to the specified topic in a single batch. This is a batch version of the Publish API. If you try to send more than 10 messages in a single batch request, you will receive a TooManyEntriesInBatchRequest exception.

For FIFO topics, multiple messages within a single batch are published in the order they are sent, and messages are deduplicated within the batch and across batches for five minutes.

The result of publishing each message is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.

The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KB (262,144 bytes).

The PublishBatch API can send up to 10 messages at a time. If you attempt to send more than 10 messages in one request, you will encounter a TooManyEntriesInBatchRequest exception. In such cases, split your messages into multiple requests, each containing no more than 10 messages.

Some actions take lists of parameters. These lists are specified using the param.n notation. Values of n are integers starting from 1. For example, a parameter list with two elements looks like this:

&AttributeName.1=first

&AttributeName.2=second

If you send a batch message to a topic, Amazon SNS publishes the batch message to each endpoint that is subscribed to the topic. The format of the batch message depends on the notification protocol for each subscribed endpoint.

When a messageId is returned, the batch message is saved, and Amazon SNS immediately delivers the message to subscribers.

Parameter Syntax

result=result = result=client->publishBatch([ 'PublishBatchRequestEntries' => [ // REQUIRED [ 'Id' => '', // REQUIRED 'Message' => '', // REQUIRED 'MessageAttributes' => [ '' => [ 'BinaryValue' => <string || resource || Psr\Http\Message\StreamInterface>, 'DataType' => '', // REQUIRED 'StringValue' => '', ], // ... ], 'MessageDeduplicationId' => '', 'MessageGroupId' => '', 'MessageStructure' => '', 'Subject' => '', ], // ... ], 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

PublishBatchRequestEntries

Required: Yes

Type: Array of PublishBatchRequestEntry structures

A list of PublishBatch request entries to be sent to the SNS topic.

TopicArn

Required: Yes

Type: string

The Amazon resource name (ARN) of the topic you want to batch publish to.

Result Syntax

[ 'Failed' => [ [ 'Code' => '', 'Id' => '', 'Message' => '', 'SenderFault' => true || false, ], // ... ], 'Successful' => [ [ 'Id' => '', 'MessageId' => '', 'SequenceNumber' => '', ], // ... ], ]

Result Details

Members

Failed

Type: Array of BatchResultErrorEntry structures

A list of failed PublishBatch responses.

Successful

Type: Array of PublishBatchResultEntry structures

A list of successful PublishBatch responses.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InvalidParameterValueException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

EndpointDisabledException:

Exception error indicating endpoint disabled.

PlatformApplicationDisabledException:

Exception error indicating platform application disabled.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

BatchEntryIdsNotDistinctException:

Two or more batch entries in the request have the same Id.

BatchRequestTooLongException:

The length of all the batch messages put together is more than the limit.

EmptyBatchRequestException:

The batch request doesn't contain any entries.

InvalidBatchEntryIdException:

The Id of a batch entry in a batch request doesn't abide by the specification.

TooManyEntriesInBatchRequestException:

The batch request contains more entries than permissible (more than 10).

KMSDisabledException:

The request was rejected because the specified Amazon Web Services KMS key isn't enabled.

KMSInvalidStateException:

The request was rejected because the state of the specified resource isn't valid for this request. For more information, see Key states of Amazon Web Services KMS keys in the Key Management Service Developer Guide.

KMSNotFoundException:

The request was rejected because the specified entity or resource can't be found.

KMSOptInRequired:

The Amazon Web Services access key ID needs a subscription for the service.

KMSThrottlingException:

The request was denied due to request throttling. For more information about throttling, see Limits in the Key Management Service Developer Guide.

KMSAccessDeniedException:

The ciphertext references a key that doesn't exist or that you don't have access to.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

ValidationException:

Indicates that a parameter in the request is invalid.

PutDataProtectionPolicy

result=result = result=client->putDataProtectionPolicy([/* ... /]); promise=promise = promise=client->putDataProtectionPolicyAsync([/ ... */]);

Adds or updates an inline policy document that is stored in the specified Amazon SNS topic.

Parameter Syntax

result=result = result=client->putDataProtectionPolicy([ 'DataProtectionPolicy' => '', // REQUIRED 'ResourceArn' => '', // REQUIRED ]);

Parameter Details

Members

DataProtectionPolicy

Required: Yes

Type: string

The JSON serialization of the topic's DataProtectionPolicy.

The DataProtectionPolicy must be in JSON string format.

Length Constraints: Maximum length of 30,720.

ResourceArn

Required: Yes

Type: string

The ARN of the topic whose DataProtectionPolicy you want to add or update.

For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

RemovePermission

result=result = result=client->removePermission([/* ... /]); promise=promise = promise=client->removePermissionAsync([/ ... */]);

Removes a statement from a topic's access control policy.

To remove the ability to change topic permissions, you must deny permissions to the AddPermission, RemovePermission, and SetTopicAttributes actions in your IAM policy.

Parameter Syntax

result=result = result=client->removePermission([ 'Label' => '', // REQUIRED 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

Label

Required: Yes

Type: string

The unique label of the statement you want to remove.

TopicArn

Required: Yes

Type: string

The ARN of the topic whose access control policy you wish to modify.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

SetEndpointAttributes

result=result = result=client->setEndpointAttributes([/* ... /]); promise=promise = promise=client->setEndpointAttributesAsync([/ ... */]);

Sets the attributes for an endpoint for a device on one of the supported push notification services, such as GCM (Firebase Cloud Messaging) and APNS. For more information, see Using Amazon SNS Mobile Push Notifications.

Parameter Syntax

result=result = result=client->setEndpointAttributes([ 'Attributes' => ['', ...], // REQUIRED 'EndpointArn' => '', // REQUIRED ]);

Parameter Details

Members

Attributes

Required: Yes

Type: Associative array of custom strings keys (String) to strings

A map of the endpoint attributes. Attributes in this map include the following:

EndpointArn

Required: Yes

Type: string

EndpointArn used for SetEndpointAttributes action.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

SetPlatformApplicationAttributes

result=result = result=client->setPlatformApplicationAttributes([/* ... /]); promise=promise = promise=client->setPlatformApplicationAttributesAsync([/ ... */]);

Sets the attributes of the platform application object for the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging). For more information, see Using Amazon SNS Mobile Push Notifications. For information on configuring attributes for message delivery status, see Using Amazon SNS Application Attributes for Message Delivery Status.

Parameter Syntax

result=result = result=client->setPlatformApplicationAttributes([ 'Attributes' => ['', ...], // REQUIRED 'PlatformApplicationArn' => '', // REQUIRED ]);

Parameter Details

Members

Attributes

Required: Yes

Type: Associative array of custom strings keys (String) to strings

A map of the platform application attributes. Attributes in this map include the following:

The following attributes only apply to APNs token-based authentication:

PlatformApplicationArn

Required: Yes

Type: string

PlatformApplicationArn for SetPlatformApplicationAttributes action.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

SetSMSAttributes

result=result = result=client->setSMSAttributes([/* ... /]); promise=promise = promise=client->setSMSAttributesAsync([/ ... */]);

Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports.

You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see Publishing to a mobile phone in the Amazon SNS Developer Guide.

To use this operation, you must grant the Amazon SNS service principal (sns.amazonaws.com) permission to perform the s3:ListBucket action.

Parameter Syntax

result=result = result=client->setSMSAttributes([ 'attributes' => ['', ...], // REQUIRED ]);

Parameter Details

Members

attributes

Required: Yes

Type: Associative array of custom strings keys (String) to strings

The default settings for sending SMS messages from your Amazon Web Services account. You can set values for the following attribute names:

MonthlySpendLimit – The maximum amount in USD that you are willing to spend each month to send SMS messages. When Amazon SNS determines that sending an SMS message would incur a cost that exceeds this limit, it stops sending SMS messages within minutes.

Amazon SNS stops sending SMS messages within minutes of the limit being crossed. During that interval, if you continue to send SMS messages, you will incur costs that exceed your limit.

By default, the spend limit is set to the maximum allowed by Amazon SNS. If you want to raise the limit, submit an SNS Limit Increase case. For New limit value, enter your desired monthly spend limit. In the Use Case Description field, explain that you are requesting an SMS monthly spend limit increase.

DeliveryStatusIAMRole – The ARN of the IAM role that allows Amazon SNS to write logs about SMS deliveries in CloudWatch Logs. For each SMS message that you send, Amazon SNS writes a log that includes the message price, the success or failure status, the reason for failure (if the message failed), the message dwell time, and other information.

DeliveryStatusSuccessSamplingRate – The percentage of successful SMS deliveries for which Amazon SNS will write logs in CloudWatch Logs. The value can be an integer from 0 - 100. For example, to write logs only for failed deliveries, set this value to 0. To write logs for 10% of your successful deliveries, set it to 10.

DefaultSenderID – A string, such as your business brand, that is displayed as the sender on the receiving device. Support for sender IDs varies by country. The sender ID can be 1 - 11 alphanumeric characters, and it must contain at least one letter.

DefaultSMSType – The type of SMS message that you will send by default. You can assign the following values:

UsageReportS3Bucket – The name of the Amazon S3 bucket to receive daily SMS usage reports from Amazon SNS. Each day, Amazon SNS will deliver a usage report as a CSV file to the bucket. The report includes the following information for each SMS message that was successfully delivered by your Amazon Web Services account:

To receive the report, the bucket must have a policy that allows the Amazon SNS service principal to perform the s3:PutObject and s3:GetBucketLocation actions.

For an example bucket policy and usage report, see Monitoring SMS Activity in the Amazon SNS Developer Guide.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

SetSubscriptionAttributes

result=result = result=client->setSubscriptionAttributes([/* ... /]); promise=promise = promise=client->setSubscriptionAttributesAsync([/ ... */]);

Allows a subscription owner to set an attribute of the subscription to a new value.

Parameter Syntax

result=result = result=client->setSubscriptionAttributes([ 'AttributeName' => '', // REQUIRED 'AttributeValue' => '', 'SubscriptionArn' => '', // REQUIRED ]);

Parameter Details

Members

AttributeName

Required: Yes

Type: string

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that this action uses:

The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:

AttributeValue

The new value for the attribute in JSON format.

SubscriptionArn

Required: Yes

Type: string

The ARN of the subscription to modify.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

FilterPolicyLimitExceededException:

Indicates that the number of filter polices in your Amazon Web Services account exceeds the limit. To add more filter polices, submit an Amazon SNS Limit Increase case in the Amazon Web Services Support Center.

ReplayLimitExceededException:

Indicates that the request parameter has exceeded the maximum number of concurrent message replays.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

SetTopicAttributes

result=result = result=client->setTopicAttributes([/* ... /]); promise=promise = promise=client->setTopicAttributesAsync([/ ... */]);

Allows a topic owner to set an attribute of the topic to a new value.

To remove the ability to change topic permissions, you must deny permissions to the AddPermission, RemovePermission, and SetTopicAttributes actions in your IAM policy.

Parameter Syntax

result=result = result=client->setTopicAttributes([ 'AttributeName' => '', // REQUIRED 'AttributeValue' => '', 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

AttributeName

Required: Yes

Type: string

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses:

The SuccessFeedbackRoleArn and FailureFeedbackRoleArn attributes are used to give Amazon SNS write access to use CloudWatch Logs on your behalf. The SuccessFeedbackSampleRate attribute is for specifying the sample rate percentage (0-100) of successfully delivered messages. After you configure the FailureFeedbackRoleArn attribute, then all failed message deliveries generate CloudWatch Logs.

The following attribute applies only to server-side-encryption:

The following attribute applies only to FIFO topics:

AttributeValue

The new value for the attribute.

TopicArn

Required: Yes

Type: string

The ARN of the topic to modify.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

Subscribe

result=result = result=client->subscribe([/* ... /]); promise=promise = promise=client->subscribeAsync([/ ... */]);

Subscribes an endpoint to an Amazon SNS topic. If the endpoint type is HTTP/S or email, or if the endpoint and the topic are not in the same Amazon Web Services account, the endpoint owner must run the ConfirmSubscription action to confirm the subscription.

You call the ConfirmSubscription action with the token from the subscription response. Confirmation tokens are valid for two days.

This action is throttled at 100 transactions per second (TPS).

Parameter Syntax

result=result = result=client->subscribe([ 'Attributes' => ['', ...], 'Endpoint' => '', 'Protocol' => '', // REQUIRED 'ReturnSubscriptionArn' => true || false, 'TopicArn' => '', // REQUIRED ]);

Parameter Details

Members

Attributes

Type: Associative array of custom strings keys (attributeName) to strings

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the Subscribe action uses:

The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:

The following attributes apply only to FIFO topics:

Endpoint

The endpoint that you want to receive notifications. Endpoints vary by protocol:

Protocol

Required: Yes

Type: string

The protocol that you want to use. Supported protocols include:

ReturnSubscriptionArn

Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed.

If you set this parameter to true, the response includes the ARN in all cases, even if the subscription is not yet confirmed. In addition to the ARN for confirmed subscriptions, the response also includes the pending subscription ARN value for subscriptions that aren't yet confirmed. A subscription becomes confirmed when the subscriber calls the ConfirmSubscription action with a confirmation token.

The default value is false.

TopicArn

Required: Yes

Type: string

The ARN of the topic you want to subscribe to.

Result Syntax

[ 'SubscriptionArn' => '', ]

Result Details

Members

SubscriptionArn

The ARN of the subscription if it is confirmed, or the string "pending confirmation" if the subscription requires confirmation. However, if the API request parameter ReturnSubscriptionArn is true, then the value is always the subscription ARN, even if the subscription requires confirmation.

Errors

SubscriptionLimitExceededException:

Indicates that the customer already owns the maximum allowed number of subscriptions.

FilterPolicyLimitExceededException:

Indicates that the number of filter polices in your Amazon Web Services account exceeds the limit. To add more filter polices, submit an Amazon SNS Limit Increase case in the Amazon Web Services Support Center.

ReplayLimitExceededException:

Indicates that the request parameter has exceeded the maximum number of concurrent message replays.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

NotFoundException:

Indicates that the requested resource does not exist.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

TagResource

result=result = result=client->tagResource([/* ... /]); promise=promise = promise=client->tagResourceAsync([/ ... */]);

Add tags to the specified Amazon SNS topic. For an overview, see Amazon SNS Tags in the Amazon SNS Developer Guide.

When you use topic tags, keep the following guidelines in mind:

Parameter Syntax

result=result = result=client->tagResource([ 'ResourceArn' => '', // REQUIRED 'Tags' => [ // REQUIRED [ 'Key' => '', // REQUIRED 'Value' => '', // REQUIRED ], // ... ], ]);

Parameter Details

Members

ResourceArn

Required: Yes

Type: string

The ARN of the topic to which to add tags.

Tags

Required: Yes

Type: Array of Tag structures

The tags to be added to the specified topic. A tag consists of a required key and an optional value.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

ResourceNotFoundException:

Can’t perform the action on the specified resource. Make sure that the resource exists.

TagLimitExceededException:

Can't add more than 50 tags to a topic.

StaleTagException:

A tag has been added to a resource with the same ARN as a deleted resource. Wait a short while and then retry the operation.

TagPolicyException:

The request doesn't comply with the IAM tag policy. Correct your request and then retry it.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ConcurrentAccessException:

Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.

Unsubscribe

result=result = result=client->unsubscribe([/* ... /]); promise=promise = promise=client->unsubscribeAsync([/ ... */]);

Deletes a subscription. If the subscription requires authentication for deletion, only the owner of the subscription or the topic's owner can unsubscribe, and an Amazon Web Services signature is required. If the Unsubscribe call does not require authentication and the requester is not the subscription owner, a final cancellation message is delivered to the endpoint, so that the endpoint owner can easily resubscribe to the topic if the Unsubscribe request was unintended.

This action is throttled at 100 transactions per second (TPS).

Parameter Syntax

result=result = result=client->unsubscribe([ 'SubscriptionArn' => '', // REQUIRED ]);

Parameter Details

Members

SubscriptionArn

Required: Yes

Type: string

The ARN of the subscription to be deleted.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

InternalErrorException:

Indicates an internal service error.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

NotFoundException:

Indicates that the requested resource does not exist.

InvalidSecurityException:

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

UntagResource

result=result = result=client->untagResource([/* ... /]); promise=promise = promise=client->untagResourceAsync([/ ... */]);

Remove tags from the specified Amazon SNS topic. For an overview, see Amazon SNS Tags in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->untagResource([ 'ResourceArn' => '', // REQUIRED 'TagKeys' => ['', ...], // REQUIRED ]);

Parameter Details

Members

ResourceArn

Required: Yes

Type: string

The ARN of the topic from which to remove tags.

TagKeys

Required: Yes

Type: Array of strings

The list of tag keys to remove from the specified topic.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

ResourceNotFoundException:

Can’t perform the action on the specified resource. Make sure that the resource exists.

TagLimitExceededException:

Can't add more than 50 tags to a topic.

StaleTagException:

A tag has been added to a resource with the same ARN as a deleted resource. Wait a short while and then retry the operation.

TagPolicyException:

The request doesn't comply with the IAM tag policy. Correct your request and then retry it.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

ConcurrentAccessException:

Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.

VerifySMSSandboxPhoneNumber

result=result = result=client->verifySMSSandboxPhoneNumber([/* ... /]); promise=promise = promise=client->verifySMSSandboxPhoneNumberAsync([/ ... */]);

Verifies a destination phone number with a one-time password (OTP) for the calling Amazon Web Services account.

When you start using Amazon SNS to send SMS messages, your Amazon Web Services account is in the SMS sandbox. The SMS sandbox provides a safe environment for you to try Amazon SNS features without risking your reputation as an SMS sender. While your Amazon Web Services account is in the SMS sandbox, you can use all of the features of Amazon SNS. However, you can send SMS messages only to verified destination phone numbers. For more information, including how to move out of the sandbox to send messages without restrictions, see SMS sandbox in the Amazon SNS Developer Guide.

Parameter Syntax

result=result = result=client->verifySMSSandboxPhoneNumber([ 'OneTimePassword' => '', // REQUIRED 'PhoneNumber' => '', // REQUIRED ]);

Parameter Details

Members

OneTimePassword

Required: Yes

Type: string

The OTP sent to the destination number from the CreateSMSSandBoxPhoneNumber call.

PhoneNumber

Required: Yes

Type: string

The destination phone number to verify.

Result Syntax

[]

Result Details

The results for this operation are always empty.

Errors

AuthorizationErrorException:

Indicates that the user has been denied access to the requested resource.

InternalErrorException:

Indicates an internal service error.

InvalidParameterException:

Indicates that a request parameter does not comply with the associated constraints.

ResourceNotFoundException:

Can’t perform the action on the specified resource. Make sure that the resource exists.

VerificationException:

Indicates that the one-time password (OTP) used for verification is invalid.

ThrottledException:

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

Shapes

Description

Indicates that the user has been denied access to the requested resource.

Members

message

BatchEntryIdsNotDistinctException

Description

Two or more batch entries in the request have the same Id.

Members

message

BatchRequestTooLongException

Description

The length of all the batch messages put together is more than the limit.

Members

message

BatchResultErrorEntry

Description

Gives a detailed description of failed messages in the batch.

Members

Code

Required: Yes

Type: string

An error code representing why the action failed on this entry.

Id

Required: Yes

Type: string

The Id of an entry in a batch request

Message

A message explaining why the action failed on this entry.

SenderFault

Required: Yes

Type: boolean

Specifies whether the error happened due to the caller of the batch API action.

CheckIfPhoneNumberIsOptedOutResponse

Description

The response from the CheckIfPhoneNumberIsOptedOut action.

Members

isOptedOut

Indicates whether the phone number is opted out:

ConcurrentAccessException

Description

Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.

Members

message

ConfirmSubscriptionResponse

Description

Response for ConfirmSubscriptions action.

Members

SubscriptionArn

The ARN of the created subscription.

CreateEndpointResponse

Description

Response from CreateEndpoint action.

Members

EndpointArn

EndpointArn returned from CreateEndpoint action.

CreatePlatformApplicationResponse

Description

Response from CreatePlatformApplication action.

Members

PlatformApplicationArn

PlatformApplicationArn is returned.

CreateSMSSandboxPhoneNumberResult

Members

CreateTopicResponse

Description

Response from CreateTopic action.

Members

TopicArn

The Amazon Resource Name (ARN) assigned to the created topic.

DeleteSMSSandboxPhoneNumberResult

Members

EmptyBatchRequestException

Description

The batch request doesn't contain any entries.

Members

message

Endpoint

Description

The endpoint for mobile app and device.

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

Attributes for endpoint.

EndpointArn

The EndpointArn for mobile app and device.

EndpointDisabledException

Description

Exception error indicating endpoint disabled.

Members

message

Message for endpoint disabled.

FilterPolicyLimitExceededException

Description

Indicates that the number of filter polices in your Amazon Web Services account exceeds the limit. To add more filter polices, submit an Amazon SNS Limit Increase case in the Amazon Web Services Support Center.

Members

message

GetDataProtectionPolicyResponse

Members

DataProtectionPolicy

Retrieves the DataProtectionPolicy in JSON string format.

GetEndpointAttributesResponse

Description

Response from GetEndpointAttributes of the EndpointArn.

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

Attributes include the following:

GetPlatformApplicationAttributesResponse

Description

Response for GetPlatformApplicationAttributes action.

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

Attributes include the following:

GetSMSAttributesResponse

Description

The response from the GetSMSAttributes request.

Members

attributes

Type: Associative array of custom strings keys (String) to strings

The SMS attribute names and their values.

GetSMSSandboxAccountStatusResult

Members

IsInSandbox

Required: Yes

Type: boolean

Indicates whether the calling Amazon Web Services account is in the SMS sandbox.

GetSubscriptionAttributesResponse

Description

Response for GetSubscriptionAttributes action.

Members

Attributes

Type: Associative array of custom strings keys (attributeName) to strings

A map of the subscription's attributes. Attributes in this map include the following:

The following attribute applies only to Amazon Data Firehose delivery stream subscriptions:

GetTopicAttributesResponse

Description

Response for GetTopicAttributes action.

Members

Attributes

Type: Associative array of custom strings keys (attributeName) to strings

A map of the topic's attributes. Attributes in this map include the following:

The following attribute applies only to server-side-encryption:

The following attributes apply only to FIFO topics:

InternalErrorException

Description

Indicates an internal service error.

Members

message

InvalidBatchEntryIdException

Description

The Id of a batch entry in a batch request doesn't abide by the specification.

Members

message

InvalidParameterException

Description

Indicates that a request parameter does not comply with the associated constraints.

Members

message

InvalidParameterValueException

Description

Indicates that a request parameter does not comply with the associated constraints.

Members

message

The parameter of an entry in a request doesn't abide by the specification.

InvalidSecurityException

Description

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

Members

message

InvalidStateException

Description

Indicates that the specified state is not a valid state for an event source.

Members

message

KMSAccessDeniedException

Description

The ciphertext references a key that doesn't exist or that you don't have access to.

Members

message

KMSDisabledException

Description

The request was rejected because the specified Amazon Web Services KMS key isn't enabled.

Members

message

KMSInvalidStateException

Description

The request was rejected because the state of the specified resource isn't valid for this request. For more information, see Key states of Amazon Web Services KMS keys in the Key Management Service Developer Guide.

Members

message

KMSNotFoundException

Description

The request was rejected because the specified entity or resource can't be found.

Members

message

KMSOptInRequired

Description

The Amazon Web Services access key ID needs a subscription for the service.

Members

message

KMSThrottlingException

Description

The request was denied due to request throttling. For more information about throttling, see Limits in the Key Management Service Developer Guide.

Members

message

ListEndpointsByPlatformApplicationResponse

Description

Response for ListEndpointsByPlatformApplication action.

Members

Endpoints

Type: Array of Endpoint structures

Endpoints returned for ListEndpointsByPlatformApplication action.

NextToken

NextToken string is returned when calling ListEndpointsByPlatformApplication action if additional records are available after the first page results.

ListOriginationNumbersResult

Members

NextToken

A NextToken string is returned when you call the ListOriginationNumbers operation if additional pages of records are available.

PhoneNumbers

Type: Array of PhoneNumberInformation structures

A list of the calling account's verified and pending origination numbers.

ListPhoneNumbersOptedOutResponse

Description

The response from the ListPhoneNumbersOptedOut action.

Members

nextToken

A NextToken string is returned when you call the ListPhoneNumbersOptedOut action if additional records are available after the first page of results.

phoneNumbers

A list of phone numbers that are opted out of receiving SMS messages. The list is paginated, and each page can contain up to 100 phone numbers.

ListPlatformApplicationsResponse

Description

Response for ListPlatformApplications action.

Members

NextToken

NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.

PlatformApplications

Type: Array of PlatformApplication structures

Platform applications returned when calling ListPlatformApplications action.

ListSMSSandboxPhoneNumbersResult

Members

NextToken

A NextToken string is returned when you call the ListSMSSandboxPhoneNumbersInput operation if additional pages of records are available.

PhoneNumbers

Required: Yes

Type: Array of SMSSandboxPhoneNumber structures

A list of the calling account's pending and verified phone numbers.

ListSubscriptionsByTopicResponse

Description

Response for ListSubscriptionsByTopic action.

Members

NextToken

Token to pass along to the next ListSubscriptionsByTopic request. This element is returned if there are more subscriptions to retrieve.

Subscriptions

Type: Array of Subscription structures

A list of subscriptions.

ListSubscriptionsResponse

Description

Response for ListSubscriptions action

Members

NextToken

Token to pass along to the next ListSubscriptions request. This element is returned if there are more subscriptions to retrieve.

Subscriptions

Type: Array of Subscription structures

A list of subscriptions.

ListTagsForResourceResponse

Members

Tags

Type: Array of Tag structures

The tags associated with the specified topic.

ListTopicsResponse

Description

Response for ListTopics action.

Members

NextToken

Token to pass along to the next ListTopics request. This element is returned if there are additional topics to retrieve.

Topics

Type: Array of Topic structures

A list of topic ARNs.

MessageAttributeValue

Description

The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see Publish.

Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes). For more information, see Amazon SNS message attributes and Publishing to a mobile phone in the Amazon SNS Developer Guide.

Members

BinaryValue

Type: blob (string|resource|Psr\Http\Message\StreamInterface)

Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.

DataType

Required: Yes

Type: string

Amazon SNS supports the following logical data types: String, String.Array, Number, and Binary. For more information, see Message Attribute Data Types.

StringValue

Strings are Unicode with UTF8 binary encoding. For a list of code values, see ASCII Printable Characters.

NotFoundException

Description

Indicates that the requested resource does not exist.

Members

message

OptInPhoneNumberResponse

Description

The response for the OptInPhoneNumber action.

Members

OptedOutException

Description

Indicates that the specified phone number opted out of receiving SMS messages from your Amazon Web Services account. You can't send SMS messages to phone numbers that opt out.

Members

message

PhoneNumberInformation

Description

A list of phone numbers and their metadata.

Members

CreatedAt

Type: timestamp (string|DateTime or anything parsable by strtotime)

The date and time when the phone number was created.

Iso2CountryCode

The two-character code for the country or region, in ISO 3166-1 alpha-2 format.

NumberCapabilities

The capabilities of each phone number.

PhoneNumber

The phone number.

RouteType

The list of supported routes.

Status

The status of the phone number.

PlatformApplication

Description

Platform application object.

Members

Attributes

Type: Associative array of custom strings keys (String) to strings

Attributes for platform application object.

PlatformApplicationArn

PlatformApplicationArn for platform application object.

PlatformApplicationDisabledException

Description

Exception error indicating platform application disabled.

Members

message

Message for platform application disabled.

PublishBatchRequestEntry

Description

Contains the details of a single Amazon SNS message along with an Id that identifies a message within the batch.

Members

Id

Required: Yes

Type: string

An identifier for the message in this batch.

The Ids of a batch request must be unique within a request.

This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).

Message

Required: Yes

Type: string

The body of the message.

MessageAttributes

Type: Associative array of custom strings keys (String) to MessageAttributeValue structures

Each message attribute consists of a Name, Type, and Value. For more information, see Amazon SNS message attributes in the Amazon SNS Developer Guide.

MessageDeduplicationId

This parameter applies only to FIFO (first-in-first-out) topics.

The MessageDeduplicationId is available to the consumer of the message (this can be useful for troubleshooting delivery issues).

If a message is sent successfully but the acknowledgement is lost and the message is resent with the same MessageDeduplicationId after the deduplication interval, Amazon SNS can't detect duplicate messages.

Amazon SNS continues to keep track of the message deduplication ID even after the message is received and deleted.

MessageGroupId

FIFO topics: The tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). To interleave multiple ordered streams within a single topic, use MessageGroupId values (for example, session data for multiple users). In this scenario, multiple consumers can process the topic, but the session data of each user is processed in a FIFO fashion. You must associate a non-empty MessageGroupId with a message. If you do not provide a MessageGroupId, the action fails.

Standard topics: The MessageGroupId is optional and is forwarded only to Amazon SQS standard subscriptions to activate fair queues. The MessageGroupId is not used for, or sent to, any other endpoint types.

The length of MessageGroupId is 128 characters.

MessageGroupId can contain alphanumeric characters (a-z, A-Z, 0-9) and punctuation (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~).

MessageStructure

Set MessageStructure to json if you want to send a different message for each protocol. For example, using one publish action, you can send a short message to your SMS subscribers and a longer message to your email subscribers. If you set MessageStructure to json, the value of the Message parameter must:

You can define other top-level keys that define the message you want to send to a specific transport protocol (for example, http).

Subject

The subject of the batch message.

PublishBatchResponse

Members

Failed

Type: Array of BatchResultErrorEntry structures

A list of failed PublishBatch responses.

Successful

Type: Array of PublishBatchResultEntry structures

A list of successful PublishBatch responses.

PublishBatchResultEntry

Description

Encloses data related to a successful message in a batch request for topic.

Members

Id

The Id of an entry in a batch request.

MessageId

An identifier for the message.

SequenceNumber

This parameter applies only to FIFO (first-in-first-out) topics.

The large, non-consecutive number that Amazon SNS assigns to each message.

The length of SequenceNumber is 128 bits. SequenceNumber continues to increase for a particular MessageGroupId.

PublishResponse

Description

Response for Publish action.

Members

MessageId

Unique identifier assigned to the published message.

Length Constraint: Maximum 100 characters

SequenceNumber

This response element applies only to FIFO (first-in-first-out) topics.

The sequence number is a large, non-consecutive number that Amazon SNS assigns to each message. The length of SequenceNumber is 128 bits. SequenceNumber continues to increase for each MessageGroupId.

ReplayLimitExceededException

Description

Indicates that the request parameter has exceeded the maximum number of concurrent message replays.

Members

message

ResourceNotFoundException

Description

Can’t perform the action on the specified resource. Make sure that the resource exists.

Members

message

SMSSandboxPhoneNumber

Description

A verified or pending destination phone number in the SMS sandbox.

When you start using Amazon SNS to send SMS messages, your Amazon Web Services account is in the SMS sandbox. The SMS sandbox provides a safe environment for you to try Amazon SNS features without risking your reputation as an SMS sender. While your Amazon Web Services account is in the SMS sandbox, you can use all of the features of Amazon SNS. However, you can send SMS messages only to verified destination phone numbers. For more information, including how to move out of the sandbox to send messages without restrictions, see SMS sandbox in the Amazon SNS Developer Guide.

Members

PhoneNumber

The destination phone number.

Status

The destination phone number's verification status.

SetSMSAttributesResponse

Description

The response for the SetSMSAttributes action.

Members

StaleTagException

Description

A tag has been added to a resource with the same ARN as a deleted resource. Wait a short while and then retry the operation.

Members

message

SubscribeResponse

Description

Response for Subscribe action.

Members

SubscriptionArn

The ARN of the subscription if it is confirmed, or the string "pending confirmation" if the subscription requires confirmation. However, if the API request parameter ReturnSubscriptionArn is true, then the value is always the subscription ARN, even if the subscription requires confirmation.

Subscription

Description

A wrapper type for the attributes of an Amazon SNS subscription.

Members

Endpoint

The subscription's endpoint (format depends on the protocol).

Owner

The subscription's owner.

Protocol

The subscription's protocol.

SubscriptionArn

The subscription's ARN.

TopicArn

The ARN of the subscription's topic.

SubscriptionLimitExceededException

Description

Indicates that the customer already owns the maximum allowed number of subscriptions.

Members

message

Tag

Description

The list of tags to be added to the specified topic.

Members

Key

Required: Yes

Type: string

The required key portion of the tag.

Value

Required: Yes

Type: string

The optional value portion of the tag.

TagLimitExceededException

Description

Can't add more than 50 tags to a topic.

Members

message

TagPolicyException

Description

The request doesn't comply with the IAM tag policy. Correct your request and then retry it.

Members

message

TagResourceResponse

Members

ThrottledException

Description

Indicates that the rate at which requests have been submitted for this action exceeds the limit for your Amazon Web Services account.

Members

message

Throttled request.

TooManyEntriesInBatchRequestException

Description

The batch request contains more entries than permissible (more than 10).

Members

message

Topic

Description

A wrapper type for the topic's Amazon Resource Name (ARN). To retrieve a topic's attributes, use GetTopicAttributes.

Members

TopicArn

The topic's ARN.

TopicLimitExceededException

Description

Indicates that the customer already owns the maximum allowed number of topics.

Members

message

UntagResourceResponse

Members

UserErrorException

Description

Indicates that a request parameter does not comply with the associated constraints.

Members

message

ValidationException

Description

Indicates that a parameter in the request is invalid.

Members

Message

Required: Yes

Type: string

VerificationException

Description

Indicates that the one-time password (OTP) used for verification is invalid.

Members

Message

Required: Yes

Type: string

Status

Required: Yes

Type: string

The status of the verification error.

VerifySMSSandboxPhoneNumberResult

Description

The destination phone number's verification status.

Members