Class TriggerActionArgs
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.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TriggerActionArgs : ResourceArgs
Constructors
View SourceTriggerActionArgs()
Declaration
public TriggerActionArgs()
Properties
View SourceArguments
Arguments to be passed to the job. You can specify arguments here that your own job-execution script consumes, as well as arguments that AWS Glue itself consumes.
Declaration
public InputMap<object> Arguments { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |
CrawlerName
The name of the crawler to be executed. Conflicts with job_name.
Declaration
public Input<string> CrawlerName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
JobName
The name of a job to be executed. Conflicts with crawler_name.
Declaration
public Input<string> JobName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Timeout
The job run timeout in minutes. It overrides the timeout value of the job.
Declaration
public Input<int> Timeout { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |