Struct aws_sdk_sagemaker::input::ListAssociationsInput
source · #[non_exhaustive]pub struct ListAssociationsInput { /* private fields */ }
Implementations§
source§impl ListAssociationsInput
impl ListAssociationsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAssociations, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAssociations, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListAssociations
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListAssociationsInput
.
source§impl ListAssociationsInput
impl ListAssociationsInput
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
A filter that returns only associations with the specified source ARN.
sourcepub fn destination_arn(&self) -> Option<&str>
pub fn destination_arn(&self) -> Option<&str>
A filter that returns only associations with the specified destination Amazon Resource Name (ARN).
sourcepub fn source_type(&self) -> Option<&str>
pub fn source_type(&self) -> Option<&str>
A filter that returns only associations with the specified source type.
sourcepub fn destination_type(&self) -> Option<&str>
pub fn destination_type(&self) -> Option<&str>
A filter that returns only associations with the specified destination type.
sourcepub fn association_type(&self) -> Option<&AssociationEdgeType>
pub fn association_type(&self) -> Option<&AssociationEdgeType>
A filter that returns only associations of the specified type.
sourcepub fn created_after(&self) -> Option<&DateTime>
pub fn created_after(&self) -> Option<&DateTime>
A filter that returns only associations created on or after the specified time.
sourcepub fn created_before(&self) -> Option<&DateTime>
pub fn created_before(&self) -> Option<&DateTime>
A filter that returns only associations created on or before the specified time.
sourcepub fn sort_by(&self) -> Option<&SortAssociationsBy>
pub fn sort_by(&self) -> Option<&SortAssociationsBy>
The property used to sort results. The default value is CreationTime
.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
The sort order. The default value is Descending
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of associations to return in the response. The default value is 10.
Trait Implementations§
source§impl Clone for ListAssociationsInput
impl Clone for ListAssociationsInput
source§fn clone(&self) -> ListAssociationsInput
fn clone(&self) -> ListAssociationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListAssociationsInput
impl Debug for ListAssociationsInput
source§impl PartialEq<ListAssociationsInput> for ListAssociationsInput
impl PartialEq<ListAssociationsInput> for ListAssociationsInput
source§fn eq(&self, other: &ListAssociationsInput) -> bool
fn eq(&self, other: &ListAssociationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.