interface CfnModelCardExportJobMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardExportJobMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardExportJobMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardExportJobMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardExportJobMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelCardExportJobMixinProps |
Properties for CfnModelCardExportJobPropsMixin.
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/cfn-property-mixins';
const cfnModelCardExportJobMixinProps: sagemaker.CfnModelCardExportJobMixinProps = {
modelCardExportJobName: 'modelCardExportJobName',
modelCardName: 'modelCardName',
modelCardVersion: 123,
outputConfig: {
s3OutputPath: 's3OutputPath',
},
};
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. |
| model | number | The version of the model card to export. |
| output | IResolvable | Model | Configure the export output details for an Amazon SageMaker Model Card. |
modelCardExportJobName?
Type:
string
(optional)
The name of the model card export job.
modelCardName?
Type:
string
(optional)
The name or Amazon Resource Name (ARN) of the model card to export.
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.
outputConfig?
Type:
IResolvable | Model
(optional)
Configure the export output details for an Amazon SageMaker Model Card.

.NET
Go
Java
Python
TypeScript