Class: Aws::Glue::Types::UpdateTriggerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateTriggerRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass UpdateTriggerRequest data as a 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
},
],
},
},
}
Constant Summary collapse
- SENSITIVE =
[]
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.
16735 16736 16737 16738 16739 16740 |
# File 'lib/aws-sdk-glue/types.rb', line 16735 class UpdateTriggerRequest < Struct.new( :name, :trigger_update) SENSITIVE = [] include Aws::Structure end |
#trigger_update ⇒ Types::TriggerUpdate
The new values with which to update the trigger.
16735 16736 16737 16738 16739 16740 |
# File 'lib/aws-sdk-glue/types.rb', line 16735 class UpdateTriggerRequest < Struct.new( :name, :trigger_update) SENSITIVE = [] include Aws::Structure end |