Method: Aws::RDSDataService::Types::BatchExecuteStatementRequest#parameter_sets
- Defined in:
- lib/aws-sdk-rdsdataservice/types.rb
#parameter_sets ⇒ Array<Array<Types::SqlParameter>>
The parameter set for the batch operation.
The SQL statement is executed as many times as the number of parameter sets provided. To execute a SQL statement with no parameters, use one of the following options:
-
Specify one or more empty parameter sets.
-
Use the ‘ExecuteStatement` operation instead of the `BatchExecuteStatement` operation.
<note markdown=“1”> Array parameters are not supported.
</note>
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 |