using System;
using System.Collections.Generic;
using System.Text;
namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// An object representing a container instance host device.
///
public class Device
{
///
/// The path inside the container that's used to expose the host device. By default, the hostPath value is used.
///
public string ContainerPath { get; set; }
///
/// The path for the device on the host container instance.
///
public string HostPath { get; set; }
///
/// The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod for the device.
///
public List Permissions { get; set; }
}
}