Struct rusoto_events::BatchArrayProperties[][src]

pub struct BatchArrayProperties {
    pub size: Option<i64>,
}

The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an AWS Batch job.

Fields

The size of the array, if this is an array batch job. Valid values are integers between 2 and 10,000.

Trait Implementations

impl Default for BatchArrayProperties
[src]

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

impl Debug for BatchArrayProperties
[src]

Formats the value using the given formatter. Read more

impl Clone for BatchArrayProperties
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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