Class: Aws::EventBridge::Types::ListEventBusesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListEventBusesRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ListEventBusesRequest data as a hash:
{
name_prefix: "EventBusName",
next_token: "NextToken",
limit: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
Specifying this limits the number of results returned by this operation.
-
#name_prefix ⇒ String
Specifying this limits the results to only those event buses with names that start with the specified prefix.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
Instance Attribute Details
#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.
3376 3377 3378 3379 3380 3381 3382 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3376 class ListEventBusesRequest < Struct.new( :name_prefix, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#name_prefix ⇒ String
Specifying this limits the results to only those event buses with names that start with the specified prefix.
3376 3377 3378 3379 3380 3381 3382 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3376 class ListEventBusesRequest < Struct.new( :name_prefix, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
3376 3377 3378 3379 3380 3381 3382 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3376 class ListEventBusesRequest < Struct.new( :name_prefix, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |