Class: Aws::DynamoDB::Types::ParameterizedStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ParameterizedStatement
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Represents a PartiQL statment that uses parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameters ⇒ Array<Types::AttributeValue>
The parameter values.
-
#statement ⇒ String
A PartiQL statment that uses parameters.
Instance Attribute Details
#parameters ⇒ Array<Types::AttributeValue>
The parameter values.
5411 5412 5413 5414 5415 5416 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 5411 class ParameterizedStatement < Struct.new( :statement, :parameters) SENSITIVE = [] include Aws::Structure end |
#statement ⇒ String
A PartiQL statment that uses parameters.
5411 5412 5413 5414 5415 5416 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 5411 class ParameterizedStatement < Struct.new( :statement, :parameters) SENSITIVE = [] include Aws::Structure end |