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 DocumentParameter = DocumentParameter' {}
- newDocumentParameter :: DocumentParameter
- documentParameter_name :: Lens' DocumentParameter (Maybe Text)
- documentParameter_defaultValue :: Lens' DocumentParameter (Maybe Text)
- documentParameter_type :: Lens' DocumentParameter (Maybe DocumentParameterType)
- documentParameter_description :: Lens' DocumentParameter (Maybe Text)
Documentation
data DocumentParameter Source #
Parameters specified in a System Manager document that run on the server when the command is run.
See: newDocumentParameter
smart constructor.
DocumentParameter' | |
|
Instances
newDocumentParameter :: DocumentParameter Source #
Create a value of DocumentParameter
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:DocumentParameter'
, documentParameter_name
- The name of the parameter.
$sel:defaultValue:DocumentParameter'
, documentParameter_defaultValue
- If specified, the default values for the parameters. Parameters without
a default value are required. Parameters with a default value are
optional.
$sel:type':DocumentParameter'
, documentParameter_type
- The type of parameter. The type can be either String or StringList.
$sel:description:DocumentParameter'
, documentParameter_description
- A description of what the parameter does, how to use it, the default
value, and whether or not the parameter is optional.
documentParameter_name :: Lens' DocumentParameter (Maybe Text) Source #
The name of the parameter.
documentParameter_defaultValue :: Lens' DocumentParameter (Maybe Text) Source #
If specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional.
documentParameter_type :: Lens' DocumentParameter (Maybe DocumentParameterType) Source #
The type of parameter. The type can be either String or StringList.
documentParameter_description :: Lens' DocumentParameter (Maybe Text) Source #
A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.