Interface CfnContainerGroupDefinition.LinuxCapabilitiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContainerGroupDefinition.LinuxCapabilitiesProperty.Jsii$Proxy
Enclosing class:
CfnContainerGroupDefinition

@Stability(Stable) public static interface CfnContainerGroupDefinition.LinuxCapabilitiesProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.gamelift.*;
 LinuxCapabilitiesProperty linuxCapabilitiesProperty = LinuxCapabilitiesProperty.builder()
         .include(List.of("include"))
         .build();
 

See Also: