Class: Aws::OpenSearchService::Types::DescribeOutboundConnectionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DescribeOutboundConnectionsRequest
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
When making an API call, you may pass DescribeOutboundConnectionsRequest data as a hash:
{
filters: [
{
name: "NonEmptyString",
values: ["NonEmptyString"],
},
],
max_results: 1,
next_token: "NextToken",
}
Container for the parameters to the DescribeOutboundConnections
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
A list of filters used to match properties for outbound cross-cluster connections.
-
#max_results ⇒ Integer
Set this value to limit the number of results returned.
-
#next_token ⇒ String
NextToken is sent in case the earlier API call results contain the NextToken parameter.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
A list of filters used to match properties for outbound
cross-cluster connections. Available Filter
names for this
operation are: * connection-id
* remote-domain-info.domain-name
* remote-domain-info.owner-id
* remote-domain-info.region
* local-domain-info.domain-name
1959 1960 1961 1962 1963 1964 1965 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1959 class DescribeOutboundConnectionsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Set this value to limit the number of results returned. If not specified, defaults to 100.
1959 1960 1961 1962 1963 1964 1965 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1959 class DescribeOutboundConnectionsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
NextToken is sent in case the earlier API call results contain the NextToken parameter. Used for pagination.
1959 1960 1961 1962 1963 1964 1965 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1959 class DescribeOutboundConnectionsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |