| 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.Parameter
Description
Synopsis
- data Parameter = Parameter' {
- allowedValues :: Maybe Text
- applyMethod :: Maybe ApplyMethod
- applyType :: Maybe Text
- dataType :: Maybe Text
- description :: Maybe Text
- isModifiable :: Maybe Bool
- minimumEngineVersion :: Maybe Text
- parameterName :: Maybe Text
- parameterValue :: Maybe Text
- source :: Maybe Text
- supportedEngineModes :: Maybe [Text]
- newParameter :: Parameter
- parameter_allowedValues :: Lens' Parameter (Maybe Text)
- parameter_applyMethod :: Lens' Parameter (Maybe ApplyMethod)
- parameter_applyType :: Lens' Parameter (Maybe Text)
- parameter_dataType :: Lens' Parameter (Maybe Text)
- parameter_description :: Lens' Parameter (Maybe Text)
- parameter_isModifiable :: Lens' Parameter (Maybe Bool)
- parameter_minimumEngineVersion :: Lens' Parameter (Maybe Text)
- parameter_parameterName :: Lens' Parameter (Maybe Text)
- parameter_parameterValue :: Lens' Parameter (Maybe Text)
- parameter_source :: Lens' Parameter (Maybe Text)
- parameter_supportedEngineModes :: Lens' Parameter (Maybe [Text])
Documentation
This data type is used as a request parameter in the
ModifyDBParameterGroup and ResetDBParameterGroup actions.
This data type is used as a response element in the
DescribeEngineDefaultParameters and DescribeDBParameters actions.
See: newParameter smart constructor.
Constructors
| Parameter' | |
Fields
| |
Instances
newParameter :: Parameter Source #
Create a value of Parameter 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:Parameter', parameter_allowedValues - Specifies the valid range of values for the parameter.
$sel:applyMethod:Parameter', parameter_applyMethod - Indicates when to apply parameter updates.
$sel:applyType:Parameter', parameter_applyType - Specifies the engine specific parameters type.
$sel:dataType:Parameter', parameter_dataType - Specifies the valid data type for the parameter.
$sel:description:Parameter', parameter_description - Provides a description of the parameter.
$sel:isModifiable:Parameter', parameter_isModifiable - Indicates whether (true) or not (false) the parameter can be
modified. Some parameters have security or operational implications that
prevent them from being changed.
$sel:minimumEngineVersion:Parameter', parameter_minimumEngineVersion - The earliest engine version to which the parameter can apply.
$sel:parameterName:Parameter', parameter_parameterName - Specifies the name of the parameter.
$sel:parameterValue:Parameter', parameter_parameterValue - Specifies the value of the parameter.
$sel:source:Parameter', parameter_source - Indicates the source of the parameter value.
$sel:supportedEngineModes:Parameter', parameter_supportedEngineModes - The valid DB engine modes.
parameter_allowedValues :: Lens' Parameter (Maybe Text) Source #
Specifies the valid range of values for the parameter.
parameter_applyMethod :: Lens' Parameter (Maybe ApplyMethod) Source #
Indicates when to apply parameter updates.
parameter_applyType :: Lens' Parameter (Maybe Text) Source #
Specifies the engine specific parameters type.
parameter_dataType :: Lens' Parameter (Maybe Text) Source #
Specifies the valid data type for the parameter.
parameter_description :: Lens' Parameter (Maybe Text) Source #
Provides a description of the parameter.
parameter_isModifiable :: Lens' Parameter (Maybe Bool) Source #
Indicates whether (true) or not (false) the parameter can be
modified. Some parameters have security or operational implications that
prevent them from being changed.
parameter_minimumEngineVersion :: Lens' Parameter (Maybe Text) Source #
The earliest engine version to which the parameter can apply.
parameter_parameterName :: Lens' Parameter (Maybe Text) Source #
Specifies the name of the parameter.
parameter_parameterValue :: Lens' Parameter (Maybe Text) Source #
Specifies the value of the parameter.