Struct rusoto_batch::RegisterJobDefinitionRequest [] [src]

pub struct RegisterJobDefinitionRequest {
    pub container_properties: Option<ContainerProperties>,
    pub job_definition_name: String,
    pub parameters: Option<HashMap<String, String>>,
    pub retry_strategy: Option<RetryStrategy>,
    pub type_: String,
}

Fields

An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

The name of the job definition to register.

Default parameter substitution placeholders to 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.

The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that is specified during a SubmitJob operation overrides the retry strategy defined here.

The type of job definition.

Trait Implementations

impl Default for RegisterJobDefinitionRequest
[src]

[src]

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

impl Debug for RegisterJobDefinitionRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RegisterJobDefinitionRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations