interface ContainerMountPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnContainerGroupDefinitionPropsMixin_ContainerMountPointProperty |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » CfnContainerGroupDefinitionPropsMixin » 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 { mixins as gamelift_mixins } from '@aws-cdk/mixins-preview/aws-gamelift';
const containerMountPointProperty: gamelift_mixins.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty = {
accessLevel: 'accessLevel',
containerPath: 'containerPath',
instancePath: 'instancePath',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The type of access for the container. |
| container | string | The mount path on the container. |
| instance | 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.
instancePath?
Type:
string
(optional)
The path to the source file or directory.

.NET
Go
Java
Python
TypeScript