interface UlimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnTaskDefinition.UlimitProperty |
Java | software.amazon.awscdk.services.ecs.CfnTaskDefinition.UlimitProperty |
Python | aws_cdk.aws_ecs.CfnTaskDefinition.UlimitProperty |
TypeScript | @aws-cdk/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 1024 and the default hard limit is 4096 .
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 * as ecs from '@aws-cdk/aws-ecs';
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.
name
Type:
string
The type of the ulimit .
softLimit
Type:
number
The soft limit for the ulimit type.

.NET
Java
Python
TypeScript