/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace AutoScaling { namespace Model { class DescribeLaunchConfigurationsResult { public: AWS_AUTOSCALING_API DescribeLaunchConfigurationsResult(); AWS_AUTOSCALING_API DescribeLaunchConfigurationsResult(const Aws::AmazonWebServiceResult& result); AWS_AUTOSCALING_API DescribeLaunchConfigurationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The launch configurations.

*/ inline const Aws::Vector& GetLaunchConfigurations() const{ return m_launchConfigurations; } /** *

The launch configurations.

*/ inline void SetLaunchConfigurations(const Aws::Vector& value) { m_launchConfigurations = value; } /** *

The launch configurations.

*/ inline void SetLaunchConfigurations(Aws::Vector&& value) { m_launchConfigurations = std::move(value); } /** *

The launch configurations.

*/ inline DescribeLaunchConfigurationsResult& WithLaunchConfigurations(const Aws::Vector& value) { SetLaunchConfigurations(value); return *this;} /** *

The launch configurations.

*/ inline DescribeLaunchConfigurationsResult& WithLaunchConfigurations(Aws::Vector&& value) { SetLaunchConfigurations(std::move(value)); return *this;} /** *

The launch configurations.

*/ inline DescribeLaunchConfigurationsResult& AddLaunchConfigurations(const LaunchConfiguration& value) { m_launchConfigurations.push_back(value); return *this; } /** *

The launch configurations.

*/ inline DescribeLaunchConfigurationsResult& AddLaunchConfigurations(LaunchConfiguration&& value) { m_launchConfigurations.push_back(std::move(value)); return *this; } /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline DescribeLaunchConfigurationsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline DescribeLaunchConfigurationsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

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 NextToken value when requesting the next set of items. This * value is null when there are no more items to return.

*/ inline DescribeLaunchConfigurationsResult& 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 DescribeLaunchConfigurationsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DescribeLaunchConfigurationsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_launchConfigurations; Aws::String m_nextToken; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace AutoScaling } // namespace Aws