Interface CfnJobDefinition.IDeviceProperty
An object that represents a container instance host device.
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDeviceProperty
Syntax (vb)
Public Interface IDeviceProperty
Remarks
This object isn't applicable to jobs that are running on Fargate resources and shouldn't be provided.
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.Batch;
var deviceProperty = new DeviceProperty {
ContainerPath = "containerPath",
HostPath = "hostPath",
Permissions = new [] { "permissions" }
};
Synopsis
Properties
Container |
The path inside the container that's used to expose the host device. |
Host |
The path for the device on the host container instance. |
Permissions | The explicit permissions to provide to the container for the device. |
Properties
ContainerPath
The path inside the container that's used to expose the host device.
virtual string ContainerPath { get; }
Property Value
System.
Remarks
By default, the hostPath
value is used.
HostPath
The path for the device on the host container instance.
virtual string HostPath { get; }
Property Value
System.
Remarks
Permissions
The explicit permissions to provide to the container for the device.
virtual string[] Permissions { get; }
Property Value
System.
Remarks
By default, the container has permissions for read
, write
, and mknod
for the device.