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

Class: Aws::QLDBSession::Types::ExecuteStatementRequest

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

Overview

Note:

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

{
  transaction_id: "TransactionId", # required
  statement: "Statement", # required
  parameters: [
    {
      ion_binary: "data",
      ion_text: "IonText",
    },
  ],
}

Specifies a request to execute a statement.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#parametersArray<Types::ValueHolder>

Specifies the parameters for the parameterized statement in the request.

Returns:

  • (Array<Types::ValueHolder>)

    Specifies the parameters for the parameterized statement in the request.

#statementString

Specifies the statement of the request.

Returns:

  • (String)

    Specifies the statement of the request.

#transaction_idString

Specifies the transaction ID of the request.

Returns:

  • (String)

    Specifies the transaction ID of the request.