/** * 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 Json { class JsonValue; } // namespace Json } // namespace Utils namespace SsmSap { namespace Model { class UpdateApplicationSettingsResult { public: AWS_SSMSAP_API UpdateApplicationSettingsResult(); AWS_SSMSAP_API UpdateApplicationSettingsResult(const Aws::AmazonWebServiceResult& result); AWS_SSMSAP_API UpdateApplicationSettingsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The update message.

*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *

The update message.

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

The update message.

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

The update message.

*/ inline void SetMessage(const char* value) { m_message.assign(value); } /** *

The update message.

*/ inline UpdateApplicationSettingsResult& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *

The update message.

*/ inline UpdateApplicationSettingsResult& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *

The update message.

*/ inline UpdateApplicationSettingsResult& WithMessage(const char* value) { SetMessage(value); return *this;} /** *

The IDs of the operations.

*/ inline const Aws::Vector& GetOperationIds() const{ return m_operationIds; } /** *

The IDs of the operations.

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

The IDs of the operations.

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

The IDs of the operations.

*/ inline UpdateApplicationSettingsResult& WithOperationIds(const Aws::Vector& value) { SetOperationIds(value); return *this;} /** *

The IDs of the operations.

*/ inline UpdateApplicationSettingsResult& WithOperationIds(Aws::Vector&& value) { SetOperationIds(std::move(value)); return *this;} /** *

The IDs of the operations.

*/ inline UpdateApplicationSettingsResult& AddOperationIds(const Aws::String& value) { m_operationIds.push_back(value); return *this; } /** *

The IDs of the operations.

*/ inline UpdateApplicationSettingsResult& AddOperationIds(Aws::String&& value) { m_operationIds.push_back(std::move(value)); return *this; } /** *

The IDs of the operations.

*/ inline UpdateApplicationSettingsResult& AddOperationIds(const char* value) { m_operationIds.push_back(value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateApplicationSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateApplicationSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateApplicationSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_message; Aws::Vector m_operationIds; Aws::String m_requestId; }; } // namespace Model } // namespace SsmSap } // namespace Aws