Struct aws_sdk_ecs::model::DockerVolumeConfiguration
source · [−]#[non_exhaustive]pub struct DockerVolumeConfiguration {
pub scope: Option<Scope>,
pub autoprovision: Option<bool>,
pub driver: Option<String>,
pub driver_opts: Option<HashMap<String, String>>,
pub labels: Option<HashMap<String, String>>,
}
Expand description
This parameter is specified when you're using Docker volumes. Docker volumes are only supported when you're using the EC2 launch type. Windows containers only support the use of the local
driver. To use bind mounts, specify a host
instead.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.scope: Option<Scope>
The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a task
are automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped as shared
persist after the task stops.
autoprovision: Option<bool>
If this value is true
, the Docker volume is created if it doesn't already exist.
This field is only used if the scope
is shared
.
driver: Option<String>
The Docker volume driver to use. The driver value must match the driver name provided by Docker because it is used for task placement. If the driver was installed using the Docker plugin CLI, use docker plugin ls
to retrieve the driver name from your container instance. If the driver was installed using another method, use Docker plugin discovery to retrieve the driver name. For more information, see Docker plugin discovery. This parameter maps to Driver
in the Create a volume section of the Docker Remote API and the xxdriver
option to docker volume create.
driver_opts: Option<HashMap<String, String>>
A map of Docker driver-specific options passed through. This parameter maps to DriverOpts
in the Create a volume section of the Docker Remote API and the xxopt
option to docker volume create.
labels: Option<HashMap<String, String>>
Custom metadata to add to your Docker volume. This parameter maps to Labels
in the Create a volume section of the Docker Remote API and the xxlabel
option to docker volume create.
Implementations
sourceimpl DockerVolumeConfiguration
impl DockerVolumeConfiguration
sourcepub fn scope(&self) -> Option<&Scope>
pub fn scope(&self) -> Option<&Scope>
The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a task
are automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped as shared
persist after the task stops.
sourcepub fn autoprovision(&self) -> Option<bool>
pub fn autoprovision(&self) -> Option<bool>
If this value is true
, the Docker volume is created if it doesn't already exist.
This field is only used if the scope
is shared
.
sourcepub fn driver(&self) -> Option<&str>
pub fn driver(&self) -> Option<&str>
The Docker volume driver to use. The driver value must match the driver name provided by Docker because it is used for task placement. If the driver was installed using the Docker plugin CLI, use docker plugin ls
to retrieve the driver name from your container instance. If the driver was installed using another method, use Docker plugin discovery to retrieve the driver name. For more information, see Docker plugin discovery. This parameter maps to Driver
in the Create a volume section of the Docker Remote API and the xxdriver
option to docker volume create.
sourcepub fn driver_opts(&self) -> Option<&HashMap<String, String>>
pub fn driver_opts(&self) -> Option<&HashMap<String, String>>
A map of Docker driver-specific options passed through. This parameter maps to DriverOpts
in the Create a volume section of the Docker Remote API and the xxopt
option to docker volume create.
sourcepub fn labels(&self) -> Option<&HashMap<String, String>>
pub fn labels(&self) -> Option<&HashMap<String, String>>
Custom metadata to add to your Docker volume. This parameter maps to Labels
in the Create a volume section of the Docker Remote API and the xxlabel
option to docker volume create.
sourceimpl DockerVolumeConfiguration
impl DockerVolumeConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DockerVolumeConfiguration
Trait Implementations
sourceimpl Clone for DockerVolumeConfiguration
impl Clone for DockerVolumeConfiguration
sourcefn clone(&self) -> DockerVolumeConfiguration
fn clone(&self) -> DockerVolumeConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DockerVolumeConfiguration
impl Debug for DockerVolumeConfiguration
sourceimpl PartialEq<DockerVolumeConfiguration> for DockerVolumeConfiguration
impl PartialEq<DockerVolumeConfiguration> for DockerVolumeConfiguration
sourcefn eq(&self, other: &DockerVolumeConfiguration) -> bool
fn eq(&self, other: &DockerVolumeConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DockerVolumeConfiguration) -> bool
fn ne(&self, other: &DockerVolumeConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for DockerVolumeConfiguration
Auto Trait Implementations
impl RefUnwindSafe for DockerVolumeConfiguration
impl Send for DockerVolumeConfiguration
impl Sync for DockerVolumeConfiguration
impl Unpin for DockerVolumeConfiguration
impl UnwindSafe for DockerVolumeConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more