interface CfnModelCardExportJobProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCardExportJobProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCardExportJobProps |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCardExportJobProps |
Python | aws_cdk.aws_sagemaker.CfnModelCardExportJobProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModelCardExportJobProps |
Properties for defining a CfnModelCardExportJob.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cfnModelCardExportJobProps: sagemaker.CfnModelCardExportJobProps = {
modelCardExportJobName: 'modelCardExportJobName',
modelCardName: 'modelCardName',
outputConfig: {
s3OutputPath: 's3OutputPath',
},
// the properties below are optional
modelCardVersion: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| model | string | The name of the model card export job. |
| model | string | The name or Amazon Resource Name (ARN) of the model card to export. |
| output | IResolvable | Model | Configure the export output details for an Amazon SageMaker Model Card. |
| model | number | The version of the model card to export. |
modelCardExportJobName
Type:
string
The name of the model card export job.
modelCardName
Type:
string
The name or Amazon Resource Name (ARN) of the model card to export.
outputConfig
Type:
IResolvable | Model
Configure the export output details for an Amazon SageMaker Model Card.
modelCardVersion?
Type:
number
(optional)
The version of the model card to export.
If a version is not provided, then the latest version of the model card is exported.

.NET
Go
Java
Python
TypeScript