interface UlimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnDaemonTaskDefinitionPropsMixin.UlimitProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnDaemonTaskDefinitionPropsMixin_UlimitProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnDaemonTaskDefinitionPropsMixin.UlimitProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnDaemonTaskDefinitionPropsMixin.UlimitProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnDaemonTaskDefinitionPropsMixin » UlimitProperty |
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/cfn-property-mixins';
const ulimitProperty: ecs.CfnDaemonTaskDefinitionPropsMixin.UlimitProperty = {
hardLimit: 123,
name: 'name',
softLimit: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| hard | number | |
| name? | string | |
| soft | number |
hardLimit?
Type:
number
(optional)
name?
Type:
string
(optional)
softLimit?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript