class CfnTransformJobPropsMixin (mixin)
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTransformJobPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTransformJobPropsMixin |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTransformJobPropsMixin |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTransformJobPropsMixin |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTransformJobPropsMixin |
Implements
IMixin
Extends
Mixin
Resource type definition for AWS::SageMaker::TransformJob.
A transform job uses a trained model to get inferences on a dataset and saves these results to an Amazon S3 location that you specify.
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';
import * as cdk from 'aws-cdk-lib';
declare const mergeStrategy: cdk.IMergeStrategy;
const cfnTransformJobPropsMixin = new sagemaker.CfnTransformJobPropsMixin({
batchStrategy: 'batchStrategy',
dataCaptureConfig: {
destinationS3Uri: 'destinationS3Uri',
generateInferenceId: false,
kmsKeyId: 'kmsKeyId',
},
dataProcessing: {
inputFilter: 'inputFilter',
joinSource: 'joinSource',
outputFilter: 'outputFilter',
},
environment: {
environmentKey: 'environment',
},
experimentConfig: {
experimentName: 'experimentName',
trialComponentDisplayName: 'trialComponentDisplayName',
trialName: 'trialName',
},
maxConcurrentTransforms: 123,
maxPayloadInMb: 123,
modelClientConfig: {
invocationsMaxRetries: 123,
invocationsTimeoutInSeconds: 123,
},
modelName: 'modelName',
tags: [{
key: 'key',
value: 'value',
}],
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',
},
}, /* all optional props */ {
strategy: mergeStrategy,
});
Initializer
new CfnTransformJobPropsMixin(props: CfnTransformJobMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Transform Job Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::SageMaker::TransformJob.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | IMerge | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
IMerge
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): void
Parameters
- construct
IConstruct
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript