Struct rusoto_ecs::MountPoint [] [src]

pub struct MountPoint {
    pub container_path: Option<String>,
    pub read_only: Option<BoxedBoolean>,
    pub source_volume: Option<String>,
}

Details on a volume mount point that is used in a container definition.

Fields

The path on the container to mount the host volume at.

If this value is true, the container has read-only access to the volume. If this value is false, then the container can write to the volume. The default value is false.

The name of the volume to mount.

Trait Implementations

impl Default for MountPoint
[src]

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

impl Debug for MountPoint
[src]

Formats the value using the given formatter.

impl Clone for MountPoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more