interface AckProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCapability.AckProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCapability_AckProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCapability.AckProperty |
Python | aws_cdk.aws_eks_v2.CfnCapability.AckProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCapability » AckProperty |
Configuration settings for an ACK (AWS Controllers for Kubernetes) capability.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-capability-ack.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks_v2 as eks_v2 } from 'aws-cdk-lib';
const ackProperty: eks_v2.CfnCapability.AckProperty = {
disabledServices: ['disabledServices'],
enableCrossNamespace: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| disabled | string[] | A list of ACK service names to disable. |
| enable | boolean | IResolvable | Whether cross-namespace references are enabled for ACK controllers. |
disabledServices?
Type:
string[]
(optional)
A list of ACK service names to disable.
Controllers for services in this list are not installed or managed.
enableCrossNamespace?
Type:
boolean | IResolvable
(optional)
Whether cross-namespace references are enabled for ACK controllers.
When not specified, the service default applies.

.NET
Go
Java
Python
TypeScript