Class: Aws::EventBridge::Types::ListPartnerEventSourceAccountsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListPartnerEventSourceAccountsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_source_name ⇒ String
The name of the partner event source to display account information about.
-
#limit ⇒ Integer
Specifying this limits the number of results returned by this operation.
-
#next_token ⇒ String
The token returned by a previous call, which you can use to retrieve the next set of results.
Instance Attribute Details
#event_source_name ⇒ String
The name of the partner event source to display account information about.
3175 3176 3177 3178 3179 3180 3181 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3175 class ListPartnerEventSourceAccountsRequest < Struct.new( :event_source_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
Specifying this limits the number of results returned by this operation. The operation also returns a NextToken which you can use in a subsequent operation to retrieve the next set of results.
3175 3176 3177 3178 3179 3180 3181 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3175 class ListPartnerEventSourceAccountsRequest < Struct.new( :event_source_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a previous call, which you can use to retrieve the next set of results.
The value of ‘nextToken` is a unique pagination token for each page. To retrieve the next page of results, make the call again using the returned token. Keep all other arguments unchanged.
Using an expired pagination token results in an ‘HTTP 400 InvalidToken` error.
3175 3176 3177 3178 3179 3180 3181 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 3175 class ListPartnerEventSourceAccountsRequest < Struct.new( :event_source_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |