List Model Card Export Jobs
| sagemaker_list_model_card_export_jobs | R Documentation |
List the export jobs for the Amazon SageMaker Model Card¶
Description¶
List the export jobs for the Amazon SageMaker Model Card.
Usage¶
sagemaker_list_model_card_export_jobs(ModelCardName, ModelCardVersion,
CreationTimeAfter, CreationTimeBefore, ModelCardExportJobNameContains,
StatusEquals, SortBy, SortOrder, NextToken, MaxResults)
Arguments¶
ModelCardName[required] List export jobs for the model card with the specified name.
ModelCardVersionList export jobs for the model card with the specified version.
CreationTimeAfterOnly list model card export jobs that were created after the time specified.
CreationTimeBeforeOnly list model card export jobs that were created before the time specified.
ModelCardExportJobNameContainsOnly list model card export jobs with names that contain the specified string.
StatusEqualsOnly list model card export jobs with the specified status.
SortBySort model card export jobs by either name or creation time. Sorts by creation time by default.
SortOrderSort model card export jobs by ascending or descending order.
NextTokenIf the response to a previous
list_model_card_export_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of model card export jobs, use the token in the next request.MaxResultsThe maximum number of model card export jobs to list.
Value¶
A list with the following syntax:
list(
ModelCardExportJobSummaries = list(
list(
ModelCardExportJobName = "string",
ModelCardExportJobArn = "string",
Status = "InProgress"|"Completed"|"Failed",
ModelCardName = "string",
ModelCardVersion = 123,
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastModifiedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_model_card_export_jobs(
ModelCardName = "string",
ModelCardVersion = 123,
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
ModelCardExportJobNameContains = "string",
StatusEquals = "InProgress"|"Completed"|"Failed",
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123
)