interface UlimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnTaskDefinition.UlimitProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnTaskDefinition_UlimitProperty |
Java | software.amazon.awscdk.services.ecs.CfnTaskDefinition.UlimitProperty |
Python | aws_cdk.aws_ecs.CfnTaskDefinition.UlimitProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnTaskDefinition » UlimitProperty |
The ulimit settings to pass to the container.
Amazon ECS tasks hosted on AWS Fargate use the default resource limit values set by the operating system with the exception of the nofile resource limit parameter which AWS Fargate overrides. The nofile resource limit sets a restriction on the number of open files that a container can use. The default nofile soft limit is 65535 and the default hard limit is 65535 .
You can specify the ulimit settings for a container in a task definition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const ulimitProperty: ecs.CfnTaskDefinition.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.
The value can be specified in bytes, seconds, or as a count, depending on the type of the ulimit .
name
Type:
string
The type of the ulimit .
softLimit
Type:
number
The soft limit for the ulimit type.
The value can be specified in bytes, seconds, or as a count, depending on the type of the ulimit .

.NET
Go
Java
Python
TypeScript