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

The unique ID for this stack set operation.

*/ inline const Aws::String& GetOperationId() const{ return m_operationId; } /** *

The unique ID for this stack set operation.

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

The unique ID for this stack set operation.

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

The unique ID for this stack set operation.

*/ inline void SetOperationId(const char* value) { m_operationId.assign(value); } /** *

The unique ID for this stack set operation.

*/ inline UpdateStackSetResult& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;} /** *

The unique ID for this stack set operation.

*/ inline UpdateStackSetResult& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;} /** *

The unique ID for this stack set operation.

*/ inline UpdateStackSetResult& WithOperationId(const char* value) { SetOperationId(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 UpdateStackSetResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline UpdateStackSetResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_operationId; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace CloudFormation } // namespace Aws