Class: Aws::SageMaker::Types::CreateModelCardRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CreateModelCardRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#content ⇒ String
The content of the model card.
-
#model_card_name ⇒ String
The unique name of the model card.
-
#model_card_status ⇒ String
The approval status of the model card within your organization.
-
#security_config ⇒ Types::ModelCardSecurityConfig
An optional Key Management Service key to encrypt, decrypt, and re-encrypt model card content for regulated workloads with highly sensitive data.
-
#tags ⇒ Array<Types::Tag>
Key-value pairs used to manage metadata for model cards.
Instance Attribute Details
#content ⇒ String
The content of the model card. Content must be in [model card JSON schema] and provided as a string.
[1]: docs.aws.amazon.com/sagemaker/latest/dg/model-cards.html#model-cards-json-schema
8138 8139 8140 8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8138 class CreateModelCardRequest < Struct.new( :model_card_name, :security_config, :content, :model_card_status, :tags) SENSITIVE = [:content] include Aws::Structure end |
#model_card_name ⇒ String
The unique name of the model card.
8138 8139 8140 8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8138 class CreateModelCardRequest < Struct.new( :model_card_name, :security_config, :content, :model_card_status, :tags) 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.
8138 8139 8140 8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8138 class CreateModelCardRequest < Struct.new( :model_card_name, :security_config, :content, :model_card_status, :tags) SENSITIVE = [:content] include Aws::Structure end |
#security_config ⇒ Types::ModelCardSecurityConfig
An optional Key Management Service key to encrypt, decrypt, and re-encrypt model card content for regulated workloads with highly sensitive data.
8138 8139 8140 8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8138 class CreateModelCardRequest < Struct.new( :model_card_name, :security_config, :content, :model_card_status, :tags) SENSITIVE = [:content] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Key-value pairs used to manage metadata for model cards.
8138 8139 8140 8141 8142 8143 8144 8145 8146 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 8138 class CreateModelCardRequest < Struct.new( :model_card_name, :security_config, :content, :model_card_status, :tags) SENSITIVE = [:content] include Aws::Structure end |