interface StartableTriggerOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.StartableTriggerOptions |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#StartableTriggerOptions |
Java | software.amazon.awscdk.services.glue.alpha.StartableTriggerOptions |
Python | aws_cdk.aws_glue_alpha.StartableTriggerOptions |
TypeScript (source) | @aws-cdk/aws-glue-alpha ยป StartableTriggerOptions |
Implements
Trigger
Base options for triggers that can be started when they are created.
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 startableTriggerOptions: glue_alpha.StartableTriggerOptions = {
actions: [action],
// the properties below are optional
description: 'description',
name: 'name',
startOnCreation: false,
};
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. |
| start | boolean | Whether to start the trigger on creation or not. |
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.
startOnCreation?
Type:
boolean
(optional, default: false)
Whether to start the trigger on creation or not.

.NET
Go
Java
Python
TypeScript (