/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The structure representing the
* RemoveNotificationChannelRequest.See Also:
AWS
* API Reference
The id of the channel that we want to stop receiving notifications.
*/ inline const Aws::String& GetChannelId() const{ return m_channelId; } /** *The id of the channel that we want to stop receiving notifications.
*/ inline bool ChannelIdHasBeenSet() const { return m_channelIdHasBeenSet; } /** *The id of the channel that we want to stop receiving notifications.
*/ inline void SetChannelId(const Aws::String& value) { m_channelIdHasBeenSet = true; m_channelId = value; } /** *The id of the channel that we want to stop receiving notifications.
*/ inline void SetChannelId(Aws::String&& value) { m_channelIdHasBeenSet = true; m_channelId = std::move(value); } /** *The id of the channel that we want to stop receiving notifications.
*/ inline void SetChannelId(const char* value) { m_channelIdHasBeenSet = true; m_channelId.assign(value); } /** *The id of the channel that we want to stop receiving notifications.
*/ inline RemoveNotificationChannelRequest& WithChannelId(const Aws::String& value) { SetChannelId(value); return *this;} /** *The id of the channel that we want to stop receiving notifications.
*/ inline RemoveNotificationChannelRequest& WithChannelId(Aws::String&& value) { SetChannelId(std::move(value)); return *this;} /** *The id of the channel that we want to stop receiving notifications.
*/ inline RemoveNotificationChannelRequest& WithChannelId(const char* value) { SetChannelId(value); return *this;} /** *The name of the profiling group we want to change notification configuration * for.
*/ inline const Aws::String& GetProfilingGroupName() const{ return m_profilingGroupName; } /** *The name of the profiling group we want to change notification configuration * for.
*/ inline bool ProfilingGroupNameHasBeenSet() const { return m_profilingGroupNameHasBeenSet; } /** *The name of the profiling group we want to change notification configuration * for.
*/ inline void SetProfilingGroupName(const Aws::String& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = value; } /** *The name of the profiling group we want to change notification configuration * for.
*/ inline void SetProfilingGroupName(Aws::String&& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = std::move(value); } /** *The name of the profiling group we want to change notification configuration * for.
*/ inline void SetProfilingGroupName(const char* value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName.assign(value); } /** *The name of the profiling group we want to change notification configuration * for.
*/ inline RemoveNotificationChannelRequest& WithProfilingGroupName(const Aws::String& value) { SetProfilingGroupName(value); return *this;} /** *The name of the profiling group we want to change notification configuration * for.
*/ inline RemoveNotificationChannelRequest& WithProfilingGroupName(Aws::String&& value) { SetProfilingGroupName(std::move(value)); return *this;} /** *The name of the profiling group we want to change notification configuration * for.
*/ inline RemoveNotificationChannelRequest& WithProfilingGroupName(const char* value) { SetProfilingGroupName(value); return *this;} private: Aws::String m_channelId; bool m_channelIdHasBeenSet = false; Aws::String m_profilingGroupName; bool m_profilingGroupNameHasBeenSet = false; }; } // namespace Model } // namespace CodeGuruProfiler } // namespace Aws