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-session/include/aws/qldb-session/model/CommitTransactionRequest.h

143 lines
5.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/qldb-session/QLDBSession_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/Array.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace QLDBSession
{
namespace Model
{
/**
* <p>Contains the details of the transaction to commit.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/qldb-session-2019-07-11/CommitTransactionRequest">AWS
* API Reference</a></p>
*/
class AWS_QLDBSESSION_API CommitTransactionRequest
{
public:
CommitTransactionRequest();
CommitTransactionRequest(Aws::Utils::Json::JsonView jsonValue);
CommitTransactionRequest& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline const Aws::String& GetTransactionId() const{ return m_transactionId; }
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline bool TransactionIdHasBeenSet() const { return m_transactionIdHasBeenSet; }
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline void SetTransactionId(const Aws::String& value) { m_transactionIdHasBeenSet = true; m_transactionId = value; }
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline void SetTransactionId(Aws::String&& value) { m_transactionIdHasBeenSet = true; m_transactionId = std::move(value); }
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline void SetTransactionId(const char* value) { m_transactionIdHasBeenSet = true; m_transactionId.assign(value); }
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline CommitTransactionRequest& WithTransactionId(const Aws::String& value) { SetTransactionId(value); return *this;}
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline CommitTransactionRequest& WithTransactionId(Aws::String&& value) { SetTransactionId(std::move(value)); return *this;}
/**
* <p>Specifies the transaction ID of the transaction to commit.</p>
*/
inline CommitTransactionRequest& WithTransactionId(const char* value) { SetTransactionId(value); return *this;}
/**
* <p>Specifies the commit digest for the transaction to commit. For every active
* transaction, the commit digest must be passed. QLDB validates
* <code>CommitDigest</code> and rejects the commit with an error if the digest
* computed on the client does not match the digest computed by QLDB.</p>
*/
inline const Aws::Utils::ByteBuffer& GetCommitDigest() const{ return m_commitDigest; }
/**
* <p>Specifies the commit digest for the transaction to commit. For every active
* transaction, the commit digest must be passed. QLDB validates
* <code>CommitDigest</code> and rejects the commit with an error if the digest
* computed on the client does not match the digest computed by QLDB.</p>
*/
inline bool CommitDigestHasBeenSet() const { return m_commitDigestHasBeenSet; }
/**
* <p>Specifies the commit digest for the transaction to commit. For every active
* transaction, the commit digest must be passed. QLDB validates
* <code>CommitDigest</code> and rejects the commit with an error if the digest
* computed on the client does not match the digest computed by QLDB.</p>
*/
inline void SetCommitDigest(const Aws::Utils::ByteBuffer& value) { m_commitDigestHasBeenSet = true; m_commitDigest = value; }
/**
* <p>Specifies the commit digest for the transaction to commit. For every active
* transaction, the commit digest must be passed. QLDB validates
* <code>CommitDigest</code> and rejects the commit with an error if the digest
* computed on the client does not match the digest computed by QLDB.</p>
*/
inline void SetCommitDigest(Aws::Utils::ByteBuffer&& value) { m_commitDigestHasBeenSet = true; m_commitDigest = std::move(value); }
/**
* <p>Specifies the commit digest for the transaction to commit. For every active
* transaction, the commit digest must be passed. QLDB validates
* <code>CommitDigest</code> and rejects the commit with an error if the digest
* computed on the client does not match the digest computed by QLDB.</p>
*/
inline CommitTransactionRequest& WithCommitDigest(const Aws::Utils::ByteBuffer& value) { SetCommitDigest(value); return *this;}
/**
* <p>Specifies the commit digest for the transaction to commit. For every active
* transaction, the commit digest must be passed. QLDB validates
* <code>CommitDigest</code> and rejects the commit with an error if the digest
* computed on the client does not match the digest computed by QLDB.</p>
*/
inline CommitTransactionRequest& WithCommitDigest(Aws::Utils::ByteBuffer&& value) { SetCommitDigest(std::move(value)); return *this;}
private:
Aws::String m_transactionId;
bool m_transactionIdHasBeenSet;
Aws::Utils::ByteBuffer m_commitDigest;
bool m_commitDigestHasBeenSet;
};
} // namespace Model
} // namespace QLDBSession
} // namespace Aws