/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration options for zone awareness.See Also:
AWS
* API Reference
he number of Availability Zones that the domain uses. Valid values are 2 and * 3. The default is 2.
*/ inline int GetAvailabilityZoneCount() const{ return m_availabilityZoneCount; } /** *he number of Availability Zones that the domain uses. Valid values are 2 and * 3. The default is 2.
*/ inline bool AvailabilityZoneCountHasBeenSet() const { return m_availabilityZoneCountHasBeenSet; } /** *he number of Availability Zones that the domain uses. Valid values are 2 and * 3. The default is 2.
*/ inline void SetAvailabilityZoneCount(int value) { m_availabilityZoneCountHasBeenSet = true; m_availabilityZoneCount = value; } /** *he number of Availability Zones that the domain uses. Valid values are 2 and * 3. The default is 2.
*/ inline AwsElasticsearchDomainElasticsearchClusterConfigZoneAwarenessConfigDetails& WithAvailabilityZoneCount(int value) { SetAvailabilityZoneCount(value); return *this;} private: int m_availabilityZoneCount; bool m_availabilityZoneCountHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws