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

Information about the stack.

*/ inline const Stack& GetStack() const{ return m_stack; } /** *

Information about the stack.

*/ inline void SetStack(const Stack& value) { m_stack = value; } /** *

Information about the stack.

*/ inline void SetStack(Stack&& value) { m_stack = std::move(value); } /** *

Information about the stack.

*/ inline CreateStackResult& WithStack(const Stack& value) { SetStack(value); return *this;} /** *

Information about the stack.

*/ inline CreateStackResult& WithStack(Stack&& value) { SetStack(std::move(value)); return *this;} private: Stack m_stack; }; } // namespace Model } // namespace AppStream } // namespace Aws