/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace CodeGuruProfiler { namespace Model { /** *

The structure representing the AddNotificationChannelsRequest.

See * Also:

AWS * API Reference

*/ class AddNotificationChannelsRequest : public CodeGuruProfilerRequest { public: AWS_CODEGURUPROFILER_API AddNotificationChannelsRequest(); // 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 "AddNotificationChannels"; } AWS_CODEGURUPROFILER_API Aws::String SerializePayload() const override; /** *

One or 2 channels to report to when anomalies are detected.

*/ inline const Aws::Vector& GetChannels() const{ return m_channels; } /** *

One or 2 channels to report to when anomalies are detected.

*/ inline bool ChannelsHasBeenSet() const { return m_channelsHasBeenSet; } /** *

One or 2 channels to report to when anomalies are detected.

*/ inline void SetChannels(const Aws::Vector& value) { m_channelsHasBeenSet = true; m_channels = value; } /** *

One or 2 channels to report to when anomalies are detected.

*/ inline void SetChannels(Aws::Vector&& value) { m_channelsHasBeenSet = true; m_channels = std::move(value); } /** *

One or 2 channels to report to when anomalies are detected.

*/ inline AddNotificationChannelsRequest& WithChannels(const Aws::Vector& value) { SetChannels(value); return *this;} /** *

One or 2 channels to report to when anomalies are detected.

*/ inline AddNotificationChannelsRequest& WithChannels(Aws::Vector&& value) { SetChannels(std::move(value)); return *this;} /** *

One or 2 channels to report to when anomalies are detected.

*/ inline AddNotificationChannelsRequest& AddChannels(const Channel& value) { m_channelsHasBeenSet = true; m_channels.push_back(value); return *this; } /** *

One or 2 channels to report to when anomalies are detected.

*/ inline AddNotificationChannelsRequest& AddChannels(Channel&& value) { m_channelsHasBeenSet = true; m_channels.push_back(std::move(value)); return *this; } /** *

The name of the profiling group that we are setting up notifications for.

*/ inline const Aws::String& GetProfilingGroupName() const{ return m_profilingGroupName; } /** *

The name of the profiling group that we are setting up notifications for.

*/ inline bool ProfilingGroupNameHasBeenSet() const { return m_profilingGroupNameHasBeenSet; } /** *

The name of the profiling group that we are setting up notifications for.

*/ inline void SetProfilingGroupName(const Aws::String& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = value; } /** *

The name of the profiling group that we are setting up notifications for.

*/ inline void SetProfilingGroupName(Aws::String&& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = std::move(value); } /** *

The name of the profiling group that we are setting up notifications for.

*/ inline void SetProfilingGroupName(const char* value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName.assign(value); } /** *

The name of the profiling group that we are setting up notifications for.

*/ inline AddNotificationChannelsRequest& WithProfilingGroupName(const Aws::String& value) { SetProfilingGroupName(value); return *this;} /** *

The name of the profiling group that we are setting up notifications for.

*/ inline AddNotificationChannelsRequest& WithProfilingGroupName(Aws::String&& value) { SetProfilingGroupName(std::move(value)); return *this;} /** *

The name of the profiling group that we are setting up notifications for.

*/ inline AddNotificationChannelsRequest& WithProfilingGroupName(const char* value) { SetProfilingGroupName(value); return *this;} private: Aws::Vector m_channels; bool m_channelsHasBeenSet = false; Aws::String m_profilingGroupName; bool m_profilingGroupNameHasBeenSet = false; }; } // namespace Model } // namespace CodeGuruProfiler } // namespace Aws