Class: Aws::SageMaker::Types::UpdateModelCardRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::UpdateModelCardRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:content]
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The updated model card content.
 - 
  
    
      #model_card_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name or Amazon Resource Name (ARN) of the model card to update.
 - 
  
    
      #model_card_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The approval status of the model card within your organization.
 
Instance Attribute Details
#content ⇒ String
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
      48338 48339 48340 48341 48342 48343 48344  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 48338 class UpdateModelCardRequest < Struct.new( :model_card_name, :content, :model_card_status) SENSITIVE = [:content] include Aws::Structure end  | 
  
#model_card_name ⇒ String
The name or Amazon Resource Name (ARN) of the model card to update.
      48338 48339 48340 48341 48342 48343 48344  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 48338 class UpdateModelCardRequest < Struct.new( :model_card_name, :content, :model_card_status) SENSITIVE = [:content] include Aws::Structure end  | 
  
#model_card_status ⇒ String
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.
 
      48338 48339 48340 48341 48342 48343 48344  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 48338 class UpdateModelCardRequest < Struct.new( :model_card_name, :content, :model_card_status) SENSITIVE = [:content] include Aws::Structure end  |