Class: Aws::Glue::Types::Action
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Action
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines an action to be initiated by a trigger.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arguments ⇒ Hash<String,String>
The job arguments used when this trigger fires.
-
#crawler_name ⇒ String
The name of the crawler to be used with this action.
-
#job_name ⇒ String
The name of a job to be run.
-
#notification_property ⇒ Types::NotificationProperty
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.
Instance Attribute Details
#arguments ⇒ Hash<String,String>
The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.
For information about how to specify and consume your own Job arguments, see the [Calling Glue APIs in Python] topic in the developer guide.
For information about the key-value pairs that Glue consumes to set up your job, see the [Special Parameters Used by Glue] topic in the developer guide.
[1]: docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html [2]: docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/aws-sdk-glue/types.rb', line 76 class Action < Struct.new( :job_name, :arguments, :timeout, :security_configuration, :notification_property, :crawler_name) SENSITIVE = [] include Aws::Structure end |
#crawler_name ⇒ String
The name of the crawler to be used with this action.
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/aws-sdk-glue/types.rb', line 76 class Action < Struct.new( :job_name, :arguments, :timeout, :security_configuration, :notification_property, :crawler_name) SENSITIVE = [] include Aws::Structure end |
#job_name ⇒ String
The name of a job to be run.
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/aws-sdk-glue/types.rb', line 76 class Action < Struct.new( :job_name, :arguments, :timeout, :security_configuration, :notification_property, :crawler_name) SENSITIVE = [] include Aws::Structure end |
#notification_property ⇒ Types::NotificationProperty
Specifies configuration properties of a job run notification.
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/aws-sdk-glue/types.rb', line 76 class Action < Struct.new( :job_name, :arguments, :timeout, :security_configuration, :notification_property, :crawler_name) SENSITIVE = [] include Aws::Structure end |
#security_configuration ⇒ String
The name of the ‘SecurityConfiguration` structure to be used with this action.
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/aws-sdk-glue/types.rb', line 76 class Action < Struct.new( :job_name, :arguments, :timeout, :security_configuration, :notification_property, :crawler_name) SENSITIVE = [] include Aws::Structure end |
#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.
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/aws-sdk-glue/types.rb', line 76 class Action < Struct.new( :job_name, :arguments, :timeout, :security_configuration, :notification_property, :crawler_name) SENSITIVE = [] include Aws::Structure end |