This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-qldb/include/aws/qldb/model/StreamJournalToKinesisResult.h

78 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/core/utils/memory/stl/AWSString.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 StreamJournalToKinesisResult
{
public:
StreamJournalToKinesisResult();
StreamJournalToKinesisResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
StreamJournalToKinesisResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline const Aws::String& GetStreamId() const{ return m_streamId; }
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline void SetStreamId(const Aws::String& value) { m_streamId = value; }
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline void SetStreamId(Aws::String&& value) { m_streamId = std::move(value); }
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline void SetStreamId(const char* value) { m_streamId.assign(value); }
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline StreamJournalToKinesisResult& WithStreamId(const Aws::String& value) { SetStreamId(value); return *this;}
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline StreamJournalToKinesisResult& WithStreamId(Aws::String&& value) { SetStreamId(std::move(value)); return *this;}
/**
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
*/
inline StreamJournalToKinesisResult& WithStreamId(const char* value) { SetStreamId(value); return *this;}
private:
Aws::String m_streamId;
};
} // namespace Model
} // namespace QLDB
} // namespace Aws