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-autoscaling/include/aws/autoscaling/model/PutNotificationConfigurationRequest.h

208 lines
8.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/autoscaling/AutoScaling_EXPORTS.h>
#include <aws/autoscaling/AutoScalingRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <utility>
namespace Aws
{
namespace AutoScaling
{
namespace Model
{
/**
*/
class AWS_AUTOSCALING_API PutNotificationConfigurationRequest : public AutoScalingRequest
{
public:
PutNotificationConfigurationRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "PutNotificationConfiguration"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline const Aws::String& GetAutoScalingGroupName() const{ return m_autoScalingGroupName; }
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline bool AutoScalingGroupNameHasBeenSet() const { return m_autoScalingGroupNameHasBeenSet; }
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline void SetAutoScalingGroupName(const Aws::String& value) { m_autoScalingGroupNameHasBeenSet = true; m_autoScalingGroupName = value; }
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline void SetAutoScalingGroupName(Aws::String&& value) { m_autoScalingGroupNameHasBeenSet = true; m_autoScalingGroupName = std::move(value); }
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline void SetAutoScalingGroupName(const char* value) { m_autoScalingGroupNameHasBeenSet = true; m_autoScalingGroupName.assign(value); }
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline PutNotificationConfigurationRequest& WithAutoScalingGroupName(const Aws::String& value) { SetAutoScalingGroupName(value); return *this;}
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline PutNotificationConfigurationRequest& WithAutoScalingGroupName(Aws::String&& value) { SetAutoScalingGroupName(std::move(value)); return *this;}
/**
* <p>The name of the Auto Scaling group.</p>
*/
inline PutNotificationConfigurationRequest& WithAutoScalingGroupName(const char* value) { SetAutoScalingGroupName(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline const Aws::String& GetTopicARN() const{ return m_topicARN; }
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline bool TopicARNHasBeenSet() const { return m_topicARNHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline void SetTopicARN(const Aws::String& value) { m_topicARNHasBeenSet = true; m_topicARN = value; }
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline void SetTopicARN(Aws::String&& value) { m_topicARNHasBeenSet = true; m_topicARN = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline void SetTopicARN(const char* value) { m_topicARNHasBeenSet = true; m_topicARN.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline PutNotificationConfigurationRequest& WithTopicARN(const Aws::String& value) { SetTopicARN(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline PutNotificationConfigurationRequest& WithTopicARN(Aws::String&& value) { SetTopicARN(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service
* (Amazon SNS) topic.</p>
*/
inline PutNotificationConfigurationRequest& WithTopicARN(const char* value) { SetTopicARN(value); return *this;}
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline const Aws::Vector<Aws::String>& GetNotificationTypes() const{ return m_notificationTypes; }
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline bool NotificationTypesHasBeenSet() const { return m_notificationTypesHasBeenSet; }
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline void SetNotificationTypes(const Aws::Vector<Aws::String>& value) { m_notificationTypesHasBeenSet = true; m_notificationTypes = value; }
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline void SetNotificationTypes(Aws::Vector<Aws::String>&& value) { m_notificationTypesHasBeenSet = true; m_notificationTypes = std::move(value); }
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline PutNotificationConfigurationRequest& WithNotificationTypes(const Aws::Vector<Aws::String>& value) { SetNotificationTypes(value); return *this;}
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline PutNotificationConfigurationRequest& WithNotificationTypes(Aws::Vector<Aws::String>&& value) { SetNotificationTypes(std::move(value)); return *this;}
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline PutNotificationConfigurationRequest& AddNotificationTypes(const Aws::String& value) { m_notificationTypesHasBeenSet = true; m_notificationTypes.push_back(value); return *this; }
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline PutNotificationConfigurationRequest& AddNotificationTypes(Aws::String&& value) { m_notificationTypesHasBeenSet = true; m_notificationTypes.push_back(std::move(value)); return *this; }
/**
* <p>The type of event that causes the notification to be sent. To query the
* notification types supported by Amazon EC2 Auto Scaling, call the
* <a>DescribeAutoScalingNotificationTypes</a> API.</p>
*/
inline PutNotificationConfigurationRequest& AddNotificationTypes(const char* value) { m_notificationTypesHasBeenSet = true; m_notificationTypes.push_back(value); return *this; }
private:
Aws::String m_autoScalingGroupName;
bool m_autoScalingGroupNameHasBeenSet;
Aws::String m_topicARN;
bool m_topicARNHasBeenSet;
Aws::Vector<Aws::String> m_notificationTypes;
bool m_notificationTypesHasBeenSet;
};
} // namespace Model
} // namespace AutoScaling
} // namespace Aws