Interface CfnCapability.AckProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapability.AckProperty.Jsii$Proxy
- Enclosing class:
CfnCapability
@Stability(Stable)
public static interface CfnCapability.AckProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for an ACK (AWS Controllers for Kubernetes) capability.
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.eks.*;
AckProperty ackProperty = AckProperty.builder()
.disabledServices(List.of("disabledServices"))
.enableCrossNamespace(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCapability.AckPropertystatic final classAn implementation forCfnCapability.AckProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisabledServices
A list of ACK service names to disable.Controllers for services in this list are not installed or managed.
- See Also:
-
getEnableCrossNamespace
Whether cross-namespace references are enabled for ACK controllers.When not specified, the service default applies.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
- Returns:
- a
CfnCapability.AckProperty.BuilderofCfnCapability.AckProperty
-