/** * 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 Firehose { namespace Model { class DescribeDeliveryStreamResult { public: AWS_FIREHOSE_API DescribeDeliveryStreamResult(); AWS_FIREHOSE_API DescribeDeliveryStreamResult(const Aws::AmazonWebServiceResult& result); AWS_FIREHOSE_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeDeliveryStreamResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeDeliveryStreamResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeDeliveryStreamResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DeliveryStreamDescription m_deliveryStreamDescription; Aws::String m_requestId; }; } // namespace Model } // namespace Firehose } // namespace Aws