interface ContainerMountPointProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.GameLift.CfnContainerGroupDefinition.ContainerMountPointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnContainerGroupDefinition_ContainerMountPointProperty |
Java | software.amazon.awscdk.services.gamelift.CfnContainerGroupDefinition.ContainerMountPointProperty |
Python | aws_cdk.aws_gamelift.CfnContainerGroupDefinition.ContainerMountPointProperty |
TypeScript | aws-cdk-lib » aws_gamelift » CfnContainerGroupDefinition » ContainerMountPointProperty |
Defines the mount point configuration within a container.
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 on the host that will be mounted in the container. |
access | string | The access permissions for the mounted path. |
container | string | The path inside the container where the mount is accessible. |
instancePath
Type:
string
The path on the host that will be mounted in the container.
accessLevel?
Type:
string
(optional)
The access permissions for the mounted path.
containerPath?
Type:
string
(optional)
The path inside the container where the mount is accessible.