interface ValidationProfileProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.ValidationProfileProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnModelPackage.ValidationProfileProperty |
![]() | aws_cdk.aws_sagemaker.CfnModelPackage.ValidationProfileProperty |
![]() | @aws-cdk/aws-sagemaker » CfnModelPackage » 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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const validationProfileProperty: sagemaker.CfnModelPackage.ValidationProfileProperty = {
profileName: 'profileName',
transformJobDefinition: {
transformInput: {
dataSource: {
s3DataSource: {
s3DataType: 's3DataType',
s3Uri: 's3Uri',
},
},
// the properties below are optional
compressionType: 'compressionType',
contentType: 'contentType',
splitType: 'splitType',
},
transformOutput: {
s3OutputPath: 's3OutputPath',
// the properties below are optional
accept: 'accept',
assembleWith: 'assembleWith',
kmsKeyId: 'kmsKeyId',
},
transformResources: {
instanceCount: 123,
instanceType: 'instanceType',
// the properties below are optional
volumeKmsKeyId: 'volumeKmsKeyId',
},
// the properties below are optional
batchStrategy: 'batchStrategy',
environment: {
environmentKey: 'environment',
},
maxConcurrentTransforms: 123,
maxPayloadInMb: 123,
},
};
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
The name of the profile for the model package.
transformJobDefinition
Type:
IResolvable
|
Transform
The TransformJobDefinition
object that describes the transform job used for the validation of the model package.