Interface CfnTaskDefinition.DeviceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskDefinition.DeviceProperty.Jsii$Proxy
Enclosing class:
CfnTaskDefinition

@Stability(Stable) public static interface CfnTaskDefinition.DeviceProperty extends software.amazon.jsii.JsiiSerializable
The Device property specifies an object representing a container instance host device.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 DeviceProperty deviceProperty = DeviceProperty.builder()
         .containerPath("containerPath")
         .hostPath("hostPath")
         .permissions(List.of("permissions"))
         .build();
 

See Also: