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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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.

Returns:

  • (String)


46173
46174
46175
46176
46177
46178
46179
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 46173

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)


46173
46174
46175
46176
46177
46178
46179
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 46173

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)


46173
46174
46175
46176
46177
46178
46179
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 46173

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