/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ConfigService { namespace Model { /** *

The output for the DescribeDeliveryChannels action.

See * Also:

AWS * API Reference

*/ class AWS_CONFIGSERVICE_API DescribeDeliveryChannelsResult { public: DescribeDeliveryChannelsResult(); DescribeDeliveryChannelsResult(const Aws::AmazonWebServiceResult& result); DescribeDeliveryChannelsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline const Aws::Vector& GetDeliveryChannels() const{ return m_deliveryChannels; } /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline void SetDeliveryChannels(const Aws::Vector& value) { m_deliveryChannels = value; } /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline void SetDeliveryChannels(Aws::Vector&& value) { m_deliveryChannels = std::move(value); } /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline DescribeDeliveryChannelsResult& WithDeliveryChannels(const Aws::Vector& value) { SetDeliveryChannels(value); return *this;} /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline DescribeDeliveryChannelsResult& WithDeliveryChannels(Aws::Vector&& value) { SetDeliveryChannels(std::move(value)); return *this;} /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline DescribeDeliveryChannelsResult& AddDeliveryChannels(const DeliveryChannel& value) { m_deliveryChannels.push_back(value); return *this; } /** *

A list that contains the descriptions of the specified delivery channel.

*/ inline DescribeDeliveryChannelsResult& AddDeliveryChannels(DeliveryChannel&& value) { m_deliveryChannels.push_back(std::move(value)); return *this; } private: Aws::Vector m_deliveryChannels; }; } // namespace Model } // namespace ConfigService } // namespace Aws