Interface CfnTaskDefinition.MountPointProperty

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

@Stability(Stable) public static interface CfnTaskDefinition.MountPointProperty extends software.amazon.jsii.JsiiSerializable
The details for a volume mount point that's used in a container definition.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 MountPointProperty mountPointProperty = MountPointProperty.builder()
         .containerPath("containerPath")
         .readOnly(false)
         .sourceVolume("sourceVolume")
         .build();
 

See Also: