78 lines
2.2 KiB
C++
78 lines
2.2 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 CancelJournalKinesisStreamResult
|
|
{
|
|
public:
|
|
CancelJournalKinesisStreamResult();
|
|
CancelJournalKinesisStreamResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
CancelJournalKinesisStreamResult& 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 CancelJournalKinesisStreamResult& WithStreamId(const Aws::String& value) { SetStreamId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
|
|
*/
|
|
inline CancelJournalKinesisStreamResult& WithStreamId(Aws::String&& value) { SetStreamId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique ID that QLDB assigns to each QLDB journal stream.</p>
|
|
*/
|
|
inline CancelJournalKinesisStreamResult& WithStreamId(const char* value) { SetStreamId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_streamId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace QLDB
|
|
} // namespace Aws
|