interface AckProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnCapabilityPropsMixin.AckProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnCapabilityPropsMixin_AckProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnCapabilityPropsMixin.AckProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnCapabilityPropsMixin.AckProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnCapabilityPropsMixin » 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 as eks } from '@aws-cdk/cfn-property-mixins';
const ackProperty: eks.CfnCapabilityPropsMixin.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