Show / Hide Table of Contents

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 ,

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containermountpoint.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containermountpoint.html#cfn-gamelift-containergroupdefinition-containermountpoint-accesslevel

ContainerPath

The mount path on the container.

string? ContainerPath { get; }
Property Value

string

Remarks

If this property isn't set, the instance path is used.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containermountpoint.html#cfn-gamelift-containergroupdefinition-containermountpoint-containerpath

InstancePath

The path to the source file or directory.

string InstancePath { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containermountpoint.html#cfn-gamelift-containergroupdefinition-containermountpoint-instancepath

Back to top Generated by DocFX