You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Glue::Types::UpdateTriggerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateTriggerRequest
- Defined in:
- (unknown)
Overview
Note:
When passing UpdateTriggerRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
name: "NameString", # required
trigger_update: { # required
name: "NameString",
description: "DescriptionString",
schedule: "GenericString",
actions: [
{
job_name: "NameString",
arguments: {
"GenericString" => "GenericString",
},
timeout: 1,
security_configuration: "NameString",
notification_property: {
notify_delay_after: 1,
},
crawler_name: "NameString",
},
],
predicate: {
logical: "AND", # accepts AND, ANY
conditions: [
{
logical_operator: "EQUALS", # accepts EQUALS
job_name: "NameString",
state: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT
crawler_name: "NameString",
crawl_state: "RUNNING", # accepts RUNNING, CANCELLING, CANCELLED, SUCCEEDED, FAILED
},
],
},
},
}
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the trigger to update.
-
#trigger_update ⇒ Types::TriggerUpdate
The new values with which to update the trigger.
Instance Attribute Details
#name ⇒ String
The name of the trigger to update.
#trigger_update ⇒ Types::TriggerUpdate
The new values with which to update the trigger.