Class: Aws::SageMaker::Types::UpdateModelCardRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:content]

Instance Attribute Summary collapse

Instance Attribute Details

#contentString

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.

[1]: docs.aws.amazon.com/sagemaker/latest/dg/model-cards.html#model-cards-json-schema

Returns:

  • (String)


43782
43783
43784
43785
43786
43787
43788
# File 'lib/aws-sdk-sagemaker/types.rb', line 43782

class UpdateModelCardRequest < Struct.new(
  :model_card_name,
  :content,
  :model_card_status)
  SENSITIVE = [:content]
  include Aws::Structure
end

#model_card_nameString

The name or Amazon Resource Name (ARN) of the model card to update.

Returns:

  • (String)


43782
43783
43784
43785
43786
43787
43788
# File 'lib/aws-sdk-sagemaker/types.rb', line 43782

class UpdateModelCardRequest < Struct.new(
  :model_card_name,
  :content,
  :model_card_status)
  SENSITIVE = [:content]
  include Aws::Structure
end

#model_card_statusString

The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.

  • ‘Draft`: The model card is a work in progress.

  • ‘PendingReview`: The model card is pending review.

  • ‘Approved`: The model card is approved.

  • ‘Archived`: The model card is archived. No more updates should be made to the model card, but it can still be exported.

Returns:

  • (String)


43782
43783
43784
43785
43786
43787
43788
# File 'lib/aws-sdk-sagemaker/types.rb', line 43782

class UpdateModelCardRequest < Struct.new(
  :model_card_name,
  :content,
  :model_card_status)
  SENSITIVE = [:content]
  include Aws::Structure
end