/** * 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 StreamJournalToKinesisResult { public: StreamJournalToKinesisResult(); StreamJournalToKinesisResult(const Aws::AmazonWebServiceResult& result); StreamJournalToKinesisResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline const Aws::String& GetStreamId() const{ return m_streamId; } /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline void SetStreamId(const Aws::String& value) { m_streamId = value; } /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline void SetStreamId(Aws::String&& value) { m_streamId = std::move(value); } /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline void SetStreamId(const char* value) { m_streamId.assign(value); } /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline StreamJournalToKinesisResult& WithStreamId(const Aws::String& value) { SetStreamId(value); return *this;} /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline StreamJournalToKinesisResult& WithStreamId(Aws::String&& value) { SetStreamId(std::move(value)); return *this;} /** *

The unique ID that QLDB assigns to each QLDB journal stream.

*/ inline StreamJournalToKinesisResult& WithStreamId(const char* value) { SetStreamId(value); return *this;} private: Aws::String m_streamId; }; } // namespace Model } // namespace QLDB } // namespace Aws