/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the general settings and status of all channels
* for an application, including channels that aren't enabled for the
* application.See Also:
AWS
* API Reference
A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline const Aws::MapA map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline bool ChannelsHasBeenSet() const { return m_channelsHasBeenSet; } /** *A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline void SetChannels(const Aws::MapA map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline void SetChannels(Aws::MapA map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& WithChannels(const Aws::MapA map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& WithChannels(Aws::MapA map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& AddChannels(const Aws::String& key, const ChannelResponse& value) { m_channelsHasBeenSet = true; m_channels.emplace(key, value); return *this; } /** *A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& AddChannels(Aws::String&& key, const ChannelResponse& value) { m_channelsHasBeenSet = true; m_channels.emplace(std::move(key), value); return *this; } /** *A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& AddChannels(const Aws::String& key, ChannelResponse&& value) { m_channelsHasBeenSet = true; m_channels.emplace(key, std::move(value)); return *this; } /** *A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& AddChannels(Aws::String&& key, ChannelResponse&& value) { m_channelsHasBeenSet = true; m_channels.emplace(std::move(key), std::move(value)); return *this; } /** *A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& AddChannels(const char* key, ChannelResponse&& value) { m_channelsHasBeenSet = true; m_channels.emplace(key, std::move(value)); return *this; } /** *A map that contains a multipart response for each channel. For each item in * this object, the ChannelType is the key and the Channel is the value.
*/ inline ChannelsResponse& AddChannels(const char* key, const ChannelResponse& value) { m_channelsHasBeenSet = true; m_channels.emplace(key, value); return *this; } private: Aws::Map