Support SNS subscription attributes (#1087)
* remove code for local test * Add SNS set_subscription_attributes and get_subscription_attributes
This commit is contained in:
parent
f052757259
commit
0c3708a8e7
5 changed files with 142 additions and 3 deletions
|
|
@ -24,3 +24,11 @@ class SnsEndpointDisabled(RESTError):
|
|||
def __init__(self, message):
|
||||
super(SnsEndpointDisabled, self).__init__(
|
||||
"EndpointDisabled", message)
|
||||
|
||||
|
||||
class SNSInvalidParameter(RESTError):
|
||||
code = 400
|
||||
|
||||
def __init__(self, message):
|
||||
super(SNSInvalidParameter, self).__init__(
|
||||
"InvalidParameter", message)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue