/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output for a CreateStack action.See Also:
AWS
* API Reference
Unique identifier of the stack.
*/ inline const Aws::String& GetStackId() const{ return m_stackId; } /** *Unique identifier of the stack.
*/ inline void SetStackId(const Aws::String& value) { m_stackId = value; } /** *Unique identifier of the stack.
*/ inline void SetStackId(Aws::String&& value) { m_stackId = std::move(value); } /** *Unique identifier of the stack.
*/ inline void SetStackId(const char* value) { m_stackId.assign(value); } /** *Unique identifier of the stack.
*/ inline CreateStackResult& WithStackId(const Aws::String& value) { SetStackId(value); return *this;} /** *Unique identifier of the stack.
*/ inline CreateStackResult& WithStackId(Aws::String&& value) { SetStackId(std::move(value)); return *this;} /** *Unique identifier of the stack.
*/ inline CreateStackResult& WithStackId(const char* value) { SetStackId(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 CreateStackResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateStackResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_stackId; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace CloudFormation } // namespace Aws