/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Firehose { namespace Model { class AWS_FIREHOSE_API DescribeDeliveryStreamResult { public: DescribeDeliveryStreamResult(); DescribeDeliveryStreamResult(const Aws::AmazonWebServiceResult& result); DescribeDeliveryStreamResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the delivery stream.

*/ inline const DeliveryStreamDescription& GetDeliveryStreamDescription() const{ return m_deliveryStreamDescription; } /** *

Information about the delivery stream.

*/ inline void SetDeliveryStreamDescription(const DeliveryStreamDescription& value) { m_deliveryStreamDescription = value; } /** *

Information about the delivery stream.

*/ inline void SetDeliveryStreamDescription(DeliveryStreamDescription&& value) { m_deliveryStreamDescription = std::move(value); } /** *

Information about the delivery stream.

*/ inline DescribeDeliveryStreamResult& WithDeliveryStreamDescription(const DeliveryStreamDescription& value) { SetDeliveryStreamDescription(value); return *this;} /** *

Information about the delivery stream.

*/ inline DescribeDeliveryStreamResult& WithDeliveryStreamDescription(DeliveryStreamDescription&& value) { SetDeliveryStreamDescription(std::move(value)); return *this;} private: DeliveryStreamDescription m_deliveryStreamDescription; }; } // namespace Model } // namespace Firehose } // namespace Aws