Class TriggerArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Glue
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TriggerArgs : ResourceArgs
Constructors
View SourceTriggerArgs()
Declaration
public TriggerArgs()
Properties
View SourceActions
List of actions initiated by this trigger when it fires. Defined below.
Declaration
public InputList<TriggerActionArgs> Actions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<TriggerActionArgs> |
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<TriggerPredicateArgs> Predicate { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<TriggerPredicateArgs> |
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> |