Class: Aws::OpenSearchService::Types::DescribeOutboundConnectionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DescribeOutboundConnectionsResponse
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Contains a list of connections matching the filter criteria.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connections ⇒ Array<Types::OutboundConnection>
List of outbound connections that match the filter criteria.
-
#next_token ⇒ String
When
nextToken
is returned, there are more results available.
Instance Attribute Details
#connections ⇒ Array<Types::OutboundConnection>
List of outbound connections that match the filter criteria.
2798 2799 2800 2801 2802 2803 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2798 class DescribeOutboundConnectionsResponse < Struct.new( :connections, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When nextToken
is returned, there are more results available. The
value of nextToken
is a unique pagination token for each page.
Send the request again using the returned token to retrieve the next
page.
2798 2799 2800 2801 2802 2803 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2798 class DescribeOutboundConnectionsResponse < Struct.new( :connections, :next_token) SENSITIVE = [] include Aws::Structure end |