Class: Aws::ElasticsearchService::Types::ZoneAwarenessConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Note:

When making an API call, you may pass ZoneAwarenessConfig data as a hash:

{
  availability_zone_count: 1,
}

Specifies the zone awareness configuration for the domain cluster, such as the number of availability zones.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#availability_zone_countInteger

An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

Returns:

  • (Integer)


3810
3811
3812
3813
3814
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3810

class ZoneAwarenessConfig < Struct.new(
  :availability_zone_count)
  SENSITIVE = []
  include Aws::Structure
end