interface Device
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.Device |
![]() | software.amazon.awscdk.services.ecs.Device |
![]() | aws_cdk.aws_ecs.Device |
![]() | @aws-cdk/aws-ecs » Device |
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 * as ecs from '@aws-cdk/aws-ecs';
const device: ecs.Device = {
hostPath: 'hostPath',
// the properties below are optional
containerPath: 'containerPath',
permissions: [ecs.DevicePermission.READ],
};
Properties
Name | Type | Description |
---|---|---|
host | string | The path for the device on the host container instance. |
container | string | The path inside the container at which to expose the host device. |
permissions? | Device [] | The explicit permissions to provide to the container for the device. |
hostPath
Type:
string
The path for the device on the host container instance.
containerPath?
Type:
string
(optional, default: Same path as the host)
The path inside the container at which to expose the host device.
permissions?
Type:
Device
[]
(optional, default: Readonly)
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.