Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data SqlParameter = SqlParameter' {}
- newSqlParameter :: Text -> Text -> SqlParameter
- sqlParameter_name :: Lens' SqlParameter Text
- sqlParameter_value :: Lens' SqlParameter Text
Documentation
data SqlParameter Source #
A parameter used in a SQL statement.
See: newSqlParameter
smart constructor.
SqlParameter' | |
|
Instances
Create a value of SqlParameter
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:name:SqlParameter'
, sqlParameter_name
- The name of the parameter.
$sel:value:SqlParameter'
, sqlParameter_value
- 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.
sqlParameter_name :: Lens' SqlParameter Text Source #
The name of the parameter.
sqlParameter_value :: Lens' SqlParameter Text Source #
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.