192 lines
7.8 KiB
C++
192 lines
7.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/autoscaling/AutoScaling_EXPORTS.h>
|
|
#include <aws/autoscaling/AutoScalingRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace AutoScaling
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_AUTOSCALING_API DescribeAutoScalingInstancesRequest : public AutoScalingRequest
|
|
{
|
|
public:
|
|
DescribeAutoScalingInstancesRequest();
|
|
|
|
// 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 "DescribeAutoScalingInstances"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetInstanceIds() const{ return m_instanceIds; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline bool InstanceIdsHasBeenSet() const { return m_instanceIdsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline void SetInstanceIds(const Aws::Vector<Aws::String>& value) { m_instanceIdsHasBeenSet = true; m_instanceIds = value; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline void SetInstanceIds(Aws::Vector<Aws::String>&& value) { m_instanceIdsHasBeenSet = true; m_instanceIds = std::move(value); }
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& WithInstanceIds(const Aws::Vector<Aws::String>& value) { SetInstanceIds(value); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& WithInstanceIds(Aws::Vector<Aws::String>&& value) { SetInstanceIds(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& AddInstanceIds(const Aws::String& value) { m_instanceIdsHasBeenSet = true; m_instanceIds.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& AddInstanceIds(Aws::String&& value) { m_instanceIdsHasBeenSet = true; m_instanceIds.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the instances. You can specify up to <code>MaxRecords</code> IDs.
|
|
* If you omit this parameter, all Auto Scaling instances are described. If you
|
|
* specify an ID that does not exist, it is ignored with no error.</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& AddInstanceIds(const char* value) { m_instanceIdsHasBeenSet = true; m_instanceIds.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of items to return with this call. The default value is
|
|
* <code>50</code> and the maximum value is <code>50</code>.</p>
|
|
*/
|
|
inline int GetMaxRecords() const{ return m_maxRecords; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to return with this call. The default value is
|
|
* <code>50</code> and the maximum value is <code>50</code>.</p>
|
|
*/
|
|
inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to return with this call. The default value is
|
|
* <code>50</code> and the maximum value is <code>50</code>.</p>
|
|
*/
|
|
inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to return with this call. The default value is
|
|
* <code>50</code> and the maximum value is <code>50</code>.</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The token for the next set of items to return. (You received this token from
|
|
* a previous call.)</p>
|
|
*/
|
|
inline DescribeAutoScalingInstancesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<Aws::String> m_instanceIds;
|
|
bool m_instanceIdsHasBeenSet;
|
|
|
|
int m_maxRecords;
|
|
bool m_maxRecordsHasBeenSet;
|
|
|
|
Aws::String m_nextToken;
|
|
bool m_nextTokenHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AutoScaling
|
|
} // namespace Aws
|