214 lines
8.7 KiB
C++
214 lines
8.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h>
|
|
#include <aws/elasticbeanstalk/ElasticBeanstalkRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/elasticbeanstalk/model/EnvironmentHealthAttribute.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ElasticBeanstalk
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>See the example below to learn how to create a request body.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentHealthRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ELASTICBEANSTALK_API DescribeEnvironmentHealthRequest : public ElasticBeanstalkRequest
|
|
{
|
|
public:
|
|
DescribeEnvironmentHealthRequest();
|
|
|
|
// 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 "DescribeEnvironmentHealth"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline const Aws::String& GetEnvironmentName() const{ return m_environmentName; }
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline bool EnvironmentNameHasBeenSet() const { return m_environmentNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline void SetEnvironmentName(const Aws::String& value) { m_environmentNameHasBeenSet = true; m_environmentName = value; }
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline void SetEnvironmentName(Aws::String&& value) { m_environmentNameHasBeenSet = true; m_environmentName = std::move(value); }
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline void SetEnvironmentName(const char* value) { m_environmentNameHasBeenSet = true; m_environmentName.assign(value); }
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithEnvironmentName(const Aws::String& value) { SetEnvironmentName(value); return *this;}
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithEnvironmentName(Aws::String&& value) { SetEnvironmentName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Specify the environment by name.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithEnvironmentName(const char* value) { SetEnvironmentName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; }
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; }
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); }
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); }
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;}
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Specify the environment by ID.</p> <p>You must specify either this or an
|
|
* EnvironmentName, or both.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline const Aws::Vector<EnvironmentHealthAttribute>& GetAttributeNames() const{ return m_attributeNames; }
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline bool AttributeNamesHasBeenSet() const { return m_attributeNamesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline void SetAttributeNames(const Aws::Vector<EnvironmentHealthAttribute>& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = value; }
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline void SetAttributeNames(Aws::Vector<EnvironmentHealthAttribute>&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = std::move(value); }
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithAttributeNames(const Aws::Vector<EnvironmentHealthAttribute>& value) { SetAttributeNames(value); return *this;}
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& WithAttributeNames(Aws::Vector<EnvironmentHealthAttribute>&& value) { SetAttributeNames(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& AddAttributeNames(const EnvironmentHealthAttribute& value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>Specify the response elements to return. To retrieve all attributes, set to
|
|
* <code>All</code>. If no attribute names are specified, returns the name of the
|
|
* environment.</p>
|
|
*/
|
|
inline DescribeEnvironmentHealthRequest& AddAttributeNames(EnvironmentHealthAttribute&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(std::move(value)); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_environmentName;
|
|
bool m_environmentNameHasBeenSet;
|
|
|
|
Aws::String m_environmentId;
|
|
bool m_environmentIdHasBeenSet;
|
|
|
|
Aws::Vector<EnvironmentHealthAttribute> m_attributeNames;
|
|
bool m_attributeNamesHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ElasticBeanstalk
|
|
} // namespace Aws
|