Class: Aws::IoTSiteWise::Types::ListGatewaysRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ListGatewaysRequest
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass ListGatewaysRequest data as a hash:
{
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
-
#next_token ⇒ String
The token to be used for the next set of paginated results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
Default: 50
5685 5686 5687 5688 5689 5690 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5685 class ListGatewaysRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results.
5685 5686 5687 5688 5689 5690 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5685 class ListGatewaysRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |