Struct aws_sdk_glue::model::JobCommand
source · #[non_exhaustive]pub struct JobCommand { /* private fields */ }Expand description
Specifies code that runs when a job is run.
Implementations§
source§impl JobCommand
impl JobCommand
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.
sourcepub fn script_location(&self) -> Option<&str>
pub fn script_location(&self) -> Option<&str>
Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.
sourcepub fn python_version(&self) -> Option<&str>
pub fn python_version(&self) -> Option<&str>
The Python version being used to run a Python shell job. Allowed values are 2 or 3.
source§impl JobCommand
impl JobCommand
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JobCommand.
Trait Implementations§
source§impl Clone for JobCommand
impl Clone for JobCommand
source§fn clone(&self) -> JobCommand
fn clone(&self) -> JobCommand
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for JobCommand
impl Debug for JobCommand
source§impl PartialEq<JobCommand> for JobCommand
impl PartialEq<JobCommand> for JobCommand
source§fn eq(&self, other: &JobCommand) -> bool
fn eq(&self, other: &JobCommand) -> bool
This method tests for
self and other values to be equal, and is used
by ==.