/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the CrossZoneLoadBalancing
* attribute.See Also:
AWS
* API Reference
Specifies whether cross-zone load balancing is enabled for the load * balancer.
*/ inline bool GetEnabled() const{ return m_enabled; } /** *Specifies whether cross-zone load balancing is enabled for the load * balancer.
*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *Specifies whether cross-zone load balancing is enabled for the load * balancer.
*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *Specifies whether cross-zone load balancing is enabled for the load * balancer.
*/ inline CrossZoneLoadBalancing& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace ElasticLoadBalancing } // namespace Aws