Class: Aws::QLDBSession::Types::ExecuteStatementRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDBSession::Types::ExecuteStatementRequest
- Defined in:
- gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb
Overview
Note:
When making an API call, you may pass ExecuteStatementRequest data as a hash:
{
transaction_id: "TransactionId", # required
statement: "Statement", # required
parameters: [
{
ion_binary: "data",
ion_text: "IonText",
},
],
}
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.
185 186 187 188 189 190 191 |
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 185 class ExecuteStatementRequest < Struct.new( :transaction_id, :statement, :parameters) SENSITIVE = [] include Aws::Structure end |
#statement ⇒ String
Specifies the statement of the request.
185 186 187 188 189 190 191 |
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 185 class ExecuteStatementRequest < Struct.new( :transaction_id, :statement, :parameters) SENSITIVE = [] include Aws::Structure end |
#transaction_id ⇒ String
Specifies the transaction ID of the request.
185 186 187 188 189 190 191 |
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 185 class ExecuteStatementRequest < Struct.new( :transaction_id, :statement, :parameters) SENSITIVE = [] include Aws::Structure end |