ModelCardReference
- class aws_cdk.aws_sagemaker.ModelCardReference(*, model_card_arn, model_card_name)
Bases:
object
A reference to a ModelCard resource.
- Parameters:
model_card_arn (
str
) – The ARN of the ModelCard resource.model_card_name (
str
) – The ModelCardName of the ModelCard resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sagemaker as sagemaker model_card_reference = sagemaker.ModelCardReference( model_card_arn="modelCardArn", model_card_name="modelCardName" )
Attributes
- model_card_arn
The ARN of the ModelCard resource.
- model_card_name
The ModelCardName of the ModelCard resource.