TaskDefinitionDeviceArgs

data class TaskDefinitionDeviceArgs(val containerPath: Output<String>? = null, val hostPath: Output<String>? = null, val permissions: Output<List<String>>? = null) : ConvertibleToJava<TaskDefinitionDeviceArgs>

The `Device` property specifies an object representing a container instance host device.

Constructors

Link copied to clipboard
constructor(containerPath: Output<String>? = null, hostPath: Output<String>? = null, permissions: Output<List<String>>? = null)

Properties

Link copied to clipboard
val containerPath: Output<String>? = null

The path inside the container at which to expose the host device.

Link copied to clipboard
val hostPath: Output<String>? = null

The path for the device on the host container instance.

Link copied to clipboard
val permissions: Output<List<String>>? = null

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.

Functions

Link copied to clipboard
open override fun toJava(): TaskDefinitionDeviceArgs