interface EtcdPlacementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCluster.EtcdPlacementProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_EtcdPlacementProperty |
Java | software.amazon.awscdk.services.eks.CfnCluster.EtcdPlacementProperty |
Python | aws_cdk.aws_eks.CfnCluster.EtcdPlacementProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCluster » 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-lib';
const etcdPlacementProperty: eks.CfnCluster.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