Struct rusoto_batch::Volume[][src]

pub struct Volume {
    pub host: Option<Host>,
    pub name: Option<String>,
}

A data volume used in a job's container properties.

Fields

The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data is not guaranteed to persist after the containers associated with it stop running.

The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

Trait Implementations

impl Default for Volume
[src]

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

impl Debug for Volume
[src]

Formats the value using the given formatter. Read more

impl Clone for Volume
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Volume

impl Sync for Volume