interface ContainerMountPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GameLift.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgamelift#CfnContainerGroupDefinitionPropsMixin_ContainerMountPointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.gamelift.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty |
Python | aws_cdk.cfn_property_mixins.aws_gamelift.CfnContainerGroupDefinitionPropsMixin.ContainerMountPointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_gamelift » 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 { aws_gamelift as gamelift } from '@aws-cdk/cfn-property-mixins';
const containerMountPointProperty: gamelift.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