Class: Aws::MediaConnect::Types::ListFlowsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::ListFlowsResponse
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flows ⇒ Array<Types::ListedFlow>
A list of flow summaries.
-
#next_token ⇒ String
The token that identifies the batch of results that you want to see.
Instance Attribute Details
#flows ⇒ Array<Types::ListedFlow>
A list of flow summaries.
3497 3498 3499 3500 3501 3502 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 3497 class ListFlowsResponse < Struct.new( :flows, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that identifies the batch of results that you want to see.
For example, you submit a ListFlows request with MaxResults set at
5. The service returns the first batch of results (up to 5) and a
NextToken value. To see the next batch of results, you can submit
the ListFlows request a second time and specify the NextToken
value.
3497 3498 3499 3500 3501 3502 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 3497 class ListFlowsResponse < Struct.new( :flows, :next_token) SENSITIVE = [] include Aws::Structure end |