Struct rusoto_glue::ExecutionProperty[][src]

pub struct ExecutionProperty {
    pub max_concurrent_runs: Option<i64>,
}

An execution property of a job.

Fields

The maximum number of concurrent runs allowed for a job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

Trait Implementations

impl Default for ExecutionProperty
[src]

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

impl Debug for ExecutionProperty
[src]

Formats the value using the given formatter. Read more

impl Clone for ExecutionProperty
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ExecutionProperty
[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