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 Parameter = Parameter' {}
- newParameter :: Parameter
- parameter_lastModifiedDate :: Lens' Parameter (Maybe UTCTime)
- parameter_selector :: Lens' Parameter (Maybe Text)
- parameter_arn :: Lens' Parameter (Maybe Text)
- parameter_value :: Lens' Parameter (Maybe Text)
- parameter_sourceResult :: Lens' Parameter (Maybe Text)
- parameter_name :: Lens' Parameter (Maybe Text)
- parameter_version :: Lens' Parameter (Maybe Integer)
- parameter_type :: Lens' Parameter (Maybe ParameterType)
- parameter_dataType :: Lens' Parameter (Maybe Text)
Documentation
An Amazon Web Services Systems Manager parameter in Parameter Store.
See: newParameter
smart constructor.
Parameter' | |
|
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:lastModifiedDate:Parameter'
, parameter_lastModifiedDate
- Date the parameter was last changed or updated and the parameter version
was created.
$sel:selector:Parameter'
, parameter_selector
- Either the version number or the label used to retrieve the parameter
value. Specify selectors by using one of the following formats:
parameter_name:version
parameter_name:label
$sel:arn:Parameter'
, parameter_arn
- The Amazon Resource Name (ARN) of the parameter.
$sel:value:Parameter'
, parameter_value
- The parameter value.
$sel:sourceResult:Parameter'
, parameter_sourceResult
- Applies to parameters that reference information in other Amazon Web
Services services. SourceResult
is the raw result or response from the
source.
$sel:name:Parameter'
, parameter_name
- The name of the parameter.
$sel:version:Parameter'
, parameter_version
- The parameter version.
$sel:type':Parameter'
, parameter_type
- The type of parameter. Valid values include the following: String
,
StringList
, and SecureString
.
$sel:dataType:Parameter'
, parameter_dataType
- The data type of the parameter, such as text
or aws:ec2:image
. The
default is text
.
parameter_lastModifiedDate :: Lens' Parameter (Maybe UTCTime) Source #
Date the parameter was last changed or updated and the parameter version was created.
parameter_selector :: Lens' Parameter (Maybe Text) Source #
Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:
parameter_name:version
parameter_name:label
parameter_arn :: Lens' Parameter (Maybe Text) Source #
The Amazon Resource Name (ARN) of the parameter.
parameter_sourceResult :: Lens' Parameter (Maybe Text) Source #
Applies to parameters that reference information in other Amazon Web
Services services. SourceResult
is the raw result or response from the
source.
parameter_type :: Lens' Parameter (Maybe ParameterType) Source #
The type of parameter. Valid values include the following: String
,
StringList
, and SecureString
.