interface VolumesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.VolumesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_VolumesProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.VolumesProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.VolumesProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnJobDefinition » VolumesProperty |
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 volumesProperty: batch.CfnJobDefinition.VolumesProperty = {
efsVolumeConfiguration: {
fileSystemId: 'fileSystemId',
// the properties below are optional
authorizationConfig: {
accessPointId: 'accessPointId',
iam: 'iam',
},
rootDirectory: 'rootDirectory',
transitEncryption: 'transitEncryption',
transitEncryptionPort: 123,
},
host: {
sourcePath: 'sourcePath',
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| efs | IResolvable | Efs | |
| host? | IResolvable | Volumes | |
| name? | string |
efsVolumeConfiguration?
Type:
IResolvable | Efs
(optional)
host?
Type:
IResolvable | Volumes
(optional)
name?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript