Struct aws_sdk_ecs::types::HostVolumeProperties
source · #[non_exhaustive]pub struct HostVolumeProperties {
pub source_path: Option<String>,
}
Expand description
Details on a container instance bind mount host volume.
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.source_path: Option<String>
When the host
parameter is used, specify a sourcePath
to declare the path on the host container instance that's presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host
parameter contains a sourcePath
file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath
value doesn't exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.
If you're using the Fargate launch type, the sourcePath
parameter is not supported.
Implementations§
source§impl HostVolumeProperties
impl HostVolumeProperties
sourcepub fn source_path(&self) -> Option<&str>
pub fn source_path(&self) -> Option<&str>
When the host
parameter is used, specify a sourcePath
to declare the path on the host container instance that's presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host
parameter contains a sourcePath
file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath
value doesn't exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.
If you're using the Fargate launch type, the sourcePath
parameter is not supported.
source§impl HostVolumeProperties
impl HostVolumeProperties
sourcepub fn builder() -> HostVolumePropertiesBuilder
pub fn builder() -> HostVolumePropertiesBuilder
Creates a new builder-style object to manufacture HostVolumeProperties
.
Trait Implementations§
source§impl Clone for HostVolumeProperties
impl Clone for HostVolumeProperties
source§fn clone(&self) -> HostVolumeProperties
fn clone(&self) -> HostVolumeProperties
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HostVolumeProperties
impl Debug for HostVolumeProperties
source§impl PartialEq for HostVolumeProperties
impl PartialEq for HostVolumeProperties
source§fn eq(&self, other: &HostVolumeProperties) -> bool
fn eq(&self, other: &HostVolumeProperties) -> bool
self
and other
values to be equal, and is used
by ==
.