/** * 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 IoT { namespace Model { class AWS_IOT_API StartAuditMitigationActionsTaskResult { public: StartAuditMitigationActionsTaskResult(); StartAuditMitigationActionsTaskResult(const Aws::AmazonWebServiceResult& result); StartAuditMitigationActionsTaskResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

*/ inline const Aws::String& GetTaskId() const{ return m_taskId; } /** *

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

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

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

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

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

*/ inline void SetTaskId(const char* value) { m_taskId.assign(value); } /** *

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

*/ inline StartAuditMitigationActionsTaskResult& WithTaskId(const Aws::String& value) { SetTaskId(value); return *this;} /** *

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

*/ inline StartAuditMitigationActionsTaskResult& WithTaskId(Aws::String&& value) { SetTaskId(std::move(value)); return *this;} /** *

The unique identifier for the audit mitigation task. This matches the * taskId that you specified in the request.

*/ inline StartAuditMitigationActionsTaskResult& WithTaskId(const char* value) { SetTaskId(value); return *this;} private: Aws::String m_taskId; }; } // namespace Model } // namespace IoT } // namespace Aws