Interface CfnContainerGroupDefinition.IContainerMountPointProperty
A mount point that binds a container to a file or directory on the host system.
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnContainerGroupDefinition.IContainerMountPointProperty
Syntax (vb)
Public Interface CfnContainerGroupDefinition.IContainerMountPointProperty
Remarks
Part of: GameServerContainerDefinition , , SupportContainerDefinition ,
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GameLift;
var containerMountPointProperty = new ContainerMountPointProperty {
InstancePath = "instancePath",
// the properties below are optional
AccessLevel = "accessLevel",
ContainerPath = "containerPath"
};
Synopsis
Properties
AccessLevel | The type of access for the container. |
ContainerPath | The mount path on the container. |
InstancePath | The path to the source file or directory. |
Properties
AccessLevel
The type of access for the container.
string? AccessLevel { get; }
Property Value
Remarks
ContainerPath
The mount path on the container.
string? ContainerPath { get; }
Property Value
Remarks
If this property isn't set, the instance path is used.
InstancePath
The path to the source file or directory.
string InstancePath { get; }