interface LinuxCapabilitiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.CfnContainerGroupDefinition.LinuxCapabilitiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnContainerGroupDefinition_LinuxCapabilitiesProperty |
Java | software.amazon.awscdk.services.gamelift.CfnContainerGroupDefinition.LinuxCapabilitiesProperty |
Python | aws_cdk.aws_gamelift.CfnContainerGroupDefinition.LinuxCapabilitiesProperty |
TypeScript | aws-cdk-lib » aws_gamelift » CfnContainerGroupDefinition » LinuxCapabilitiesProperty |
A set of Linux capabilities that are added to a container's default Docker configuration.
For more detailed information, see the capabilities(7) Linux manual page.
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 linuxCapabilitiesProperty: gamelift.CfnContainerGroupDefinition.LinuxCapabilitiesProperty = {
include: ['include'],
};
Properties
| Name | Type | Description |
|---|---|---|
| include? | string[] | The list of Linux capabilities to add to the container's default configuration. |
include?
Type:
string[]
(optional)
The list of Linux capabilities to add to the container's default configuration.

.NET
Go
Java
Python
TypeScript