Struct rusoto_glue::Action[][src]

pub struct Action {
    pub arguments: Option<HashMap<String, String>>,
    pub job_name: Option<String>,
}

Defines an action to be initiated by a trigger.

Fields

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.

For information about how to specify and consume your own Job arguments, see the Calling AWS Glue APIs in Python topic in the developer guide.

For information about the key-value pairs that AWS Glue consumes to set up your job, see the Special Parameters Used by AWS Glue topic in the developer guide.

The name of a job to be executed.

Trait Implementations

impl Default for Action
[src]

Returns the "default value" for a type. Read more

impl Debug for Action
[src]

Formats the value using the given formatter. Read more

impl Clone for Action
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Action
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Action

impl Sync for Action