Interface CfnTaskDefinitionPropsMixin.TmpfsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskDefinitionPropsMixin.TmpfsProperty.Jsii$Proxy
Enclosing class:
CfnTaskDefinitionPropsMixin

@Stability(Stable) public static interface CfnTaskDefinitionPropsMixin.TmpfsProperty extends software.amazon.jsii.JsiiSerializable
The container path, mount options, and size of the tmpfs mount.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ecs.*;
 TmpfsProperty tmpfsProperty = TmpfsProperty.builder()
         .containerPath("containerPath")
         .mountOptions(List.of("mountOptions"))
         .size(123)
         .build();
 

See Also: