This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appstream/include/aws/appstream/model/CreateStackResult.h

68 lines
1.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appstream/AppStream_EXPORTS.h>
#include <aws/appstream/model/Stack.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
CreateStackResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Information about the stack.</p>
*/
inline const Stack& GetStack() const{ return m_stack; }
/**
* <p>Information about the stack.</p>
*/
inline void SetStack(const Stack& value) { m_stack = value; }
/**
* <p>Information about the stack.</p>
*/
inline void SetStack(Stack&& value) { m_stack = std::move(value); }
/**
* <p>Information about the stack.</p>
*/
inline CreateStackResult& WithStack(const Stack& value) { SetStack(value); return *this;}
/**
* <p>Information about the stack.</p>
*/
inline CreateStackResult& WithStack(Stack&& value) { SetStack(std::move(value)); return *this;}
private:
Stack m_stack;
};
} // namespace Model
} // namespace AppStream
} // namespace Aws