// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeOutboundConnections`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::set_filters):<br>required: **false**<br><p>List of filter names and values that you can use for requests.</p><br>
/// - [`max_results(i32)`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional parameter that specifies the maximum number of results to return. You can use <code>nextToken</code> to get the next page of results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::set_next_token):<br>required: **false**<br><p>If your initial <code>DescribeOutboundConnections</code> operation returns a <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent <code>DescribeOutboundConnections</code> operations, which returns results in the next page.</p><br>
/// - On success, responds with [`DescribeOutboundConnectionsOutput`](crate::operation::describe_outbound_connections::DescribeOutboundConnectionsOutput) with field(s):
/// - [`connections(Option<Vec::<OutboundConnection>>)`](crate::operation::describe_outbound_connections::DescribeOutboundConnectionsOutput::connections): <p>List of outbound connections that match the filter criteria.</p>
/// - [`next_token(Option<String>)`](crate::operation::describe_outbound_connections::DescribeOutboundConnectionsOutput::next_token): <p>When <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.</p>
/// - On failure, responds with [`SdkError<DescribeOutboundConnectionsError>`](crate::operation::describe_outbound_connections::DescribeOutboundConnectionsError)
pub fn describe_outbound_connections(
&self,
) -> crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder {
crate::operation::describe_outbound_connections::builders::DescribeOutboundConnectionsFluentBuilder::new(self.handle.clone())
}
}