Struct aws_sdk_codestarconnections::input::ListConnectionsInput [−][src]
#[non_exhaustive]pub struct ListConnectionsInput {
pub provider_type_filter: Option<ProviderType>,
pub host_arn_filter: Option<String>,
pub max_results: i32,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.provider_type_filter: Option<ProviderType>
Filters the list of connections to those associated with a specified provider, such as Bitbucket.
host_arn_filter: Option<String>
Filters the list of connections to those associated with a specified host.
max_results: i32
The maximum number of results to return in a single call. To retrieve the remaining
results, make another call with the returned nextToken
value.
next_token: Option<String>
The token that was returned from the previous ListConnections
call, which
can be used to return the next set of connections in the list.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListConnections, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListConnections, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListConnections
>
Creates a new builder-style object to manufacture ListConnectionsInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListConnectionsInput
impl Send for ListConnectionsInput
impl Sync for ListConnectionsInput
impl Unpin for ListConnectionsInput
impl UnwindSafe for ListConnectionsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more