interface EmptyDirProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.EmptyDirProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.EmptyDirProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.EmptyDirProperty |
TypeScript | @aws-cdk/aws-batch » CfnJobDefinition » EmptyDirProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as batch from '@aws-cdk/aws-batch';
const emptyDirProperty: batch.CfnJobDefinition.EmptyDirProperty = {
medium: 'medium',
sizeLimit: 'sizeLimit',
};
Properties
| Name | Type | Description |
|---|---|---|
| medium? | string | CfnJobDefinition.EmptyDirProperty.Medium. |
| size | string | CfnJobDefinition.EmptyDirProperty.SizeLimit. |
medium?
Type:
string
(optional)
CfnJobDefinition.EmptyDirProperty.Medium.
sizeLimit?
Type:
string
(optional)
CfnJobDefinition.EmptyDirProperty.SizeLimit.

.NET
Java
Python
TypeScript