interface EventTriggerOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.EventTriggerOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#EventTriggerOptions |
Java | software.amazon.awscdk.services.glue.EventTriggerOptions |
Python | aws_cdk.aws_glue.EventTriggerOptions |
TypeScript (source) | aws-cdk-lib » aws_glue » EventTriggerOptions |
Implements
Trigger
Properties for configuring an Event Bridge based Glue Trigger.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_glue as glue } from 'aws-cdk-lib';
declare const action: glue.Action;
const eventTriggerOptions: glue.EventTriggerOptions = {
actions: [action],
// the properties below are optional
description: 'description',
eventBatchingCondition: {
batchSize: 123,
// the properties below are optional
batchWindow: cdk.Duration.minutes(30),
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| actions | Action[] | The actions initiated by this trigger. |
| description? | string | A description for the trigger. |
| event | Event | Batch condition for the trigger. |
| name? | string | A name for the trigger. |
actions
Type:
Action[]
The actions initiated by this trigger.
description?
Type:
string
(optional, default: no description)
A description for the trigger.
eventBatchingCondition?
Type:
Event
(optional, default: no batch condition)
Batch condition for the trigger.
name?
Type:
string
(optional, default: no name is provided)
A name for the trigger.

.NET
Go
Java
Python
TypeScript (