CfnModelCardExportJobProps
- class aws_cdk.aws_sagemaker.CfnModelCardExportJobProps(*, model_card_export_job_name, model_card_name, output_config, model_card_version=None)
Bases:
objectProperties for defining a
CfnModelCardExportJob.- Parameters:
model_card_export_job_name (
str) – The name of the model card export job.model_card_name (
str) – The name or Amazon Resource Name (ARN) of the model card to export.output_config (
Union[IResolvable,ModelCardExportOutputConfigProperty,Dict[str,Any]]) – Configure the export output details for an Amazon SageMaker Model Card.model_card_version (
Union[int,float,None]) – The version of the model card to export. If a version is not provided, then the latest version of the model card is exported.
- See:
- 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 cfn_model_card_export_job_props = sagemaker.CfnModelCardExportJobProps( model_card_export_job_name="modelCardExportJobName", model_card_name="modelCardName", output_config=sagemaker.CfnModelCardExportJob.ModelCardExportOutputConfigProperty( s3_output_path="s3OutputPath" ), # the properties below are optional model_card_version=123 )
Attributes
- model_card_export_job_name
The name of the model card export job.
- model_card_name
The name or Amazon Resource Name (ARN) of the model card to export.
- model_card_version
The version of the model card to export.
If a version is not provided, then the latest version of the model card is exported.
- output_config
Configure the export output details for an Amazon SageMaker Model Card.