This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-iot/include/aws/iot/model/AlertTarget.h

142 lines
4.3 KiB
C
Raw Normal View History

/**
* 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>A structure containing the alert target ARN and the role ARN.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/AlertTarget">AWS API
* Reference</a></p>
*/
class AWS_IOT_API AlertTarget
{
public:
AlertTarget();
AlertTarget(Aws::Utils::Json::JsonView jsonValue);
AlertTarget& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline const Aws::String& GetAlertTargetArn() const{ return m_alertTargetArn; }
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline bool AlertTargetArnHasBeenSet() const { return m_alertTargetArnHasBeenSet; }
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline void SetAlertTargetArn(const Aws::String& value) { m_alertTargetArnHasBeenSet = true; m_alertTargetArn = value; }
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline void SetAlertTargetArn(Aws::String&& value) { m_alertTargetArnHasBeenSet = true; m_alertTargetArn = std::move(value); }
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline void SetAlertTargetArn(const char* value) { m_alertTargetArnHasBeenSet = true; m_alertTargetArn.assign(value); }
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline AlertTarget& WithAlertTargetArn(const Aws::String& value) { SetAlertTargetArn(value); return *this;}
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline AlertTarget& WithAlertTargetArn(Aws::String&& value) { SetAlertTargetArn(std::move(value)); return *this;}
/**
* <p>The ARN of the notification target to which alerts are sent.</p>
*/
inline AlertTarget& WithAlertTargetArn(const char* value) { SetAlertTargetArn(value); return *this;}
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline AlertTarget& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline AlertTarget& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
/**
* <p>The ARN of the role that grants permission to send alerts to the notification
* target.</p>
*/
inline AlertTarget& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
private:
Aws::String m_alertTargetArn;
bool m_alertTargetArnHasBeenSet;
Aws::String m_roleArn;
bool m_roleArnHasBeenSet;
};
} // namespace Model
} // namespace IoT
} // namespace Aws