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