| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Glue.Types.DatabaseInput
Description
Synopsis
- data DatabaseInput = DatabaseInput' {}
- newDatabaseInput :: Text -> DatabaseInput
- databaseInput_createTableDefaultPermissions :: Lens' DatabaseInput (Maybe [PrincipalPermissions])
- databaseInput_description :: Lens' DatabaseInput (Maybe Text)
- databaseInput_locationUri :: Lens' DatabaseInput (Maybe Text)
- databaseInput_parameters :: Lens' DatabaseInput (Maybe (HashMap Text Text))
- databaseInput_targetDatabase :: Lens' DatabaseInput (Maybe DatabaseIdentifier)
- databaseInput_name :: Lens' DatabaseInput Text
Documentation
data DatabaseInput Source #
The structure used to create or update a database.
See: newDatabaseInput smart constructor.
Constructors
| DatabaseInput' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> DatabaseInput |
Create a value of DatabaseInput 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:createTableDefaultPermissions:DatabaseInput', databaseInput_createTableDefaultPermissions - Creates a set of default permissions on the table for principals.
$sel:description:DatabaseInput', databaseInput_description - A description of the database.
$sel:locationUri:DatabaseInput', databaseInput_locationUri - The location of the database (for example, an HDFS path).
$sel:parameters:DatabaseInput', databaseInput_parameters - These key-value pairs define parameters and properties of the database.
These key-value pairs define parameters and properties of the database.
$sel:targetDatabase:DatabaseInput', databaseInput_targetDatabase - A DatabaseIdentifier structure that describes a target database for
resource linking.
$sel:name:DatabaseInput', databaseInput_name - The name of the database. For Hive compatibility, this is folded to
lowercase when it is stored.
databaseInput_createTableDefaultPermissions :: Lens' DatabaseInput (Maybe [PrincipalPermissions]) Source #
Creates a set of default permissions on the table for principals.
databaseInput_description :: Lens' DatabaseInput (Maybe Text) Source #
A description of the database.
databaseInput_locationUri :: Lens' DatabaseInput (Maybe Text) Source #
The location of the database (for example, an HDFS path).
databaseInput_parameters :: Lens' DatabaseInput (Maybe (HashMap Text Text)) Source #
These key-value pairs define parameters and properties of the database.
These key-value pairs define parameters and properties of the database.
databaseInput_targetDatabase :: Lens' DatabaseInput (Maybe DatabaseIdentifier) Source #
A DatabaseIdentifier structure that describes a target database for
resource linking.
databaseInput_name :: Lens' DatabaseInput Text Source #
The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.