Module: AmznSpApi::NotificationsApiModel
- Defined in:
- lib/notifications_api_model/version.rb,
lib/notifications_api_model.rb,
lib/notifications_api_model/api_error.rb,
lib/notifications_api_model/api_client.rb,
lib/notifications_api_model/models/error.rb,
lib/notifications_api_model/configuration.rb,
lib/notifications_api_model/models/error_list.rb,
lib/notifications_api_model/models/destination.rb,
lib/notifications_api_model/models/event_filter.rb,
lib/notifications_api_model/models/sqs_resource.rb,
lib/notifications_api_model/models/subscription.rb,
lib/notifications_api_model/api/notifications_api.rb,
lib/notifications_api_model/models/marketplace_ids.rb,
lib/notifications_api_model/models/destination_list.rb,
lib/notifications_api_model/models/aggregation_filter.rb,
lib/notifications_api_model/models/marketplace_filter.rb,
lib/notifications_api_model/models/aggregation_settings.rb,
lib/notifications_api_model/models/destination_resource.rb,
lib/notifications_api_model/models/processing_directive.rb,
lib/notifications_api_model/models/event_bridge_resource.rb,
lib/notifications_api_model/models/aggregation_time_period.rb,
lib/notifications_api_model/models/get_destination_response.rb,
lib/notifications_api_model/models/get_destinations_response.rb,
lib/notifications_api_model/models/get_subscription_response.rb,
lib/notifications_api_model/models/create_destination_request.rb,
lib/notifications_api_model/models/create_destination_response.rb,
lib/notifications_api_model/models/create_subscription_request.rb,
lib/notifications_api_model/models/delete_destination_response.rb,
lib/notifications_api_model/models/create_subscription_response.rb,
lib/notifications_api_model/models/get_subscription_by_id_response.rb,
lib/notifications_api_model/models/delete_subscription_by_id_response.rb,
lib/notifications_api_model/models/destination_resource_specification.rb,
lib/notifications_api_model/models/event_bridge_resource_specification.rb
Overview
#Selling Partner API for Notifications
The Selling Partner API for Notifications lets you subscribe to notifications that are relevant to a selling partner’s business. Using this API you can create a destination to receive notifications, subscribe to notifications, delete notification subscriptions, and more. For more information, see the [Notifications Use Case Guide](doc:notifications-api-v1-use-case-guide).
OpenAPI spec version: v1
Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 3.0.36
Defined Under Namespace
Classes: AggregationFilter, AggregationSettings, AggregationTimePeriod, ApiClient, ApiError, Configuration, CreateDestinationRequest, CreateDestinationResponse, CreateSubscriptionRequest, CreateSubscriptionResponse, DeleteDestinationResponse, DeleteSubscriptionByIdResponse, Destination, DestinationList, DestinationResource, DestinationResourceSpecification, Error, ErrorList, EventBridgeResource, EventBridgeResourceSpecification, EventFilter, GetDestinationResponse, GetDestinationsResponse, GetSubscriptionByIdResponse, GetSubscriptionResponse, MarketplaceFilter, MarketplaceIds, NotificationsApi, ProcessingDirective, SqsResource, Subscription
Constant Summary collapse
- VERSION =
'1.0.0'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
AmznSpApi::NotificationsApiModel.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
56 57 58 59 60 61 62 |
# File 'lib/notifications_api_model.rb', line 56 def configure if block_given? yield(Configuration.default) else Configuration.default end end |