interface EventTriggerOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.EventTriggerOptions |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#EventTriggerOptions |
Java | software.amazon.awscdk.services.glue.alpha.EventTriggerOptions |
Python | aws_cdk.aws_glue_alpha.EventTriggerOptions |
TypeScript (source) | @aws-cdk/aws-glue-alpha » EventTriggerOptions |
⚠️ Deprecated: undefined
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 glue_alpha from '@aws-cdk/aws-glue-alpha';
import * as cdk from 'aws-cdk-lib';
declare const action: glue_alpha.Action;
const eventTriggerOptions: glue_alpha.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
⚠️ Deprecated: undefined
Type:
Action[]
The actions initiated by this trigger.
description?
⚠️ Deprecated: undefined
Type:
string
(optional, default: no description)
A description for the trigger.
eventBatchingCondition?
⚠️ Deprecated: undefined
Type:
Event
(optional, default: no batch condition)
Batch condition for the trigger.
name?
⚠️ Deprecated: undefined
Type:
string
(optional, default: no name is provided)
A name for the trigger.

.NET
Go
Java
Python
TypeScript (