Struct aws_sdk_batch::model::EksVolume
source · #[non_exhaustive]pub struct EksVolume { /* private fields */ }
Expand description
Specifies an Amazon EKS volume for a job definition.
Implementations§
source§impl EksVolume
impl EksVolume
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the volume. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.
sourcepub fn host_path(&self) -> Option<&EksHostPath>
pub fn host_path(&self) -> Option<&EksHostPath>
Specifies the configuration of a Kubernetes hostPath
volume. For more information, see hostPath in the Kubernetes documentation.
sourcepub fn empty_dir(&self) -> Option<&EksEmptyDir>
pub fn empty_dir(&self) -> Option<&EksEmptyDir>
Specifies the configuration of a Kubernetes emptyDir
volume. For more information, see emptyDir in the Kubernetes documentation.