SystemControl¶
-
class
aws_cdk.aws_ecs.
SystemControl
(*, namespace, value)¶ Bases:
object
Kernel parameters to set in the container.
- Parameters
namespace (
str
) – The namespaced kernel parameter for which to set a value.value (
str
) – The value for the namespaced kernel parameter specified in namespace.
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ecs as ecs system_control = ecs.SystemControl( namespace="namespace", value="value" )
Attributes
-
namespace
¶ The namespaced kernel parameter for which to set a value.
- Return type
str
-
value
¶ The value for the namespaced kernel parameter specified in namespace.
- Return type
str