Class: Aws::QLDBSession::Types::ExecuteStatementRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDBSession::Types::ExecuteStatementRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldbsession/types.rb
Overview
Specifies a request to execute a statement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameters ⇒ Array<Types::ValueHolder>
Specifies the parameters for the parameterized statement in the request.
-
#statement ⇒ String
Specifies the statement of the request.
-
#transaction_id ⇒ String
Specifies the transaction ID of the request.
Instance Attribute Details
#parameters ⇒ Array<Types::ValueHolder>
Specifies the parameters for the parameterized statement in the request.
163 164 165 166 167 168 169 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 163 class ExecuteStatementRequest < Struct.new( :transaction_id, :statement, :parameters) SENSITIVE = [] include Aws::Structure end |
#statement ⇒ String
Specifies the statement of the request.
163 164 165 166 167 168 169 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 163 class ExecuteStatementRequest < Struct.new( :transaction_id, :statement, :parameters) SENSITIVE = [] include Aws::Structure end |
#transaction_id ⇒ String
Specifies the transaction ID of the request.
163 164 165 166 167 168 169 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 163 class ExecuteStatementRequest < Struct.new( :transaction_id, :statement, :parameters) SENSITIVE = [] include Aws::Structure end |