interface UlimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Mixins.CfnJobDefinitionPropsMixin.UlimitProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/mixins#CfnJobDefinitionPropsMixin_UlimitProperty |
Java | software.amazon.awscdk.mixins.preview.services.batch.mixins.CfnJobDefinitionPropsMixin.UlimitProperty |
Python | aws_cdk.mixins_preview.aws_batch.mixins.CfnJobDefinitionPropsMixin.UlimitProperty |
TypeScript | @aws-cdk/mixins-preview » aws_batch » mixins » CfnJobDefinitionPropsMixin » 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 { mixins as batch_mixins } from '@aws-cdk/mixins-preview/aws-batch';
const ulimitProperty: batch_mixins.CfnJobDefinitionPropsMixin.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
(optional)
The hard limit for the ulimit type.
name?
Type:
string
(optional)
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
(optional)
The soft limit for the ulimit type.

.NET
Go
Java
Python
TypeScript