Struct aws_sdk_sagemaker::input::ListArtifactsInput
source · #[non_exhaustive]pub struct ListArtifactsInput { /* private fields */ }
Implementations§
source§impl ListArtifactsInput
impl ListArtifactsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListArtifacts, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListArtifacts, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListArtifacts
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListArtifactsInput
.
source§impl ListArtifactsInput
impl ListArtifactsInput
sourcepub fn source_uri(&self) -> Option<&str>
pub fn source_uri(&self) -> Option<&str>
A filter that returns only artifacts with the specified source URI.
sourcepub fn artifact_type(&self) -> Option<&str>
pub fn artifact_type(&self) -> Option<&str>
A filter that returns only artifacts of the specified type.
sourcepub fn created_after(&self) -> Option<&DateTime>
pub fn created_after(&self) -> Option<&DateTime>
A filter that returns only artifacts 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 artifacts created on or before the specified time.
sourcepub fn sort_by(&self) -> Option<&SortArtifactsBy>
pub fn sort_by(&self) -> Option<&SortArtifactsBy>
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 ListArtifacts
didn't return the full set of artifacts, the call returns a token for getting the next set of artifacts.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of artifacts to return in the response. The default value is 10.
Trait Implementations§
source§impl Clone for ListArtifactsInput
impl Clone for ListArtifactsInput
source§fn clone(&self) -> ListArtifactsInput
fn clone(&self) -> ListArtifactsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListArtifactsInput
impl Debug for ListArtifactsInput
source§impl PartialEq<ListArtifactsInput> for ListArtifactsInput
impl PartialEq<ListArtifactsInput> for ListArtifactsInput
source§fn eq(&self, other: &ListArtifactsInput) -> bool
fn eq(&self, other: &ListArtifactsInput) -> bool
self
and other
values to be equal, and is used
by ==
.