interface ZoneAwarenessConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService.CfnDomainPropsMixin.ZoneAwarenessConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchservice#CfnDomainPropsMixin_ZoneAwarenessConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchservice.CfnDomainPropsMixin.ZoneAwarenessConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchservice.CfnDomainPropsMixin.ZoneAwarenessConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchservice » CfnDomainPropsMixin » ZoneAwarenessConfigProperty |
Specifies zone awareness configuration options.
Only use if ZoneAwarenessEnabled is true .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from '@aws-cdk/cfn-property-mixins';
const zoneAwarenessConfigProperty: opensearchservice.CfnDomainPropsMixin.ZoneAwarenessConfigProperty = {
availabilityZoneCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | number | If you enabled multiple Availability Zones (AZs), the number of AZs that you want the domain to use. |
availabilityZoneCount?
Type:
number
(optional)
If you enabled multiple Availability Zones (AZs), the number of AZs that you want the domain to use.
Valid values are 2 and 3 . Default is 2.

.NET
Go
Java
Python
TypeScript