interface TmpfsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnDaemonTaskDefinitionPropsMixin.TmpfsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnDaemonTaskDefinitionPropsMixin_TmpfsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnDaemonTaskDefinitionPropsMixin.TmpfsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnDaemonTaskDefinitionPropsMixin.TmpfsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnDaemonTaskDefinitionPropsMixin » 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/cfn-property-mixins';
const tmpfsProperty: ecs.CfnDaemonTaskDefinitionPropsMixin.TmpfsProperty = {
containerPath: 'containerPath',
mountOptions: ['mountOptions'],
size: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | |
| mount | string[] | |
| size? | number |
containerPath?
Type:
string
(optional)
mountOptions?
Type:
string[]
(optional)
size?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript