Show / Hide Table of Contents

Class Device

A container instance host device.

Inheritance
System.Object
Device
Implements
IDevice
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public class Device : Object, IDevice
Syntax (vb)
Public Class Device
    Inherits Object
    Implements IDevice
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;

var device = new Device {
    HostPath = "hostPath",

    // the properties below are optional
    ContainerPath = "containerPath",
    Permissions = new [] { DevicePermission.READ }
};

Synopsis

Constructors

Device()

Properties

ContainerPath

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

HostPath

The path for the device on the host container instance.

Permissions

The explicit permissions to provide to the container for the device.

Constructors

Device()

public Device()

Properties

ContainerPath

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

public string ContainerPath { get; set; }
Property Value

System.String

Remarks

Default: Same path as the host

HostPath

The path for the device on the host container instance.

public string HostPath { get; set; }
Property Value

System.String

Permissions

The explicit permissions to provide to the container for the device.

public DevicePermission[] Permissions { get; set; }
Property Value

DevicePermission[]

Remarks

By default, the container has permissions for read, write, and mknod for the device.

Default: Readonly

Implements

IDevice
Back to top Generated by DocFX