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 ComponentParameterDetail = ComponentParameterDetail' {
- defaultValue :: Maybe [Text]
- description :: Maybe Text
- name :: Text
- type' :: Text
- newComponentParameterDetail :: Text -> Text -> ComponentParameterDetail
- componentParameterDetail_defaultValue :: Lens' ComponentParameterDetail (Maybe [Text])
- componentParameterDetail_description :: Lens' ComponentParameterDetail (Maybe Text)
- componentParameterDetail_name :: Lens' ComponentParameterDetail Text
- componentParameterDetail_type :: Lens' ComponentParameterDetail Text
Documentation
data ComponentParameterDetail Source #
Defines a parameter that is used to provide configuration details for the component.
See: newComponentParameterDetail
smart constructor.
ComponentParameterDetail' | |
|
Instances
newComponentParameterDetail Source #
:: Text | |
-> Text | |
-> ComponentParameterDetail |
Create a value of ComponentParameterDetail
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:defaultValue:ComponentParameterDetail'
, componentParameterDetail_defaultValue
- The default value of this parameter if no input is provided.
$sel:description:ComponentParameterDetail'
, componentParameterDetail_description
- Describes this parameter.
$sel:name:ComponentParameterDetail'
, componentParameterDetail_name
- The name of this input parameter.
$sel:type':ComponentParameterDetail'
, componentParameterDetail_type
- The type of input this parameter provides. The currently supported value
is "string".
componentParameterDetail_defaultValue :: Lens' ComponentParameterDetail (Maybe [Text]) Source #
The default value of this parameter if no input is provided.
componentParameterDetail_description :: Lens' ComponentParameterDetail (Maybe Text) Source #
Describes this parameter.
componentParameterDetail_name :: Lens' ComponentParameterDetail Text Source #
The name of this input parameter.
componentParameterDetail_type :: Lens' ComponentParameterDetail Text Source #
The type of input this parameter provides. The currently supported value is "string".