interface ValidationProfileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.ValidationProfileProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_ValidationProfileProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.ValidationProfileProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.ValidationProfileProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » ValidationProfileProperty |
Contains data, such as the inputs and targeted instance types that are used in the process of validating the model package.
The data provided in the validation profile is made available to your buyers on AWS Marketplace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const validationProfileProperty: sagemaker_mixins.CfnModelPackagePropsMixin.ValidationProfileProperty = {
profileName: 'profileName',
transformJobDefinition: {
batchStrategy: 'batchStrategy',
environment: {
environmentKey: 'environment',
},
maxConcurrentTransforms: 123,
maxPayloadInMb: 123,
transformInput: {
compressionType: 'compressionType',
contentType: 'contentType',
dataSource: {
s3DataSource: {
s3DataType: 's3DataType',
s3Uri: 's3Uri',
},
},
splitType: 'splitType',
},
transformOutput: {
accept: 'accept',
assembleWith: 'assembleWith',
kmsKeyId: 'kmsKeyId',
s3OutputPath: 's3OutputPath',
},
transformResources: {
instanceCount: 123,
instanceType: 'instanceType',
volumeKmsKeyId: 'volumeKmsKeyId',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| profile | string | The name of the profile for the model package. |
| transform | IResolvable | Transform | The TransformJobDefinition object that describes the transform job used for the validation of the model package. |
profileName?
Type:
string
(optional)
The name of the profile for the model package.
transformJobDefinition?
Type:
IResolvable | Transform
(optional)
The TransformJobDefinition object that describes the transform job used for the validation of the model package.

.NET
Go
Java
Python
TypeScript