/** * 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 DescribeDeliveryChannelStatus action.

See * Also:

AWS * API Reference

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

A list that contains the status of a specified delivery channel.

*/ inline const Aws::Vector& GetDeliveryChannelsStatus() const{ return m_deliveryChannelsStatus; } /** *

A list that contains the status of a specified delivery channel.

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

A list that contains the status of a specified delivery channel.

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

A list that contains the status of a specified delivery channel.

*/ inline DescribeDeliveryChannelStatusResult& WithDeliveryChannelsStatus(const Aws::Vector& value) { SetDeliveryChannelsStatus(value); return *this;} /** *

A list that contains the status of a specified delivery channel.

*/ inline DescribeDeliveryChannelStatusResult& WithDeliveryChannelsStatus(Aws::Vector&& value) { SetDeliveryChannelsStatus(std::move(value)); return *this;} /** *

A list that contains the status of a specified delivery channel.

*/ inline DescribeDeliveryChannelStatusResult& AddDeliveryChannelsStatus(const DeliveryChannelStatus& value) { m_deliveryChannelsStatus.push_back(value); return *this; } /** *

A list that contains the status of a specified delivery channel.

*/ inline DescribeDeliveryChannelStatusResult& AddDeliveryChannelsStatus(DeliveryChannelStatus&& value) { m_deliveryChannelsStatus.push_back(std::move(value)); return *this; } private: Aws::Vector m_deliveryChannelsStatus; }; } // namespace Model } // namespace ConfigService } // namespace Aws