interface TmpfsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnDaemonTaskDefinition.TmpfsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnDaemonTaskDefinition_TmpfsProperty |
Java | software.amazon.awscdk.services.ecs.CfnDaemonTaskDefinition.TmpfsProperty |
Python | aws_cdk.aws_ecs.CfnDaemonTaskDefinition.TmpfsProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnDaemonTaskDefinition » TmpfsProperty |
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 tmpfsProperty: ecs.CfnDaemonTaskDefinition.TmpfsProperty = {
size: 123,
// the properties below are optional
containerPath: 'containerPath',
mountOptions: ['mountOptions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| size | number | |
| container | string | |
| mount | string[] |
size
Type:
number
containerPath?
Type:
string
(optional)
mountOptions?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript