/** * 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 CloudFormation { namespace Model { /** *

The output for a ListStackResources action.

See Also:

* AWS * API Reference

*/ class AWS_CLOUDFORMATION_API ListStackResourcesResult { public: ListStackResourcesResult(); ListStackResourcesResult(const Aws::AmazonWebServiceResult& result); ListStackResourcesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of StackResourceSummary structures.

*/ inline const Aws::Vector& GetStackResourceSummaries() const{ return m_stackResourceSummaries; } /** *

A list of StackResourceSummary structures.

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

A list of StackResourceSummary structures.

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

A list of StackResourceSummary structures.

*/ inline ListStackResourcesResult& WithStackResourceSummaries(const Aws::Vector& value) { SetStackResourceSummaries(value); return *this;} /** *

A list of StackResourceSummary structures.

*/ inline ListStackResourcesResult& WithStackResourceSummaries(Aws::Vector&& value) { SetStackResourceSummaries(std::move(value)); return *this;} /** *

A list of StackResourceSummary structures.

*/ inline ListStackResourcesResult& AddStackResourceSummaries(const StackResourceSummary& value) { m_stackResourceSummaries.push_back(value); return *this; } /** *

A list of StackResourceSummary structures.

*/ inline ListStackResourcesResult& AddStackResourceSummaries(StackResourceSummary&& value) { m_stackResourceSummaries.push_back(std::move(value)); return *this; } /** *

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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

If the output exceeds 1 MB, a string that identifies the next page of stack * resources. If no additional page exists, this value is null.

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