Class: Aws::OpenSearchService::Types::DescribeInboundConnectionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DescribeInboundConnectionsResponse
- Includes:
- Structure
- Defined in:
- 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::InboundConnection>
List of inbound connections.
-
#next_token ⇒ String
When ‘nextToken` is returned, there are more results available.
Instance Attribute Details
#connections ⇒ Array<Types::InboundConnection>
List of inbound connections.
2624 2625 2626 2627 2628 2629 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 2624 class DescribeInboundConnectionsResponse < 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.
2624 2625 2626 2627 2628 2629 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 2624 class DescribeInboundConnectionsResponse < Struct.new( :connections, :next_token) SENSITIVE = [] include Aws::Structure end |