CfnModelCardExportJobMixinProps
- class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardExportJobMixinProps(*, model_card_export_job_name=None, model_card_name=None, model_card_version=None, output_config=None)
Bases:
objectProperties for CfnModelCardExportJobPropsMixin.
- Parameters:
model_card_export_job_name (
Optional[str]) – The name of the model card export job.model_card_name (
Optional[str]) – The name or Amazon Resource Name (ARN) of the model card to export.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.output_config (
Union[IResolvable,ModelCardExportOutputConfigProperty,Dict[str,Any],None]) – Configure the export output details for an Amazon SageMaker Model Card.
- 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.cfn_property_mixins import aws_sagemaker as sagemaker cfn_model_card_export_job_mixin_props = sagemaker.CfnModelCardExportJobMixinProps( model_card_export_job_name="modelCardExportJobName", model_card_name="modelCardName", model_card_version=123, output_config=sagemaker.CfnModelCardExportJobPropsMixin.ModelCardExportOutputConfigProperty( s3_output_path="s3OutputPath" ) )
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.