Class: Aws::AppMesh::Types::ListVirtualGatewaysOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ListVirtualGatewaysOutput
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The
nextToken
value to include in a futureListVirtualGateways
request. -
#virtual_gateways ⇒ Array<Types::VirtualGatewayRef>
The list of existing virtual gateways for the specified service mesh.
Instance Attribute Details
#next_token ⇒ String
The nextToken
value to include in a future ListVirtualGateways
request. When the results of a ListVirtualGateways
request exceed
limit
, you can use this value to retrieve the next page of
results. This value is null
when there are no more results to
return.
3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3036 class ListVirtualGatewaysOutput < Struct.new( :next_token, :virtual_gateways) SENSITIVE = [] include Aws::Structure end |
#virtual_gateways ⇒ Array<Types::VirtualGatewayRef>
The list of existing virtual gateways for the specified service mesh.
3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3036 class ListVirtualGatewaysOutput < Struct.new( :next_token, :virtual_gateways) SENSITIVE = [] include Aws::Structure end |