interface SageMakerTransformJobStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.ModelEvents.SageMakerTransformJobStateChange.SageMakerTransformJobStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#ModelEvents_SageMakerTransformJobStateChange_SageMakerTransformJobStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.ModelEvents.SageMakerTransformJobStateChange.SageMakerTransformJobStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.ModelEvents.SageMakerTransformJobStateChange.SageMakerTransformJobStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป ModelEvents ยป SageMakerTransformJobStateChange ยป SageMakerTransformJobStateChangeProps |
Props type for Model aws.sagemaker@SageMakerTransformJobStateChange event.
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 sageMakerTransformJobStateChangeProps: sagemaker_events.ModelEvents.SageMakerTransformJobStateChange.SageMakerTransformJobStateChangeProps = {
creationTime: ['creationTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
modelName: ['modelName'],
tags: [{
key: ['key'],
value: ['value'],
}],
transformEndTime: ['transformEndTime'],
transformInput: {
compressionType: ['compressionType'],
contentType: ['contentType'],
dataSource: {
s3DataSource: {
s3DataType: ['s3DataType'],
s3Uri: ['s3Uri'],
},
},
splitType: ['splitType'],
},
transformJobArn: ['transformJobArn'],
transformJobName: ['transformJobName'],
transformJobStatus: ['transformJobStatus'],
transformOutput: {
assembleWith: ['assembleWith'],
s3OutputPath: ['s3OutputPath'],
},
transformResources: {
instanceCount: ['instanceCount'],
instanceType: ['instanceType'],
},
transformStartTime: ['transformStartTime'],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | CreationTime property. |
| event | AWSEvent | EventBridge event metadata. |
| model | string[] | ModelName property. |
| tags? | Tags[] | Tags property. |
| transform | string[] | TransformEndTime property. |
| transform | Transform | TransformInput property. |
| transform | string[] | TransformJobArn property. |
| transform | string[] | TransformJobName property. |
| transform | string[] | TransformJobStatus property. |
| transform | Transform | TransformOutput property. |
| transform | Transform | TransformResources property. |
| transform | string[] | TransformStartTime property. |
creationTime?
Type:
string[]
(optional, default: Do not filter on this field)
CreationTime property.
Specify an array of string values to match this event if the actual value of CreationTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
modelName?
Type:
string[]
(optional, default: Filter with the Model reference)
ModelName property.
Specify an array of string values to match this event if the actual value of ModelName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
tags?
Type:
Tags[]
(optional, default: Do not filter on this field)
Tags property.
Specify an array of string values to match this event if the actual value of Tags is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformEndTime?
Type:
string[]
(optional, default: Do not filter on this field)
TransformEndTime property.
Specify an array of string values to match this event if the actual value of TransformEndTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformInput?
Type:
Transform
(optional, default: Do not filter on this field)
TransformInput property.
Specify an array of string values to match this event if the actual value of TransformInput is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformJobArn?
Type:
string[]
(optional, default: Do not filter on this field)
TransformJobArn property.
Specify an array of string values to match this event if the actual value of TransformJobArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformJobName?
Type:
string[]
(optional, default: Do not filter on this field)
TransformJobName property.
Specify an array of string values to match this event if the actual value of TransformJobName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformJobStatus?
Type:
string[]
(optional, default: Do not filter on this field)
TransformJobStatus property.
Specify an array of string values to match this event if the actual value of TransformJobStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformOutput?
Type:
Transform
(optional, default: Do not filter on this field)
TransformOutput property.
Specify an array of string values to match this event if the actual value of TransformOutput is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformResources?
Type:
Transform
(optional, default: Do not filter on this field)
TransformResources property.
Specify an array of string values to match this event if the actual value of TransformResources is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformStartTime?
Type:
string[]
(optional, default: Do not filter on this field)
TransformStartTime property.
Specify an array of string values to match this event if the actual value of TransformStartTime 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