Class: Aws::MediaConnect::Types::ListFlowsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb

Overview

The result of a successful ListFlows request. The response includes flow summaries and the NextToken to use in a subsequent ListFlows request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#flowsArray<Types::ListedFlow>

A list of flow summaries.

Returns:



2374
2375
2376
2377
2378
2379
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2374

class ListFlowsResponse < Struct.new(
  :flows,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The token that identifies which 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.

Returns:

  • (String)


2374
2375
2376
2377
2378
2379
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2374

class ListFlowsResponse < Struct.new(
  :flows,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end