Interface SystemControl
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SystemControl.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:47.472Z")
@Stability(Stable)
public interface SystemControl
extends software.amazon.jsii.JsiiSerializable
Kernel parameters to set in the container.
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.ecs.*; SystemControl systemControl = SystemControl.builder() .namespace("namespace") .value("value") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSystemControl
static final class
An implementation forSystemControl
-
Method Summary
Modifier and TypeMethodDescriptionstatic SystemControl.Builder
builder()
The namespaced kernel parameter for which to set a value.getValue()
The value for the namespaced kernel parameter specified in namespace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNamespace
The namespaced kernel parameter for which to set a value. -
getValue
The value for the namespaced kernel parameter specified in namespace. -
builder
- Returns:
- a
SystemControl.Builder
ofSystemControl
-