pub struct ListModelCardExportJobs { /* private fields */ }
Expand description
Fluent builder constructing a request to ListModelCardExportJobs
.
List the export jobs for the Amazon SageMaker Model Card.
Implementations§
source§impl ListModelCardExportJobs
impl ListModelCardExportJobs
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListModelCardExportJobs, AwsResponseRetryClassifier>, SdkError<ListModelCardExportJobsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListModelCardExportJobs, AwsResponseRetryClassifier>, SdkError<ListModelCardExportJobsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListModelCardExportJobsOutput, SdkError<ListModelCardExportJobsError>>
pub async fn send(
self
) -> Result<ListModelCardExportJobsOutput, SdkError<ListModelCardExportJobsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListModelCardExportJobsPaginator
pub fn into_paginator(self) -> ListModelCardExportJobsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn model_card_name(self, input: impl Into<String>) -> Self
pub fn model_card_name(self, input: impl Into<String>) -> Self
List export jobs for the model card with the specified name.
sourcepub fn set_model_card_name(self, input: Option<String>) -> Self
pub fn set_model_card_name(self, input: Option<String>) -> Self
List export jobs for the model card with the specified name.
sourcepub fn model_card_version(self, input: i32) -> Self
pub fn model_card_version(self, input: i32) -> Self
List export jobs for the model card with the specified version.
sourcepub fn set_model_card_version(self, input: Option<i32>) -> Self
pub fn set_model_card_version(self, input: Option<i32>) -> Self
List export jobs for the model card with the specified version.
sourcepub fn creation_time_after(self, input: DateTime) -> Self
pub fn creation_time_after(self, input: DateTime) -> Self
Only list model card export jobs that were created after the time specified.
sourcepub fn set_creation_time_after(self, input: Option<DateTime>) -> Self
pub fn set_creation_time_after(self, input: Option<DateTime>) -> Self
Only list model card export jobs that were created after the time specified.
sourcepub fn creation_time_before(self, input: DateTime) -> Self
pub fn creation_time_before(self, input: DateTime) -> Self
Only list model card export jobs that were created before the time specified.
sourcepub fn set_creation_time_before(self, input: Option<DateTime>) -> Self
pub fn set_creation_time_before(self, input: Option<DateTime>) -> Self
Only list model card export jobs that were created before the time specified.
sourcepub fn model_card_export_job_name_contains(
self,
input: impl Into<String>
) -> Self
pub fn model_card_export_job_name_contains(
self,
input: impl Into<String>
) -> Self
Only list model card export jobs with names that contain the specified string.
sourcepub fn set_model_card_export_job_name_contains(
self,
input: Option<String>
) -> Self
pub fn set_model_card_export_job_name_contains(
self,
input: Option<String>
) -> Self
Only list model card export jobs with names that contain the specified string.
sourcepub fn status_equals(self, input: ModelCardExportJobStatus) -> Self
pub fn status_equals(self, input: ModelCardExportJobStatus) -> Self
Only list model card export jobs with the specified status.
sourcepub fn set_status_equals(self, input: Option<ModelCardExportJobStatus>) -> Self
pub fn set_status_equals(self, input: Option<ModelCardExportJobStatus>) -> Self
Only list model card export jobs with the specified status.
sourcepub fn sort_by(self, input: ModelCardExportJobSortBy) -> Self
pub fn sort_by(self, input: ModelCardExportJobSortBy) -> Self
Sort model card export jobs by either name or creation time. Sorts by creation time by default.
sourcepub fn set_sort_by(self, input: Option<ModelCardExportJobSortBy>) -> Self
pub fn set_sort_by(self, input: Option<ModelCardExportJobSortBy>) -> Self
Sort model card export jobs by either name or creation time. Sorts by creation time by default.
sourcepub fn sort_order(self, input: ModelCardExportJobSortOrder) -> Self
pub fn sort_order(self, input: ModelCardExportJobSortOrder) -> Self
Sort model card export jobs by ascending or descending order.
sourcepub fn set_sort_order(self, input: Option<ModelCardExportJobSortOrder>) -> Self
pub fn set_sort_order(self, input: Option<ModelCardExportJobSortOrder>) -> Self
Sort model card export jobs by ascending or descending order.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response to a previous ListModelCardExportJobs
request was truncated, the response includes a NextToken
. To retrieve the next set of model card export jobs, use the token in the next request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response to a previous ListModelCardExportJobs
request was truncated, the response includes a NextToken
. To retrieve the next set of model card export jobs, use the token in the next request.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of model card export jobs to list.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of model card export jobs to list.
Trait Implementations§
source§impl Clone for ListModelCardExportJobs
impl Clone for ListModelCardExportJobs
source§fn clone(&self) -> ListModelCardExportJobs
fn clone(&self) -> ListModelCardExportJobs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more