interface ContainerMountPointProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.GameLift.CfnContainerGroupDefinition.ContainerMountPointProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnContainerGroupDefinition_ContainerMountPointProperty |
![]() | software.amazon.awscdk.services.gamelift.CfnContainerGroupDefinition.ContainerMountPointProperty |
![]() | aws_cdk.aws_gamelift.CfnContainerGroupDefinition.ContainerMountPointProperty |
![]() | aws-cdk-lib » aws_gamelift » CfnContainerGroupDefinition » ContainerMountPointProperty |
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 { aws_gamelift as gamelift } from 'aws-cdk-lib';
const containerMountPointProperty: gamelift.CfnContainerGroupDefinition.ContainerMountPointProperty = {
instancePath: 'instancePath',
// the properties below are optional
accessLevel: 'accessLevel',
containerPath: 'containerPath',
};
Properties
Name | Type | Description |
---|---|---|
instance | string | The path to the source file or directory. |
access | string | The type of access for the container. |
container | string | The mount path on the container. |
instancePath
Type:
string
The path to the source file or directory.
accessLevel?
Type:
string
(optional)
The type of access for the container.
containerPath?
Type:
string
(optional)
The mount path on the container.
If this property isn't set, the instance path is used.