Class: Aws::EventBridge::Types::ListPartnerEventSourceAccountsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListPartnerEventSourceAccountsRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ListPartnerEventSourceAccountsRequest data as a hash:
{
event_source_name: "EventSourceName", # required
next_token: "NextToken",
limit: 1,
}
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 to this operation.
Instance Attribute Details
#event_source_name ⇒ String
The name of the partner event source to display account information about.
3482 3483 3484 3485 3486 3487 3488 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3482 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.
3482 3483 3484 3485 3486 3487 3488 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3482 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 to this operation. Specifying this retrieves the next set of results.
3482 3483 3484 3485 3486 3487 3488 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3482 class ListPartnerEventSourceAccountsRequest < Struct.new( :event_source_name, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |