[][src]Struct rusoto_ecs::MountPoint

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

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

Fields

container_path: Option<String>

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

read_only: Option<bool>

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.

source_volume: Option<String>

The name of the volume to mount. Must be a volume name referenced in the name parameter of task definition volume.

Trait Implementations

impl PartialEq<MountPoint> for MountPoint[src]

impl Default for MountPoint[src]

impl Clone for MountPoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MountPoint[src]

impl<'de> Deserialize<'de> for MountPoint[src]

impl Serialize for MountPoint[src]

Auto Trait Implementations

impl Send for MountPoint

impl Sync for MountPoint

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self