Struct aws_sdk_batch::model::JobDefinition
source · #[non_exhaustive]pub struct JobDefinition { /* private fields */ }
Expand description
An object representing an Batch job definition.
Implementations§
source§impl JobDefinition
impl JobDefinition
sourcepub fn job_definition_name(&self) -> Option<&str>
pub fn job_definition_name(&self) -> Option<&str>
The name of the job definition.
sourcepub fn job_definition_arn(&self) -> Option<&str>
pub fn job_definition_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the job definition.
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of job definition, either container
or multinode
. If the job is run on Fargate resources, then multinode
isn't supported. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the Batch User Guide.
sourcepub fn scheduling_priority(&self) -> Option<i32>
pub fn scheduling_priority(&self) -> Option<i32>
The scheduling priority of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.
sourcepub fn parameters(&self) -> Option<&HashMap<String, String>>
pub fn parameters(&self) -> Option<&HashMap<String, String>>
Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob
request override any corresponding parameter defaults from the job definition. For more information about specifying parameters, see Job definition parameters in the Batch User Guide.
sourcepub fn retry_strategy(&self) -> Option<&RetryStrategy>
pub fn retry_strategy(&self) -> Option<&RetryStrategy>
The retry strategy to use for failed jobs that are submitted with this job definition.
sourcepub fn container_properties(&self) -> Option<&ContainerProperties>
pub fn container_properties(&self) -> Option<&ContainerProperties>
An object with various properties specific to container-based jobs.
sourcepub fn timeout(&self) -> Option<&JobTimeout>
pub fn timeout(&self) -> Option<&JobTimeout>
The timeout configuration for jobs that are submitted with this job definition. You can specify a timeout duration after which Batch terminates your jobs if they haven't finished.
sourcepub fn node_properties(&self) -> Option<&NodeProperties>
pub fn node_properties(&self) -> Option<&NodeProperties>
An object with various properties specific to multi-node parallel jobs.
If the job runs on Fargate resources, then you must not specify nodeProperties
; use containerProperties
instead.
The tags applied to the job definition.
Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED
state.
sourcepub fn platform_capabilities(&self) -> Option<&[PlatformCapability]>
pub fn platform_capabilities(&self) -> Option<&[PlatformCapability]>
The platform capabilities required by the job definition. If no value is specified, it defaults to EC2
. Jobs run on Fargate resources specify FARGATE
.
source§impl JobDefinition
impl JobDefinition
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JobDefinition
.
Trait Implementations§
source§impl Clone for JobDefinition
impl Clone for JobDefinition
source§fn clone(&self) -> JobDefinition
fn clone(&self) -> JobDefinition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more