Class: Aws::RDSDataService::Types::SqlParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDSDataService::Types::SqlParameter
- Defined in:
- gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb
Overview
A parameter used in a SQL statement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the parameter.
-
#type_hint ⇒ String
A hint that specifies the correct object type for data type mapping.
-
#value ⇒ Types::Field
The value of the parameter.
Instance Attribute Details
#name ⇒ String
The name of the parameter.
949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 949 class SqlParameter < Struct.new( :name, :value, :type_hint) SENSITIVE = [] include Aws::Structure end |
#type_hint ⇒ String
A hint that specifies the correct object type for data type mapping. Possible values are as follows:
DATE- The correspondingStringparameter value is sent as an object ofDATEtype to the database. The accepted format isYYYY-MM-DD.DECIMAL- The correspondingStringparameter value is sent as an object ofDECIMALtype to the database.JSON- The correspondingStringparameter value is sent as an object ofJSONtype to the database.TIME- The correspondingStringparameter value is sent as an object ofTIMEtype to the database. The accepted format isHH:MM:SS[.FFF].TIMESTAMP- The correspondingStringparameter value is sent as an object ofTIMESTAMPtype to the database. The accepted format isYYYY-MM-DD HH:MM:SS[.FFF].UUID- The correspondingStringparameter value is sent as an object ofUUIDtype to the database.
949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 949 class SqlParameter < Struct.new( :name, :value, :type_hint) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::Field
The value of the parameter.
949 950 951 952 953 954 955 |
# File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 949 class SqlParameter < Struct.new( :name, :value, :type_hint) SENSITIVE = [] include Aws::Structure end |