aws-cdk-lib.aws_sagemaker.CfnModelPackage.ValidationProfileProperty

interface ValidationProfileProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackage.ValidationProfileProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_ValidationProfileProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackage.ValidationProfileProperty
Pythonaws_cdk.aws_sagemaker.CfnModelPackage.ValidationProfileProperty
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
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

NameTypeDescription
profileNamestringThe name of the profile for the model package.
transformJobDefinitionIResolvable | TransformJobDefinitionPropertyThe 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 | TransformJobDefinitionProperty

The TransformJobDefinition object that describes the transform job used for the validation of the model package.