Class: Aws::GameLift::Types::LinuxCapabilities
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::LinuxCapabilities
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
A set of Linux capabilities that are added to a container's default Docker configuration for a container defined in the ContainerGroupDefinition. For more detailed information about these Linux capabilities, see the capabilities(7) Linux manual page.
Modifying capabilities on an existing container: To remove a
capability, update the Include list with only the needed
capabilities. To revert back to default capabilities, omit
LinuxCapabilities within the ContainerDefinition.
Part of: GameServerContainerDefinition, GameServerContainerDefinitionInput, SupportContainerDefinition, SupportContainerDefinitionInput
Returned by: CreateContainerGroupDefinition, DescribeContainerGroupDefinition, ListContainerGroupDefinitions, ListContainerGroupDefinitionVersions, UpdateContainerGroupDefinition
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include ⇒ Array<String>
The list of Linux capabilities to add to the container's default configuration.
Instance Attribute Details
#include ⇒ Array<String>
The list of Linux capabilities to add to the container's default
configuration. Specify each capability as a string from the set of
supported capability names (for example, NET_BIND_SERVICE or
SYS_PTRACE).
8504 8505 8506 8507 8508 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8504 class LinuxCapabilities < Struct.new( :include) SENSITIVE = [] include Aws::Structure end |