You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::QLDBSession::Types::CommitTransactionRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CommitTransactionRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  transaction_id: "TransactionId", # required
  commit_digest: "data", # required
}

Contains the details of the transaction to commit.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#commit_digestString

Specifies the commit digest for the transaction to commit. For every active transaction, the commit digest must be passed. QLDB validates CommitDigest and rejects the commit with an error if the digest computed on the client does not match the digest computed by QLDB.

Returns:

  • (String)

    Specifies the commit digest for the transaction to commit.

#transaction_idString

Specifies the transaction ID of the transaction to commit.

Returns:

  • (String)

    Specifies the transaction ID of the transaction to commit.