using System.Collections.Generic;
namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// The container path, mount options, and size of the tmpfs mount.
///
public class Tmpfs
{
///
/// The absolute file path in the container where the tmpfs volume is mounted.
///
public string ContainerPath { get; set; }
///
/// The list of tmpfs volume mount options.
///
public List MountOptions { get; set; }
///
/// The size (in MiB) of the tmpfs volume.
///
public int Size { get; set; }
}
}