#[non_exhaustive]pub struct DescribeAssociationExecutionTargetsInput {
pub association_id: Option<String>,
pub execution_id: Option<String>,
pub filters: Option<Vec<AssociationExecutionTargetsFilter>>,
pub max_results: Option<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.association_id: Option<String>
The association ID that includes the execution for which you want to view details.
execution_id: Option<String>
The execution ID for which you want to view details.
filters: Option<Vec<AssociationExecutionTargetsFilter>>
Filters for the request. You can specify the following filters and values.
Status (EQUAL)
ResourceId (EQUAL)
ResourceType (EQUAL)
max_results: Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
next_token: Option<String>
A token to start the list. Use this token to get the next set of results.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAssociationExecutionTargets, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAssociationExecutionTargets, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeAssociationExecutionTargets
>
Creates a new builder-style object to manufacture DescribeAssociationExecutionTargetsInput
The association ID that includes the execution for which you want to view details.
The execution ID for which you want to view details.
Filters for the request. You can specify the following filters and values.
Status (EQUAL)
ResourceId (EQUAL)
ResourceType (EQUAL)
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
A token to start the list. Use this token to get the next set of results.
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
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