91 lines
2.7 KiB
C
91 lines
2.7 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
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace IoT
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Parameters to define a mitigation action that publishes findings to Amazon
|
|||
|
|
* SNS. You can implement your own custom actions in response to the Amazon SNS
|
|||
|
|
* messages.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/PublishFindingToSnsParams">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_IOT_API PublishFindingToSnsParams
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
PublishFindingToSnsParams();
|
|||
|
|
PublishFindingToSnsParams(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
PublishFindingToSnsParams& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetTopicArn() const{ return m_topicArn; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool TopicArnHasBeenSet() const { return m_topicArnHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTopicArn(const Aws::String& value) { m_topicArnHasBeenSet = true; m_topicArn = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTopicArn(Aws::String&& value) { m_topicArnHasBeenSet = true; m_topicArn = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTopicArn(const char* value) { m_topicArnHasBeenSet = true; m_topicArn.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline PublishFindingToSnsParams& WithTopicArn(const Aws::String& value) { SetTopicArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline PublishFindingToSnsParams& WithTopicArn(Aws::String&& value) { SetTopicArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the topic to which you want to publish the findings.</p>
|
|||
|
|
*/
|
|||
|
|
inline PublishFindingToSnsParams& WithTopicArn(const char* value) { SetTopicArn(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_topicArn;
|
|||
|
|
bool m_topicArnHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace IoT
|
|||
|
|
} // namespace Aws
|