Update Model Card
sagemaker_update_model_card | R Documentation |
Update an Amazon SageMaker Model Card¶
Description¶
Update an Amazon SageMaker Model Card.
You cannot update both model card content and model card status in a single call.
Usage¶
sagemaker_update_model_card(ModelCardName, Content, ModelCardStatus)
Arguments¶
ModelCardName |
[required] The name or Amazon Resource Name (ARN) of the model card to update. |
Content |
The updated model card content. Content must be in model card JSON schema and provided as a string. When updating model card content, be sure to include the full content and not just updated content. |
ModelCardStatus |
The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.
|
Value¶
A list with the following syntax:
list(
ModelCardArn = "string"
)
Request syntax¶
svc$update_model_card(
ModelCardName = "string",
Content = "string",
ModelCardStatus = "Draft"|"PendingReview"|"Approved"|"Archived"
)