Class: Aws::EventBridge::Types::ListConnectionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ListConnectionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_state ⇒ String
The state of the connection.
-
#limit ⇒ Integer
The maximum number of connections to return.
-
#name_prefix ⇒ String
A name prefix to filter results returned.
-
#next_token ⇒ String
The token returned by a previous call, which you can use to retrieve the next set of results.
Instance Attribute Details
#connection_state ⇒ String
The state of the connection.
2936 2937 2938 2939 2940 2941 2942 2943 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2936 class ListConnectionsRequest < Struct.new( :name_prefix, :connection_state, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of connections to return.
2936 2937 2938 2939 2940 2941 2942 2943 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2936 class ListConnectionsRequest < Struct.new( :name_prefix, :connection_state, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |
#name_prefix ⇒ String
A name prefix to filter results returned. Only connections with a name that starts with the prefix are returned.
2936 2937 2938 2939 2940 2941 2942 2943 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2936 class ListConnectionsRequest < Struct.new( :name_prefix, :connection_state, :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.
2936 2937 2938 2939 2940 2941 2942 2943 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 2936 class ListConnectionsRequest < Struct.new( :name_prefix, :connection_state, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |