/** * 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 QLDB { namespace Model { class AWS_QLDB_API DescribeJournalKinesisStreamResult { public: DescribeJournalKinesisStreamResult(); DescribeJournalKinesisStreamResult(const Aws::AmazonWebServiceResult& result); DescribeJournalKinesisStreamResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the QLDB journal stream returned by a * DescribeJournalS3Export request.

*/ inline const JournalKinesisStreamDescription& GetStream() const{ return m_stream; } /** *

Information about the QLDB journal stream returned by a * DescribeJournalS3Export request.

*/ inline void SetStream(const JournalKinesisStreamDescription& value) { m_stream = value; } /** *

Information about the QLDB journal stream returned by a * DescribeJournalS3Export request.

*/ inline void SetStream(JournalKinesisStreamDescription&& value) { m_stream = std::move(value); } /** *

Information about the QLDB journal stream returned by a * DescribeJournalS3Export request.

*/ inline DescribeJournalKinesisStreamResult& WithStream(const JournalKinesisStreamDescription& value) { SetStream(value); return *this;} /** *

Information about the QLDB journal stream returned by a * DescribeJournalS3Export request.

*/ inline DescribeJournalKinesisStreamResult& WithStream(JournalKinesisStreamDescription&& value) { SetStream(std::move(value)); return *this;} private: JournalKinesisStreamDescription m_stream; }; } // namespace Model } // namespace QLDB } // namespace Aws