Show / Hide Table of Contents

Class TriggerState

Inheritance
System.Object
InputArgs
ResourceArgs
TriggerState
Inherited Members
ResourceArgs.Empty
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 TriggerState : ResourceArgs

Constructors

View Source

TriggerState()

Declaration
public TriggerState()

Properties

View Source

Actions

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>
View Source

Arn

Amazon Resource Name (ARN) of Glue Trigger

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

A description of the new trigger.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

Name

The name of the trigger.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

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>
View Source

Tags

Key-value map of resource tags

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.