Class: Aws::RedshiftDataAPIService::Types::SqlParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftDataAPIService::Types::SqlParameter
- Defined in:
- gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb
Overview
Note:
When making an API call, you may pass SqlParameter data as a hash:
{
name: "ParameterName", # required
value: "ParameterValue", # required
}
A parameter used in a SQL statement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the parameter.
-
#value ⇒ String
The value of the parameter.
Instance Attribute Details
#name ⇒ String
The name of the parameter.
1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1251 class SqlParameter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more inforation, see Data types in the Amazon Redshift Database Developer Guide.
1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-redshiftdataapiservice/lib/aws-sdk-redshiftdataapiservice/types.rb', line 1251 class SqlParameter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |