interface UlimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.UlimitProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.UlimitProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.UlimitProperty |
TypeScript | @aws-cdk/aws-batch » CfnJobDefinition » UlimitProperty |
The ulimit settings to pass to the container.
This object isn't applicable to jobs that are running on Fargate resources.
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 ulimitProperty: batch.CfnJobDefinition.UlimitProperty = {
hardLimit: 123,
name: 'name',
softLimit: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| hard | number | The hard limit for the ulimit type. |
| name | string | The type of the ulimit . |
| soft | number | The soft limit for the ulimit type. |
hardLimit
Type:
number
The hard limit for the ulimit type.
name
Type:
string
The type of the ulimit .
softLimit
Type:
number
The soft limit for the ulimit type.

.NET
Java
Python
TypeScript