interface GlueJobStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Events.JobEvents.GlueJobStateChange.GlueJobStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/events#JobEvents_GlueJobStateChange_GlueJobStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.events.JobEvents.GlueJobStateChange.GlueJobStateChangeProps |
Python | aws_cdk.mixins_preview.aws_glue.events.JobEvents.GlueJobStateChange.GlueJobStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_glue ยป events ยป JobEvents ยป GlueJobStateChange ยป GlueJobStateChangeProps |
Props type for Job aws.glue@GlueJobStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as glue_events } from '@aws-cdk/mixins-preview/aws-glue';
const glueJobStateChangeProps: glue_events.JobEvents.GlueJobStateChange.GlueJobStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
jobName: ['jobName'],
jobRunId: ['jobRunId'],
message: ['message'],
severity: ['severity'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| job | string[] | jobName property. |
| job | string[] | jobRunId property. |
| message? | string[] | message property. |
| severity? | string[] | severity property. |
| state? | string[] | state property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
jobName?
Type:
string[]
(optional, default: Filter with the Job reference)
jobName property.
Specify an array of string values to match this event if the actual value of jobName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
jobRunId?
Type:
string[]
(optional, default: Do not filter on this field)
jobRunId property.
Specify an array of string values to match this event if the actual value of jobRunId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
message?
Type:
string[]
(optional, default: Do not filter on this field)
message property.
Specify an array of string values to match this event if the actual value of message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
severity?
Type:
string[]
(optional, default: Do not filter on this field)
severity property.
Specify an array of string values to match this event if the actual value of severity 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.

.NET
Go
Java
Python
TypeScript