| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Batch.Types.MountPoint
Description
Synopsis
Documentation
data MountPoint Source #
Details for a Docker volume mount point that's used in a job's
container properties. This parameter maps to Volumes in the
Create a container
section of the Docker Remote API and the --volume option to docker
run.
See: newMountPoint smart constructor.
Constructors
| MountPoint' | |
Fields
| |
Instances
newMountPoint :: MountPoint Source #
Create a value of MountPoint with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:containerPath:MountPoint', mountPoint_containerPath - The path on the container where the host volume is mounted.
$sel:readOnly:MountPoint', mountPoint_readOnly - If this value is true, the container has read-only access to the
volume. Otherwise, the container can write to the volume. The default
value is false.
$sel:sourceVolume:MountPoint', mountPoint_sourceVolume - The name of the volume to mount.
mountPoint_containerPath :: Lens' MountPoint (Maybe Text) Source #
The path on the container where the host volume is mounted.
mountPoint_readOnly :: Lens' MountPoint (Maybe Bool) Source #
If this value is true, the container has read-only access to the
volume. Otherwise, the container can write to the volume. The default
value is false.
mountPoint_sourceVolume :: Lens' MountPoint (Maybe Text) Source #
The name of the volume to mount.