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

.NET
Go
Java
Python
TypeScript (