Struct aws_sdk_sagemaker::input::ListAssociationsInput [−][src]
#[non_exhaustive]pub struct ListAssociationsInput {
pub source_arn: Option<String>,
pub destination_arn: Option<String>,
pub source_type: Option<String>,
pub destination_type: Option<String>,
pub association_type: Option<AssociationEdgeType>,
pub created_after: Option<DateTime>,
pub created_before: Option<DateTime>,
pub sort_by: Option<SortAssociationsBy>,
pub sort_order: Option<SortOrder>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.source_arn: Option<String>
A filter that returns only associations with the specified source ARN.
destination_arn: Option<String>
A filter that returns only associations with the specified destination Amazon Resource Name (ARN).
source_type: Option<String>
A filter that returns only associations with the specified source type.
destination_type: Option<String>
A filter that returns only associations with the specified destination type.
association_type: Option<AssociationEdgeType>
A filter that returns only associations of the specified type.
created_after: Option<DateTime>
A filter that returns only associations created on or after the specified time.
created_before: Option<DateTime>
A filter that returns only associations created on or before the specified time.
sort_by: Option<SortAssociationsBy>
The property used to sort results. The default value is CreationTime
.
sort_order: Option<SortOrder>
The sort order. The default value is Descending
.
next_token: Option<String>
If the previous call to ListAssociations
didn't return the full set of associations,
the call returns a token for getting the next set of associations.
max_results: Option<i32>
The maximum number of associations to return in the response. The default value is 10.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAssociations, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAssociations, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListAssociations
>
Creates a new builder-style object to manufacture ListAssociationsInput
A filter that returns only associations with the specified source ARN.
A filter that returns only associations with the specified destination Amazon Resource Name (ARN).
A filter that returns only associations with the specified source type.
A filter that returns only associations with the specified destination type.
A filter that returns only associations of the specified type.
A filter that returns only associations created on or after the specified time.
A filter that returns only associations created on or before the specified time.
The property used to sort results. The default value is CreationTime
.
The sort order. The default value is Descending
.
If the previous call to ListAssociations
didn't return the full set of associations,
the call returns a token for getting the next set of associations.
The maximum number of associations to return in the response. The default value is 10.
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 ListAssociationsInput
impl Send for ListAssociationsInput
impl Sync for ListAssociationsInput
impl Unpin for ListAssociationsInput
impl UnwindSafe for ListAssociationsInput
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