Class TriggerState
Inherited Members
Namespace: Pulumi.Aws.Glue
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TriggerState : ResourceArgs
Constructors
View SourceTriggerState()
Declaration
public TriggerState()
Properties
View SourceActions
List of actions initiated by this trigger when it fires. Defined below.
Declaration
public InputList<TriggerActionGetArgs> Actions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<TriggerActionGetArgs> |
Arn
Amazon Resource Name (ARN) of Glue Trigger
Declaration
public Input<string> Arn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Description
A description of the new trigger.
Declaration
public Input<string> Description { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Enabled
Start the trigger. Defaults to true. Not valid to disable for ON_DEMAND type.
Declaration
public Input<bool> Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Name
The name of the trigger.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Predicate
A predicate to specify when the new trigger should fire. Required when trigger type is CONDITIONAL. Defined below.
Declaration
public Input<TriggerPredicateGetArgs> Predicate { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<TriggerPredicateGetArgs> |
Schedule
A cron expression used to specify the schedule. Time-Based Schedules for Jobs and Crawlers
Declaration
public Input<string> Schedule { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Tags
Key-value map of resource tags
Declaration
public InputMap<object> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |
Type
The type of trigger. Valid values are CONDITIONAL, ON_DEMAND, and SCHEDULED.
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
WorkflowName
A workflow to which the trigger should be associated to. Every workflow graph (DAG) needs a starting trigger (ON_DEMAND or SCHEDULED type) and can contain multiple additional CONDITIONAL triggers.
Declaration
public Input<string> WorkflowName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |