| 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.RDS.Types.OptionSetting
Description
Synopsis
- data OptionSetting = OptionSetting' {}
- newOptionSetting :: OptionSetting
- optionSetting_allowedValues :: Lens' OptionSetting (Maybe Text)
- optionSetting_applyType :: Lens' OptionSetting (Maybe Text)
- optionSetting_dataType :: Lens' OptionSetting (Maybe Text)
- optionSetting_defaultValue :: Lens' OptionSetting (Maybe Text)
- optionSetting_description :: Lens' OptionSetting (Maybe Text)
- optionSetting_isCollection :: Lens' OptionSetting (Maybe Bool)
- optionSetting_isModifiable :: Lens' OptionSetting (Maybe Bool)
- optionSetting_name :: Lens' OptionSetting (Maybe Text)
- optionSetting_value :: Lens' OptionSetting (Maybe Text)
Documentation
data OptionSetting Source #
Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.
See: newOptionSetting smart constructor.
Constructors
| OptionSetting' | |
Fields
| |
Instances
newOptionSetting :: OptionSetting Source #
Create a value of OptionSetting 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:allowedValues:OptionSetting', optionSetting_allowedValues - The allowed values of the option setting.
$sel:applyType:OptionSetting', optionSetting_applyType - The DB engine specific parameter type.
$sel:dataType:OptionSetting', optionSetting_dataType - The data type of the option setting.
$sel:defaultValue:OptionSetting', optionSetting_defaultValue - The default value of the option setting.
$sel:description:OptionSetting', optionSetting_description - The description of the option setting.
$sel:isCollection:OptionSetting', optionSetting_isCollection - Indicates if the option setting is part of a collection.
$sel:isModifiable:OptionSetting', optionSetting_isModifiable - A Boolean value that, when true, indicates the option setting can be
modified from the default.
$sel:name:OptionSetting', optionSetting_name - The name of the option that has settings that you can set.
$sel:value:OptionSetting', optionSetting_value - The current value of the option setting.
optionSetting_allowedValues :: Lens' OptionSetting (Maybe Text) Source #
The allowed values of the option setting.
optionSetting_applyType :: Lens' OptionSetting (Maybe Text) Source #
The DB engine specific parameter type.
optionSetting_dataType :: Lens' OptionSetting (Maybe Text) Source #
The data type of the option setting.
optionSetting_defaultValue :: Lens' OptionSetting (Maybe Text) Source #
The default value of the option setting.
optionSetting_description :: Lens' OptionSetting (Maybe Text) Source #
The description of the option setting.
optionSetting_isCollection :: Lens' OptionSetting (Maybe Bool) Source #
Indicates if the option setting is part of a collection.
optionSetting_isModifiable :: Lens' OptionSetting (Maybe Bool) Source #
A Boolean value that, when true, indicates the option setting can be modified from the default.
optionSetting_name :: Lens' OptionSetting (Maybe Text) Source #
The name of the option that has settings that you can set.
optionSetting_value :: Lens' OptionSetting (Maybe Text) Source #
The current value of the option setting.