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. |
ModelCardVersion |
List export jobs for the model card with the specified version. |
CreationTimeAfter |
Only list model card export jobs that were created after the time specified. |
CreationTimeBefore |
Only list model card export jobs that were created before the time specified. |
ModelCardExportJobNameContains |
Only list model card export jobs with names that contain the specified string. |
StatusEquals |
Only list model card export jobs with the specified status. |
SortBy |
Sort model card export jobs by either name or creation time. Sorts by creation time by default. |
SortOrder |
Sort model card export jobs by ascending or descending order. |
NextToken |
If the response to a previous
|
MaxResults |
The 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
)