Interface CfnTaskDefinition.VolumeFromProperty

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

@Stability(Stable) public static interface CfnTaskDefinition.VolumeFromProperty extends software.amazon.jsii.JsiiSerializable
Details on a data volume from another container in the same task 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.*;
 VolumeFromProperty volumeFromProperty = VolumeFromProperty.builder()
         .readOnly(false)
         .sourceContainer("sourceContainer")
         .build();
 

See Also: