interface TransformInput
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.ModelEvents.SageMakerTransformJobStateChange.TransformInput |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#ModelEvents_SageMakerTransformJobStateChange_TransformInput |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.ModelEvents.SageMakerTransformJobStateChange.TransformInput |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.ModelEvents.SageMakerTransformJobStateChange.TransformInput |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป ModelEvents ยป SageMakerTransformJobStateChange ยป TransformInput |
Type definition for TransformInput.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as sagemaker_events } from '@aws-cdk/mixins-preview/aws-sagemaker';
const transformInput: sagemaker_events.ModelEvents.SageMakerTransformJobStateChange.TransformInput = {
compressionType: ['compressionType'],
contentType: ['contentType'],
dataSource: {
s3DataSource: {
s3DataType: ['s3DataType'],
s3Uri: ['s3Uri'],
},
},
splitType: ['splitType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| compression | string[] | CompressionType property. |
| content | string[] | ContentType property. |
| data | Data | DataSource property. |
| split | string[] | SplitType property. |
compressionType?
Type:
string[]
(optional, default: Do not filter on this field)
CompressionType property.
Specify an array of string values to match this event if the actual value of CompressionType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
contentType?
Type:
string[]
(optional, default: Do not filter on this field)
ContentType property.
Specify an array of string values to match this event if the actual value of ContentType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
dataSource?
Type:
Data
(optional, default: Do not filter on this field)
DataSource property.
Specify an array of string values to match this event if the actual value of DataSource is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
splitType?
Type:
string[]
(optional, default: Do not filter on this field)
SplitType property.
Specify an array of string values to match this event if the actual value of SplitType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript