Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data MountPoint Source #
Details on 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.
MountPoint' | |
|
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:sourceVolume:MountPoint'
, mountPoint_sourceVolume
- The name of the volume to mount.
$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
.
mountPoint_containerPath :: Lens' MountPoint (Maybe Text) Source #
The path on the container where the host volume is mounted.
mountPoint_sourceVolume :: Lens' MountPoint (Maybe Text) Source #
The name of the volume to mount.
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
.