Skip to content

Commit 0319567

Browse files
committed
added eventBridge notification resource spec
1 parent 2c33f05 commit 0319567

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
setup(
44
name='python-amazon-sp-api',
5-
version='0.6.3',
5+
version='0.6.4',
66
install_requires=[
77
"requests",
88
"six>=1.15,<2",
99
"boto3>=1.16.39,<2",
10-
"cachetools>=4.2.0,<2",
10+
"cachetools~=4.2.0",
1111
"pycryptodome",
1212
"pytz",
13-
"confuse>=1.4.0,<2",
13+
"confuse~=1.4.0",
1414
],
1515
packages=['tests', 'tests.api', 'tests.api.orders', 'tests.api.sellers', 'tests.api.finances',
1616
'tests.api.product_fees', 'tests.api.notifications', 'tests.api.reports', 'tests.client',

sp_api/api/notifications/notifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def delete_notification_subscription(self, notification_type: NotificationType o
113113
params={**kwargs})
114114

115115
@sp_endpoint(path='/notifications/v1/destinations', method='POST')
116-
def create_destination(self, name: str, arn: str, account_id: str = None, region: str = None, **kwargs) -> ApiResponse:
116+
def create_destination(self, name: str, arn: str = None, account_id: str = None, region: str = None, **kwargs) -> ApiResponse:
117117
"""
118118
create_destination(self, name: str, arn: str, **kwargs) -> ApiResponse
119119
Creates a destination resource to receive notifications. The createDestination API is grantless. For more information, see "Grantless operations" in the Selling Partner API Developer Guide.

0 commit comments

Comments
 (0)