116 lines
3.2 KiB
C++
116 lines
3.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iot/IoT_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace IoT
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_IOT_API UpdateMitigationActionResult
|
|
{
|
|
public:
|
|
UpdateMitigationActionResult();
|
|
UpdateMitigationActionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateMitigationActionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline const Aws::String& GetActionArn() const{ return m_actionArn; }
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline void SetActionArn(const Aws::String& value) { m_actionArn = value; }
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline void SetActionArn(Aws::String&& value) { m_actionArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline void SetActionArn(const char* value) { m_actionArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline UpdateMitigationActionResult& WithActionArn(const Aws::String& value) { SetActionArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline UpdateMitigationActionResult& WithActionArn(Aws::String&& value) { SetActionArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN for the new mitigation action.</p>
|
|
*/
|
|
inline UpdateMitigationActionResult& WithActionArn(const char* value) { SetActionArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline const Aws::String& GetActionId() const{ return m_actionId; }
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline void SetActionId(const Aws::String& value) { m_actionId = value; }
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline void SetActionId(Aws::String&& value) { m_actionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline void SetActionId(const char* value) { m_actionId.assign(value); }
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline UpdateMitigationActionResult& WithActionId(const Aws::String& value) { SetActionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline UpdateMitigationActionResult& WithActionId(Aws::String&& value) { SetActionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A unique identifier for the mitigation action.</p>
|
|
*/
|
|
inline UpdateMitigationActionResult& WithActionId(const char* value) { SetActionId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_actionArn;
|
|
|
|
Aws::String m_actionId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IoT
|
|
} // namespace Aws
|