Class: Aws::Appflow::Types::ListConnectorsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ListConnectorsRequest
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass ListConnectorsRequest data as a hash:
{
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Specifies the maximum number of items that should be returned in the result set.
-
#next_token ⇒ String
The pagination token for the next page of data.
Instance Attribute Details
#max_results ⇒ Integer
Specifies the maximum number of items that should be returned in the
result set. The default for maxResults
is 20 (for all paginated
API operations).
4360 4361 4362 4363 4364 4365 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4360 class ListConnectorsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token for the next page of data.
4360 4361 4362 4363 4364 4365 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4360 class ListConnectorsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |