Class: Aws::IoT::Types::ListStreamsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ListStreamsRequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass ListStreamsRequest data as a hash:
{
max_results: 1,
next_token: "NextToken",
ascending_order: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ascending_order ⇒ Boolean
Set to true to return the list of streams in ascending order.
-
#max_results ⇒ Integer
The maximum number of results to return at a time.
-
#next_token ⇒ String
A token used to get the next set of results.
Instance Attribute Details
#ascending_order ⇒ Boolean
Set to true to return the list of streams in ascending order.
13039 13040 13041 13042 13043 13044 13045 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13039 class ListStreamsRequest < Struct.new( :max_results, :next_token, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return at a time.
13039 13040 13041 13042 13043 13044 13045 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13039 class ListStreamsRequest < Struct.new( :max_results, :next_token, :ascending_order) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token used to get the next set of results.
13039 13040 13041 13042 13043 13044 13045 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13039 class ListStreamsRequest < Struct.new( :max_results, :next_token, :ascending_order) SENSITIVE = [] include Aws::Structure end |