138 lines
4.6 KiB
C++
138 lines
4.6 KiB
C++
/**
|
|
* 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/elasticloadbalancing/ElasticLoadBalancingRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/elasticloadbalancing/model/Instance.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ElasticLoadBalancing
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Contains the parameters for DescribeInstanceHealth.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/DescribeEndPointStateInput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ELASTICLOADBALANCING_API DescribeInstanceHealthRequest : public ElasticLoadBalancingRequest
|
|
{
|
|
public:
|
|
DescribeInstanceHealthRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "DescribeInstanceHealth"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline const Aws::String& GetLoadBalancerName() const{ return m_loadBalancerName; }
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline bool LoadBalancerNameHasBeenSet() const { return m_loadBalancerNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline void SetLoadBalancerName(const Aws::String& value) { m_loadBalancerNameHasBeenSet = true; m_loadBalancerName = value; }
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline void SetLoadBalancerName(Aws::String&& value) { m_loadBalancerNameHasBeenSet = true; m_loadBalancerName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline void SetLoadBalancerName(const char* value) { m_loadBalancerNameHasBeenSet = true; m_loadBalancerName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& WithLoadBalancerName(const Aws::String& value) { SetLoadBalancerName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& WithLoadBalancerName(Aws::String&& value) { SetLoadBalancerName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the load balancer.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& WithLoadBalancerName(const char* value) { SetLoadBalancerName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline const Aws::Vector<Instance>& GetInstances() const{ return m_instances; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline bool InstancesHasBeenSet() const { return m_instancesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline void SetInstances(const Aws::Vector<Instance>& value) { m_instancesHasBeenSet = true; m_instances = value; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline void SetInstances(Aws::Vector<Instance>&& value) { m_instancesHasBeenSet = true; m_instances = std::move(value); }
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& WithInstances(const Aws::Vector<Instance>& value) { SetInstances(value); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& WithInstances(Aws::Vector<Instance>&& value) { SetInstances(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& AddInstances(const Instance& value) { m_instancesHasBeenSet = true; m_instances.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances.</p>
|
|
*/
|
|
inline DescribeInstanceHealthRequest& AddInstances(Instance&& value) { m_instancesHasBeenSet = true; m_instances.push_back(std::move(value)); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_loadBalancerName;
|
|
bool m_loadBalancerNameHasBeenSet;
|
|
|
|
Aws::Vector<Instance> m_instances;
|
|
bool m_instancesHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ElasticLoadBalancing
|
|
} // namespace Aws
|