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 |
Documentation
data ControlInputParameter Source #
A list of parameters for a control. A control can have zero, one, or
more than one parameter. An example of a control with two parameters is:
"backup plan frequency is at least daily
and the retention period is
at least 1 year
". The first parameter is daily
. The second
parameter is 1 year
.
See: newControlInputParameter
smart constructor.
ControlInputParameter' | |
|
Instances
newControlInputParameter :: ControlInputParameter Source #
Create a value of ControlInputParameter
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:parameterValue:ControlInputParameter'
, controlInputParameter_parameterValue
- The value of parameter, for example, hourly
.
$sel:parameterName:ControlInputParameter'
, controlInputParameter_parameterName
- The name of a parameter, for example, BackupPlanFrequency
.
controlInputParameter_parameterValue :: Lens' ControlInputParameter (Maybe Text) Source #
The value of parameter, for example, hourly
.
controlInputParameter_parameterName :: Lens' ControlInputParameter (Maybe Text) Source #
The name of a parameter, for example, BackupPlanFrequency
.