| Copyright | (c) 2013-2021 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
Amazonka.OpenSearch.DescribeInboundConnections
Description
Lists all the inbound cross-cluster connections for a remote domain.
Synopsis
- data DescribeInboundConnections = DescribeInboundConnections' {}
- newDescribeInboundConnections :: DescribeInboundConnections
- describeInboundConnections_filters :: Lens' DescribeInboundConnections (Maybe [Filter])
- describeInboundConnections_nextToken :: Lens' DescribeInboundConnections (Maybe Text)
- describeInboundConnections_maxResults :: Lens' DescribeInboundConnections (Maybe Int)
- data DescribeInboundConnectionsResponse = DescribeInboundConnectionsResponse' {
- connections :: Maybe [InboundConnection]
- nextToken :: Maybe Text
- httpStatus :: Int
- newDescribeInboundConnectionsResponse :: Int -> DescribeInboundConnectionsResponse
- describeInboundConnectionsResponse_connections :: Lens' DescribeInboundConnectionsResponse (Maybe [InboundConnection])
- describeInboundConnectionsResponse_nextToken :: Lens' DescribeInboundConnectionsResponse (Maybe Text)
- describeInboundConnectionsResponse_httpStatus :: Lens' DescribeInboundConnectionsResponse Int
Creating a Request
data DescribeInboundConnections Source #
Container for the parameters to the DescribeInboundConnections
operation.
See: newDescribeInboundConnections smart constructor.
Constructors
| DescribeInboundConnections' | |
Fields
| |
Instances
newDescribeInboundConnections :: DescribeInboundConnections Source #
Create a value of DescribeInboundConnections with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:filters:DescribeInboundConnections', describeInboundConnections_filters - A list of filters used to match properties for inbound cross-cluster
connections. Available Filter values are:
- connection-id
- local-domain-info.domain-name
- local-domain-info.owner-id
- local-domain-info.region
- remote-domain-info.domain-name
$sel:nextToken:DescribeInboundConnections', describeInboundConnections_nextToken - If more results are available and NextToken is present, make the next
request to the same API with the received NextToken to paginate the
remaining results.
$sel:maxResults:DescribeInboundConnections', describeInboundConnections_maxResults - Set this value to limit the number of results returned. If not
specified, defaults to 100.
Request Lenses
describeInboundConnections_filters :: Lens' DescribeInboundConnections (Maybe [Filter]) Source #
A list of filters used to match properties for inbound cross-cluster
connections. Available Filter values are:
- connection-id
- local-domain-info.domain-name
- local-domain-info.owner-id
- local-domain-info.region
- remote-domain-info.domain-name
describeInboundConnections_nextToken :: Lens' DescribeInboundConnections (Maybe Text) Source #
If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
describeInboundConnections_maxResults :: Lens' DescribeInboundConnections (Maybe Int) Source #
Set this value to limit the number of results returned. If not specified, defaults to 100.
Destructuring the Response
data DescribeInboundConnectionsResponse Source #
The result of a DescribeInboundConnections request. Contains a list
of connections matching the filter criteria.
See: newDescribeInboundConnectionsResponse smart constructor.
Constructors
| DescribeInboundConnectionsResponse' | |
Fields
| |
Instances
newDescribeInboundConnectionsResponse Source #
Arguments
| :: Int | |
| -> DescribeInboundConnectionsResponse |
Create a value of DescribeInboundConnectionsResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:connections:DescribeInboundConnectionsResponse', describeInboundConnectionsResponse_connections - A list of InboundConnection matching the specified filter criteria.
$sel:nextToken:DescribeInboundConnections', describeInboundConnectionsResponse_nextToken - If more results are available and NextToken is present, make the next
request to the same API with the received NextToken to paginate the
remaining results.
$sel:httpStatus:DescribeInboundConnectionsResponse', describeInboundConnectionsResponse_httpStatus - The response's http status code.
Response Lenses
describeInboundConnectionsResponse_connections :: Lens' DescribeInboundConnectionsResponse (Maybe [InboundConnection]) Source #
A list of InboundConnection matching the specified filter criteria.
describeInboundConnectionsResponse_nextToken :: Lens' DescribeInboundConnectionsResponse (Maybe Text) Source #
If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
describeInboundConnectionsResponse_httpStatus :: Lens' DescribeInboundConnectionsResponse Int Source #
The response's http status code.