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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnContainerGroupDefinition.ContainerMountPointPropertystatic final classAn implementation forCfnContainerGroupDefinition.ContainerMountPointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstancePath
The path to the source file or directory.- See Also:
-
getAccessLevel
The type of access for the container.- See Also:
-
getContainerPath
The mount path on the container.If this property isn't set, the instance path is used.
- See Also:
-
builder
-