interface TriggerOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.TriggerOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#TriggerOptions |
Java | software.amazon.awscdk.services.glue.TriggerOptions |
Python | aws_cdk.aws_glue.TriggerOptions |
TypeScript (source) | aws-cdk-lib » aws_glue » TriggerOptions |
Properties for configuring a Glue Trigger.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
declare const action: glue.Action;
const triggerOptions: glue.TriggerOptions = {
actions: [action],
// the properties below are optional
description: 'description',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| actions | Action[] | The actions initiated by this trigger. |
| description? | string | A description 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.
name?
Type:
string
(optional, default: no name is provided)
A name for the trigger.

.NET
Go
Java
Python
TypeScript (