Class: Aws::MediaConnect::Types::ListGatewaysResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#gatewaysArray<Types::ListedGateway>

A list of gateway summaries.

Returns:



2710
2711
2712
2713
2714
2715
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2710

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

#next_tokenString

The token that identifies the batch of results that you want to see.

For example, you submit a ‘ListGateways` 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 `ListGateways` request a second time and specify the `NextToken` value.

Returns:

  • (String)


2710
2711
2712
2713
2714
2715
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2710

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