73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/qldb/QLDB_EXPORTS.h>
|
|
#include <aws/qldb/model/JournalKinesisStreamDescription.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeJournalKinesisStreamResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>Information about the QLDB journal stream returned by a
|
|
* <code>DescribeJournalS3Export</code> request.</p>
|
|
*/
|
|
inline const JournalKinesisStreamDescription& GetStream() const{ return m_stream; }
|
|
|
|
/**
|
|
* <p>Information about the QLDB journal stream returned by a
|
|
* <code>DescribeJournalS3Export</code> request.</p>
|
|
*/
|
|
inline void SetStream(const JournalKinesisStreamDescription& value) { m_stream = value; }
|
|
|
|
/**
|
|
* <p>Information about the QLDB journal stream returned by a
|
|
* <code>DescribeJournalS3Export</code> request.</p>
|
|
*/
|
|
inline void SetStream(JournalKinesisStreamDescription&& value) { m_stream = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information about the QLDB journal stream returned by a
|
|
* <code>DescribeJournalS3Export</code> request.</p>
|
|
*/
|
|
inline DescribeJournalKinesisStreamResult& WithStream(const JournalKinesisStreamDescription& value) { SetStream(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information about the QLDB journal stream returned by a
|
|
* <code>DescribeJournalS3Export</code> request.</p>
|
|
*/
|
|
inline DescribeJournalKinesisStreamResult& WithStream(JournalKinesisStreamDescription&& value) { SetStream(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
JournalKinesisStreamDescription m_stream;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace QLDB
|
|
} // namespace Aws
|