interface VolumesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnJobDefinitionPropsMixin.VolumesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnJobDefinitionPropsMixin_VolumesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnJobDefinitionPropsMixin.VolumesProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnJobDefinitionPropsMixin.VolumesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnJobDefinitionPropsMixin » 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/cfn-property-mixins';
const volumesProperty: batch.CfnJobDefinitionPropsMixin.VolumesProperty = {
efsVolumeConfiguration: {
authorizationConfig: {
accessPointId: 'accessPointId',
iam: 'iam',
},
fileSystemId: 'fileSystemId',
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