Class: Aws::DynamoDB::Types::ParameterizedStatement

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#parametersArray<Types::AttributeValue>

The parameter values.

Returns:



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

#statementString

A PartiQL statment that uses parameters.

Returns:

  • (String)


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