List Model Cards
| sagemaker_list_model_cards | R Documentation |
List existing model cards¶
Description¶
List existing model cards.
Usage¶
sagemaker_list_model_cards(CreationTimeAfter, CreationTimeBefore,
MaxResults, NameContains, ModelCardStatus, NextToken, SortBy, SortOrder)
Arguments¶
CreationTimeAfterOnly list model cards that were created after the time specified.
CreationTimeBeforeOnly list model cards that were created before the time specified.
MaxResultsThe maximum number of model cards to list.
NameContainsOnly list model cards with names that contain the specified string.
ModelCardStatusOnly list model cards with the specified approval status.
NextTokenIf the response to a previous
list_model_cardsrequest was truncated, the response includes aNextToken. To retrieve the next set of model cards, use the token in the next request.SortBySort model cards by either name or creation time. Sorts by creation time by default.
SortOrderSort model cards by ascending or descending order.
Value¶
A list with the following syntax:
list(
ModelCardSummaries = list(
list(
ModelCardName = "string",
ModelCardArn = "string",
ModelCardStatus = "Draft"|"PendingReview"|"Approved"|"Archived",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_model_cards(
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
MaxResults = 123,
NameContains = "string",
ModelCardStatus = "Draft"|"PendingReview"|"Approved"|"Archived",
NextToken = "string",
SortBy = "Name"|"CreationTime",
SortOrder = "Ascending"|"Descending"
)