interface EtcdPlacementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnClusterPropsMixin.EtcdPlacementProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnClusterPropsMixin_EtcdPlacementProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnClusterPropsMixin.EtcdPlacementProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnClusterPropsMixin.EtcdPlacementProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnClusterPropsMixin » EtcdPlacementProperty |
The placement configuration for the etcd instances of your local Amazon EKS cluster on an AWS Outpost.
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 etcdPlacementProperty: eks.CfnClusterPropsMixin.EtcdPlacementProperty = {
spreadLevel: 'spreadLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| spread | string | Optional parameter to specify the placement group spread level for etcd instances. |
spreadLevel?
Type:
string
(optional)
Optional parameter to specify the placement group spread level for etcd instances.
If not provided, EKS will deploy etcd instances without a placement group.

.NET
Go
Java
Python
TypeScript