Struct rusoto_batch::ArrayPropertiesDetail [] [src]

pub struct ArrayPropertiesDetail {
    pub index: Option<i64>,
    pub size: Option<i64>,
    pub status_summary: Option<HashMap<String, i64>>,
}

An object representing the array properties of a job.

Fields

The job index within the array that is associated with this job. This parameter is returned for array job children.

The size of the array job. This parameter is returned for parent array jobs.

A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

Trait Implementations

impl Default for ArrayPropertiesDetail
[src]

[src]

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

impl Debug for ArrayPropertiesDetail
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ArrayPropertiesDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations