This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

98 lines
2.8 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/elasticloadbalancing/ElasticLoadBalancing_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace ElasticLoadBalancing
{
namespace Model
{
/**
* <p>Information about the <code>ConnectionDraining</code>
* attribute.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/ConnectionDraining">AWS
* API Reference</a></p>
*/
class AWS_ELASTICLOADBALANCING_API ConnectionDraining
{
public:
ConnectionDraining();
ConnectionDraining(const Aws::Utils::Xml::XmlNode& xmlNode);
ConnectionDraining& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>Specifies whether connection draining is enabled for the load balancer.</p>
*/
inline bool GetEnabled() const{ return m_enabled; }
/**
* <p>Specifies whether connection draining is enabled for the load balancer.</p>
*/
inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
/**
* <p>Specifies whether connection draining is enabled for the load balancer.</p>
*/
inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
/**
* <p>Specifies whether connection draining is enabled for the load balancer.</p>
*/
inline ConnectionDraining& WithEnabled(bool value) { SetEnabled(value); return *this;}
/**
* <p>The maximum time, in seconds, to keep the existing connections open before
* deregistering the instances.</p>
*/
inline int GetTimeout() const{ return m_timeout; }
/**
* <p>The maximum time, in seconds, to keep the existing connections open before
* deregistering the instances.</p>
*/
inline bool TimeoutHasBeenSet() const { return m_timeoutHasBeenSet; }
/**
* <p>The maximum time, in seconds, to keep the existing connections open before
* deregistering the instances.</p>
*/
inline void SetTimeout(int value) { m_timeoutHasBeenSet = true; m_timeout = value; }
/**
* <p>The maximum time, in seconds, to keep the existing connections open before
* deregistering the instances.</p>
*/
inline ConnectionDraining& WithTimeout(int value) { SetTimeout(value); return *this;}
private:
bool m_enabled;
bool m_enabledHasBeenSet;
int m_timeout;
bool m_timeoutHasBeenSet;
};
} // namespace Model
} // namespace ElasticLoadBalancing
} // namespace Aws