We recommend new projects start with resources from the AWS provider.
aws-native.glue.Trigger
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
Resource Type definition for AWS::Glue::Trigger
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var onDemandJobTrigger = new AwsNative.Glue.Trigger("onDemandJobTrigger", new()
{
Type = "ON_DEMAND",
Description = "DESCRIPTION_ON_DEMAND",
Actions = new[]
{
new AwsNative.Glue.Inputs.TriggerActionArgs
{
JobName = "prod-job2",
},
},
Name = "prod-trigger1-ondemand",
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewTrigger(ctx, "onDemandJobTrigger", &glue.TriggerArgs{
Type: pulumi.String("ON_DEMAND"),
Description: pulumi.String("DESCRIPTION_ON_DEMAND"),
Actions: glue.TriggerActionArray{
&glue.TriggerActionArgs{
JobName: pulumi.String("prod-job2"),
},
},
Name: pulumi.String("prod-trigger1-ondemand"),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
on_demand_job_trigger = aws_native.glue.Trigger("onDemandJobTrigger",
type="ON_DEMAND",
description="DESCRIPTION_ON_DEMAND",
actions=[{
"job_name": "prod-job2",
}],
name="prod-trigger1-ondemand")
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const onDemandJobTrigger = new aws_native.glue.Trigger("onDemandJobTrigger", {
type: "ON_DEMAND",
description: "DESCRIPTION_ON_DEMAND",
actions: [{
jobName: "prod-job2",
}],
name: "prod-trigger1-ondemand",
});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var onDemandJobTrigger = new AwsNative.Glue.Trigger("onDemandJobTrigger", new()
{
Type = "ON_DEMAND",
Description = "DESCRIPTION_ON_DEMAND",
Actions = new[]
{
new AwsNative.Glue.Inputs.TriggerActionArgs
{
JobName = "prod-job2",
},
},
Name = "prod-trigger1-ondemand",
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewTrigger(ctx, "onDemandJobTrigger", &glue.TriggerArgs{
Type: pulumi.String("ON_DEMAND"),
Description: pulumi.String("DESCRIPTION_ON_DEMAND"),
Actions: glue.TriggerActionArray{
&glue.TriggerActionArgs{
JobName: pulumi.String("prod-job2"),
},
},
Name: pulumi.String("prod-trigger1-ondemand"),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
on_demand_job_trigger = aws_native.glue.Trigger("onDemandJobTrigger",
type="ON_DEMAND",
description="DESCRIPTION_ON_DEMAND",
actions=[{
"job_name": "prod-job2",
}],
name="prod-trigger1-ondemand")
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const onDemandJobTrigger = new aws_native.glue.Trigger("onDemandJobTrigger", {
type: "ON_DEMAND",
description: "DESCRIPTION_ON_DEMAND",
actions: [{
jobName: "prod-job2",
}],
name: "prod-trigger1-ondemand",
});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var scheduledJobTrigger = new AwsNative.Glue.Trigger("scheduledJobTrigger", new()
{
Type = "SCHEDULED",
Description = "DESCRIPTION_SCHEDULED",
Schedule = "cron(0 */2 * * ? *)",
Actions = new[]
{
new AwsNative.Glue.Inputs.TriggerActionArgs
{
JobName = "prod-job2",
},
new AwsNative.Glue.Inputs.TriggerActionArgs
{
JobName = "prod-job3",
Arguments = new Dictionary<string, object?>
{
["--job-bookmark-option"] = "job-bookmark-enable",
},
},
},
Name = "prod-trigger1-scheduled",
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewTrigger(ctx, "scheduledJobTrigger", &glue.TriggerArgs{
Type: pulumi.String("SCHEDULED"),
Description: pulumi.String("DESCRIPTION_SCHEDULED"),
Schedule: pulumi.String("cron(0 */2 * * ? *)"),
Actions: glue.TriggerActionArray{
&glue.TriggerActionArgs{
JobName: pulumi.String("prod-job2"),
},
&glue.TriggerActionArgs{
JobName: pulumi.String("prod-job3"),
Arguments: pulumi.Any(map[string]interface{}{
"--job-bookmark-option": "job-bookmark-enable",
}),
},
},
Name: pulumi.String("prod-trigger1-scheduled"),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
scheduled_job_trigger = aws_native.glue.Trigger("scheduledJobTrigger",
type="SCHEDULED",
description="DESCRIPTION_SCHEDULED",
schedule="cron(0 */2 * * ? *)",
actions=[
{
"job_name": "prod-job2",
},
{
"job_name": "prod-job3",
"arguments": {
"__job_bookmark_option": "job-bookmark-enable",
},
},
],
name="prod-trigger1-scheduled")
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const scheduledJobTrigger = new aws_native.glue.Trigger("scheduledJobTrigger", {
type: "SCHEDULED",
description: "DESCRIPTION_SCHEDULED",
schedule: "cron(0 */2 * * ? *)",
actions: [
{
jobName: "prod-job2",
},
{
jobName: "prod-job3",
arguments: {
"--job-bookmark-option": "job-bookmark-enable",
},
},
],
name: "prod-trigger1-scheduled",
});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var scheduledJobTrigger = new AwsNative.Glue.Trigger("scheduledJobTrigger", new()
{
Type = "SCHEDULED",
Description = "DESCRIPTION_SCHEDULED",
Schedule = "cron(0 */2 * * ? *)",
Actions = new[]
{
new AwsNative.Glue.Inputs.TriggerActionArgs
{
JobName = "prod-job2",
},
new AwsNative.Glue.Inputs.TriggerActionArgs
{
JobName = "prod-job3",
Arguments = new Dictionary<string, object?>
{
["--job-bookmark-option"] = "job-bookmark-enable",
},
},
},
Name = "prod-trigger1-scheduled",
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewTrigger(ctx, "scheduledJobTrigger", &glue.TriggerArgs{
Type: pulumi.String("SCHEDULED"),
Description: pulumi.String("DESCRIPTION_SCHEDULED"),
Schedule: pulumi.String("cron(0 */2 * * ? *)"),
Actions: glue.TriggerActionArray{
&glue.TriggerActionArgs{
JobName: pulumi.String("prod-job2"),
},
&glue.TriggerActionArgs{
JobName: pulumi.String("prod-job3"),
Arguments: pulumi.Any(map[string]interface{}{
"--job-bookmark-option": "job-bookmark-enable",
}),
},
},
Name: pulumi.String("prod-trigger1-scheduled"),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
scheduled_job_trigger = aws_native.glue.Trigger("scheduledJobTrigger",
type="SCHEDULED",
description="DESCRIPTION_SCHEDULED",
schedule="cron(0 */2 * * ? *)",
actions=[
{
"job_name": "prod-job2",
},
{
"job_name": "prod-job3",
"arguments": {
"__job_bookmark_option": "job-bookmark-enable",
},
},
],
name="prod-trigger1-scheduled")
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const scheduledJobTrigger = new aws_native.glue.Trigger("scheduledJobTrigger", {
type: "SCHEDULED",
description: "DESCRIPTION_SCHEDULED",
schedule: "cron(0 */2 * * ? *)",
actions: [
{
jobName: "prod-job2",
},
{
jobName: "prod-job3",
arguments: {
"--job-bookmark-option": "job-bookmark-enable",
},
},
],
name: "prod-trigger1-scheduled",
});
Coming soon!
Create Trigger Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Trigger(name: string, args: TriggerArgs, opts?: CustomResourceOptions);
@overload
def Trigger(resource_name: str,
args: TriggerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Trigger(resource_name: str,
opts: Optional[ResourceOptions] = None,
actions: Optional[Sequence[TriggerActionArgs]] = None,
type: Optional[str] = None,
description: Optional[str] = None,
event_batching_condition: Optional[TriggerEventBatchingConditionArgs] = None,
name: Optional[str] = None,
predicate: Optional[TriggerPredicateArgs] = None,
schedule: Optional[str] = None,
start_on_creation: Optional[bool] = None,
tags: Optional[Any] = None,
workflow_name: Optional[str] = None)
func NewTrigger(ctx *Context, name string, args TriggerArgs, opts ...ResourceOption) (*Trigger, error)
public Trigger(string name, TriggerArgs args, CustomResourceOptions? opts = null)
public Trigger(String name, TriggerArgs args)
public Trigger(String name, TriggerArgs args, CustomResourceOptions options)
type: aws-native:glue:Trigger
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Trigger Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Trigger resource accepts the following input properties:
- Actions
List<Pulumi.
Aws Native. Glue. Inputs. Trigger Action> - The actions initiated by this trigger.
- Type string
- The type of trigger that this is.
- Description string
- A description of this trigger.
- Event
Batching Pulumi.Condition Aws Native. Glue. Inputs. Trigger Event Batching Condition - Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
- Name string
- The name of the trigger.
- Predicate
Pulumi.
Aws Native. Glue. Inputs. Trigger Predicate - The predicate of this trigger, which defines when it will fire.
- Schedule string
- A cron expression used to specify the schedule.
- Start
On boolCreation - Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
- object
The tags to use with this trigger.
Search the CloudFormation User Guide for
AWS::Glue::Trigger
for more information about the expected schema for this property.- Workflow
Name string - The name of the workflow associated with the trigger.
- Actions
[]Trigger
Action Args - The actions initiated by this trigger.
- Type string
- The type of trigger that this is.
- Description string
- A description of this trigger.
- Event
Batching TriggerCondition Event Batching Condition Args - Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
- Name string
- The name of the trigger.
- Predicate
Trigger
Predicate Args - The predicate of this trigger, which defines when it will fire.
- Schedule string
- A cron expression used to specify the schedule.
- Start
On boolCreation - Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
- interface{}
The tags to use with this trigger.
Search the CloudFormation User Guide for
AWS::Glue::Trigger
for more information about the expected schema for this property.- Workflow
Name string - The name of the workflow associated with the trigger.
- actions
List<Trigger
Action> - The actions initiated by this trigger.
- type String
- The type of trigger that this is.
- description String
- A description of this trigger.
- event
Batching TriggerCondition Event Batching Condition - Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
- name String
- The name of the trigger.
- predicate
Trigger
Predicate - The predicate of this trigger, which defines when it will fire.
- schedule String
- A cron expression used to specify the schedule.
- start
On BooleanCreation - Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
- Object
The tags to use with this trigger.
Search the CloudFormation User Guide for
AWS::Glue::Trigger
for more information about the expected schema for this property.- workflow
Name String - The name of the workflow associated with the trigger.
- actions
Trigger
Action[] - The actions initiated by this trigger.
- type string
- The type of trigger that this is.
- description string
- A description of this trigger.
- event
Batching TriggerCondition Event Batching Condition - Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
- name string
- The name of the trigger.
- predicate
Trigger
Predicate - The predicate of this trigger, which defines when it will fire.
- schedule string
- A cron expression used to specify the schedule.
- start
On booleanCreation - Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
- any
The tags to use with this trigger.
Search the CloudFormation User Guide for
AWS::Glue::Trigger
for more information about the expected schema for this property.- workflow
Name string - The name of the workflow associated with the trigger.
- actions
Sequence[Trigger
Action Args] - The actions initiated by this trigger.
- type str
- The type of trigger that this is.
- description str
- A description of this trigger.
- event_
batching_ Triggercondition Event Batching Condition Args - Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
- name str
- The name of the trigger.
- predicate
Trigger
Predicate Args - The predicate of this trigger, which defines when it will fire.
- schedule str
- A cron expression used to specify the schedule.
- start_
on_ boolcreation - Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
- Any
The tags to use with this trigger.
Search the CloudFormation User Guide for
AWS::Glue::Trigger
for more information about the expected schema for this property.- workflow_
name str - The name of the workflow associated with the trigger.
- actions List<Property Map>
- The actions initiated by this trigger.
- type String
- The type of trigger that this is.
- description String
- A description of this trigger.
- event
Batching Property MapCondition - Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
- name String
- The name of the trigger.
- predicate Property Map
- The predicate of this trigger, which defines when it will fire.
- schedule String
- A cron expression used to specify the schedule.
- start
On BooleanCreation - Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
- Any
The tags to use with this trigger.
Search the CloudFormation User Guide for
AWS::Glue::Trigger
for more information about the expected schema for this property.- workflow
Name String - The name of the workflow associated with the trigger.
Outputs
All input properties are implicitly available as output properties. Additionally, the Trigger resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
TriggerAction, TriggerActionArgs
- Arguments object
- The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
- Crawler
Name string - The name of the crawler to be used with this action.
- Job
Name string - The name of a job to be executed.
- Notification
Property Pulumi.Aws Native. Glue. Inputs. Trigger Notification Property - Specifies configuration properties of a job run notification.
- Security
Configuration string - The name of the SecurityConfiguration structure to be used with this action.
- Timeout int
- The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
- Arguments interface{}
- The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
- Crawler
Name string - The name of the crawler to be used with this action.
- Job
Name string - The name of a job to be executed.
- Notification
Property TriggerNotification Property - Specifies configuration properties of a job run notification.
- Security
Configuration string - The name of the SecurityConfiguration structure to be used with this action.
- Timeout int
- The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
- arguments Object
- The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
- crawler
Name String - The name of the crawler to be used with this action.
- job
Name String - The name of a job to be executed.
- notification
Property TriggerNotification Property - Specifies configuration properties of a job run notification.
- security
Configuration String - The name of the SecurityConfiguration structure to be used with this action.
- timeout Integer
- The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
- arguments any
- The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
- crawler
Name string - The name of the crawler to be used with this action.
- job
Name string - The name of a job to be executed.
- notification
Property TriggerNotification Property - Specifies configuration properties of a job run notification.
- security
Configuration string - The name of the SecurityConfiguration structure to be used with this action.
- timeout number
- The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
- arguments Any
- The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
- crawler_
name str - The name of the crawler to be used with this action.
- job_
name str - The name of a job to be executed.
- notification_
property TriggerNotification Property - Specifies configuration properties of a job run notification.
- security_
configuration str - The name of the SecurityConfiguration structure to be used with this action.
- timeout int
- The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
- arguments Any
- The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
- crawler
Name String - The name of the crawler to be used with this action.
- job
Name String - The name of a job to be executed.
- notification
Property Property Map - Specifies configuration properties of a job run notification.
- security
Configuration String - The name of the SecurityConfiguration structure to be used with this action.
- timeout Number
- The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
TriggerCondition, TriggerConditionArgs
- Crawl
State string - The state of the crawler to which this condition applies.
- Crawler
Name string - The name of the crawler to which this condition applies.
- Job
Name string - The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
- Logical
Operator string - A logical operator.
- State string
- The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
- Crawl
State string - The state of the crawler to which this condition applies.
- Crawler
Name string - The name of the crawler to which this condition applies.
- Job
Name string - The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
- Logical
Operator string - A logical operator.
- State string
- The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
- crawl
State String - The state of the crawler to which this condition applies.
- crawler
Name String - The name of the crawler to which this condition applies.
- job
Name String - The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
- logical
Operator String - A logical operator.
- state String
- The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
- crawl
State string - The state of the crawler to which this condition applies.
- crawler
Name string - The name of the crawler to which this condition applies.
- job
Name string - The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
- logical
Operator string - A logical operator.
- state string
- The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
- crawl_
state str - The state of the crawler to which this condition applies.
- crawler_
name str - The name of the crawler to which this condition applies.
- job_
name str - The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
- logical_
operator str - A logical operator.
- state str
- The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
- crawl
State String - The state of the crawler to which this condition applies.
- crawler
Name String - The name of the crawler to which this condition applies.
- job
Name String - The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
- logical
Operator String - A logical operator.
- state String
- The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
TriggerEventBatchingCondition, TriggerEventBatchingConditionArgs
- Batch
Size int - Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- Batch
Window int - Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
- Batch
Size int - Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- Batch
Window int - Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
- batch
Size Integer - Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- batch
Window Integer - Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
- batch
Size number - Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- batch
Window number - Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
- batch_
size int - Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- batch_
window int - Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
- batch
Size Number - Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- batch
Window Number - Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
TriggerNotificationProperty, TriggerNotificationPropertyArgs
- Notify
Delay intAfter - After a job run starts, the number of minutes to wait before sending a job run delay notification
- Notify
Delay intAfter - After a job run starts, the number of minutes to wait before sending a job run delay notification
- notify
Delay IntegerAfter - After a job run starts, the number of minutes to wait before sending a job run delay notification
- notify
Delay numberAfter - After a job run starts, the number of minutes to wait before sending a job run delay notification
- notify_
delay_ intafter - After a job run starts, the number of minutes to wait before sending a job run delay notification
- notify
Delay NumberAfter - After a job run starts, the number of minutes to wait before sending a job run delay notification
TriggerPredicate, TriggerPredicateArgs
- Conditions
List<Pulumi.
Aws Native. Glue. Inputs. Trigger Condition> - A list of the conditions that determine when the trigger will fire.
- Logical string
- An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
- Conditions
[]Trigger
Condition - A list of the conditions that determine when the trigger will fire.
- Logical string
- An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
- conditions
List<Trigger
Condition> - A list of the conditions that determine when the trigger will fire.
- logical String
- An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
- conditions
Trigger
Condition[] - A list of the conditions that determine when the trigger will fire.
- logical string
- An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
- conditions
Sequence[Trigger
Condition] - A list of the conditions that determine when the trigger will fire.
- logical str
- An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
- conditions List<Property Map>
- A list of the conditions that determine when the trigger will fire.
- logical String
- An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.