aws-cdk-lib.aws_batch.CfnJobDefinition.DeviceProperty

interface DeviceProperty

LanguageType name
.NETAmazon.CDK.AWS.Batch.CfnJobDefinition.DeviceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_DeviceProperty
Javasoftware.amazon.awscdk.services.batch.CfnJobDefinition.DeviceProperty
Pythonaws_cdk.aws_batch.CfnJobDefinition.DeviceProperty
TypeScript aws-cdk-lib » aws_batch » CfnJobDefinition » DeviceProperty

An object that represents a container instance host device.

This object isn't applicable to jobs that are running on Fargate resources and shouldn't be provided.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from 'aws-cdk-lib';
const deviceProperty: batch.CfnJobDefinition.DeviceProperty = {
  containerPath: 'containerPath',
  hostPath: 'hostPath',
  permissions: ['permissions'],
};

Properties

NameTypeDescription
containerPath?stringThe path inside the container that's used to expose the host device.
hostPath?stringThe path for the device on the host container instance.
permissions?string[]The explicit permissions to provide to the container for the device.

containerPath?

Type: string (optional)

The path inside the container that's used to expose the host device.

By default, the hostPath value is used.


hostPath?

Type: string (optional)

The path for the device on the host container instance.


permissions?

Type: string[] (optional)

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.