Class: Aws::GameLift::Types::ContainerMountPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerMountPoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
A mount point that binds a container to a file or directory on the host system.
**Part of:** GameServerContainerDefinition, GameServerContainerDefinitionInput, SupportContainerDefinition, SupportContainerDefinitionInput
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_level ⇒ String
The type of access for the container.
-
#container_path ⇒ String
The mount path on the container.
-
#instance_path ⇒ String
The path to the source file or directory.
Instance Attribute Details
#access_level ⇒ String
The type of access for the container.
1194 1195 1196 1197 1198 1199 1200 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1194 class ContainerMountPoint < Struct.new( :instance_path, :container_path, :access_level) SENSITIVE = [] include Aws::Structure end |
#container_path ⇒ String
The mount path on the container. If this property isn’t set, the instance path is used.
1194 1195 1196 1197 1198 1199 1200 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1194 class ContainerMountPoint < Struct.new( :instance_path, :container_path, :access_level) SENSITIVE = [] include Aws::Structure end |
#instance_path ⇒ String
The path to the source file or directory.
1194 1195 1196 1197 1198 1199 1200 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1194 class ContainerMountPoint < Struct.new( :instance_path, :container_path, :access_level) SENSITIVE = [] include Aws::Structure end |