aws-cdk-lib.aws_batch.CfnJobDefinition.UlimitProperty

interface UlimitProperty

LanguageType name
.NETAmazon.CDK.AWS.Batch.CfnJobDefinition.UlimitProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_UlimitProperty
Javasoftware.amazon.awscdk.services.batch.CfnJobDefinition.UlimitProperty
Pythonaws_cdk.aws_batch.CfnJobDefinition.UlimitProperty
TypeScript aws-cdk-lib » 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 { aws_batch as batch } from 'aws-cdk-lib';
const ulimitProperty: batch.CfnJobDefinition.UlimitProperty = {
  hardLimit: 123,
  name: 'name',
  softLimit: 123,
};

Properties

NameTypeDescription
hardLimitnumberThe hard limit for the ulimit type.
namestringThe type of the ulimit .
softLimitnumberThe 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.