libZSservicesZSamazonka-ssmZSamazonka-ssm
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SSM.Types.Parameter

Description

 
Synopsis

Documentation

data Parameter Source #

An Amazon Web Services Systems Manager parameter in Parameter Store.

See: newParameter smart constructor.

Constructors

Parameter' 

Fields

  • lastModifiedDate :: Maybe POSIX

    Date the parameter was last changed or updated and the parameter version was created.

  • selector :: Maybe Text

    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

  • arn :: Maybe Text

    The Amazon Resource Name (ARN) of the parameter.

  • value :: Maybe (Sensitive Text)

    The parameter value.

  • sourceResult :: Maybe Text

    Applies to parameters that reference information in other Amazon Web Services services. SourceResult is the raw result or response from the source.

  • name :: Maybe Text

    The name of the parameter.

  • version :: Maybe Integer

    The parameter version.

  • type' :: Maybe ParameterType

    The type of parameter. Valid values include the following: String, StringList, and SecureString.

  • dataType :: Maybe Text

    The data type of the parameter, such as text or aws:ec2:image. The default is text.

Instances

Instances details
Eq Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

Show Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

Generic Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

Associated Types

type Rep Parameter :: Type -> Type #

NFData Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

Methods

rnf :: Parameter -> () #

Hashable Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

FromJSON Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

type Rep Parameter Source # 
Instance details

Defined in Amazonka.SSM.Types.Parameter

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_value :: Lens' Parameter (Maybe Text) Source #

The parameter value.

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_name :: Lens' Parameter (Maybe Text) Source #

The name of the parameter.

parameter_type :: Lens' Parameter (Maybe ParameterType) Source #

The type of parameter. Valid values include the following: String, StringList, and SecureString.

parameter_dataType :: Lens' Parameter (Maybe Text) Source #

The data type of the parameter, such as text or aws:ec2:image. The default is text.