namespace Amazon.Lambda.CloudWatchEvents.BatchEvents { /// /// Details on a Docker volume mount point that is used in a job's container properties. /// https://docs.aws.amazon.com/batch/latest/APIReference/API_MountPoint.html /// public class MountPoint { /// /// The path on the container at which to mount the host volume. /// public string ContainerPath { get; set; } /// /// 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. /// public bool ReadOnly { get; set; } /// /// The name of the volume to mount. /// public string SourceVolume { get; set; } } }