interface SageMakerGroundTruthLabelingJobTaskStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerGroundTruthLabelingJobTaskStatusChange.SageMakerGroundTruthLabelingJobTaskStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerGroundTruthLabelingJobTaskStatusChange_SageMakerGroundTruthLabelingJobTaskStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerGroundTruthLabelingJobTaskStatusChange.SageMakerGroundTruthLabelingJobTaskStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerGroundTruthLabelingJobTaskStatusChange.SageMakerGroundTruthLabelingJobTaskStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerGroundTruthLabelingJobTaskStatusChange ยป SageMakerGroundTruthLabelingJobTaskStatusChangeProps |
Props type for aws.sagemaker@SageMakerGroundTruthLabelingJobTaskStatusChange 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 sageMakerGroundTruthLabelingJobTaskStatusChangeProps: sagemaker_events.SageMakerGroundTruthLabelingJobTaskStatusChange.SageMakerGroundTruthLabelingJobTaskStatusChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
labelingJobArn: ['labelingJobArn'],
state: ['state'],
workteamTeamArn: ['workteamTeamArn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| labeling | string[] | labeling-job-arn property. |
| state? | string[] | State property. |
| workteam | string[] | workteam-team-arn property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
labelingJobArn?
Type:
string[]
(optional, default: Do not filter on this field)
labeling-job-arn property.
Specify an array of string values to match this event if the actual value of labeling-job-arn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
State property.
Specify an array of string values to match this event if the actual value of State is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
workteamTeamArn?
Type:
string[]
(optional, default: Do not filter on this field)
workteam-team-arn property.
Specify an array of string values to match this event if the actual value of workteam-team-arn 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