interface UlimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.UlimitProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_UlimitProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.UlimitProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.UlimitProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnJobDefinition » UlimitProperty |
The ulimit settings to pass to the container. For more information, see Ulimit .
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 { aws_batch as batch } from 'aws-cdk-lib';
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 .
Valid values are: core | cpu | data | fsize | locks | memlock | msgqueue | nice | nofile | nproc | rss | rtprio | rttime | sigpending | stack .
softLimit
Type:
number
The soft limit for the ulimit type.

.NET
Go
Java
Python
TypeScript