158 lines
6.0 KiB
C
158 lines
6.0 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/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/autoscaling/model/ResponseMetadata.h>
|
|||
|
|
#include <aws/autoscaling/model/AutoScalingGroup.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Xml
|
|||
|
|
{
|
|||
|
|
class XmlDocument;
|
|||
|
|
} // namespace Xml
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace AutoScaling
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_AUTOSCALING_API DescribeAutoScalingGroupsResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DescribeAutoScalingGroupsResult();
|
|||
|
|
DescribeAutoScalingGroupsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
|
|||
|
|
DescribeAutoScalingGroupsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<AutoScalingGroup>& GetAutoScalingGroups() const{ return m_autoScalingGroups; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAutoScalingGroups(const Aws::Vector<AutoScalingGroup>& value) { m_autoScalingGroups = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAutoScalingGroups(Aws::Vector<AutoScalingGroup>&& value) { m_autoScalingGroups = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithAutoScalingGroups(const Aws::Vector<AutoScalingGroup>& value) { SetAutoScalingGroups(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithAutoScalingGroups(Aws::Vector<AutoScalingGroup>&& value) { SetAutoScalingGroups(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& AddAutoScalingGroups(const AutoScalingGroup& value) { m_autoScalingGroups.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The groups.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& AddAutoScalingGroups(AutoScalingGroup&& value) { m_autoScalingGroups.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A string that indicates that the response contains more items than can be
|
|||
|
|
* returned in a single response. To receive additional items, specify this string
|
|||
|
|
* for the <code>NextToken</code> value when requesting the next set of items. This
|
|||
|
|
* value is null when there are no more items to return.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline DescribeAutoScalingGroupsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::Vector<AutoScalingGroup> m_autoScalingGroups;
|
|||
|
|
|
|||
|
|
Aws::String m_nextToken;
|
|||
|
|
|
|||
|
|
ResponseMetadata m_responseMetadata;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace AutoScaling
|
|||
|
|
} // namespace Aws
|