Interface CfnContainerGroupDefinition.ContainerMountPointProperty

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

@Stability(Stable) public static interface CfnContainerGroupDefinition.ContainerMountPointProperty extends software.amazon.jsii.JsiiSerializable
A mount point that binds a container to a file or directory on the host system.

Part of: GameServerContainerDefinition , , SupportContainerDefinition ,

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.gamelift.*;
 ContainerMountPointProperty containerMountPointProperty = ContainerMountPointProperty.builder()
         .instancePath("instancePath")
         // the properties below are optional
         .accessLevel("accessLevel")
         .containerPath("containerPath")
         .build();
 

See Also: