Class: Aws::SageMaker::Types::DescribeModelCardRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DescribeModelCardRequest
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#included_data ⇒ String
Specifies the level of model card data to include in the response.
-
#model_card_name ⇒ String
The name or Amazon Resource Name (ARN) of the model card to describe.
-
#model_card_version ⇒ Integer
The version of the model card to describe.
Instance Attribute Details
#included_data ⇒ String
Specifies the level of model card data to include in the response.
Use this parameter to call DescribeModelCard without requiring
kms:Decrypt permission on the customer-managed Amazon Web Services
KMS key.
AllData: Returns the full model cardContent. This option requireskms:Decryptpermission on the customer-managed key, if one is associated with the model card. This is the default.MetadataOnly: Returns the model card with sanitizedContentthat includes only a small set of unencrypted metadata fields. This option does not requirekms:Decryptpermission. For the list of fields preserved in the response, seeContent.
If you don't specify a value, SageMaker returns AllData.
21399 21400 21401 21402 21403 21404 21405 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 21399 class DescribeModelCardRequest < Struct.new( :model_card_name, :model_card_version, :included_data) SENSITIVE = [] include Aws::Structure end |
#model_card_name ⇒ String
The name or Amazon Resource Name (ARN) of the model card to describe.
21399 21400 21401 21402 21403 21404 21405 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 21399 class DescribeModelCardRequest < Struct.new( :model_card_name, :model_card_version, :included_data) SENSITIVE = [] include Aws::Structure end |
#model_card_version ⇒ Integer
The version of the model card to describe. If a version is not provided, then the latest version of the model card is described.
21399 21400 21401 21402 21403 21404 21405 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 21399 class DescribeModelCardRequest < Struct.new( :model_card_name, :model_card_version, :included_data) SENSITIVE = [] include Aws::Structure end |