Method: Aws::RDSDataService::Types::BatchExecuteStatementRequest#transaction_id

Defined in:
lib/aws-sdk-rdsdataservice/types.rb

#transaction_idString

The identifier of a transaction that was started by using the ‘BeginTransaction` operation. Specify the transaction ID of the transaction that you want to include the SQL statement in.

If the SQL statement is not part of a transaction, don’t set this parameter.

Returns:

  • (String)


153
154
155
156
157
158
159
160
161
162
163
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 153

class BatchExecuteStatementRequest < Struct.new(
  :resource_arn,
  :secret_arn,
  :sql,
  :database,
  :schema,
  :parameter_sets,
  :transaction_id)
  SENSITIVE = []
  include Aws::Structure
end