libZSservicesZSamazonka-datapipelineZSamazonka-datapipeline
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.DataPipeline.Types.InstanceIdentity

Description

 
Synopsis

Documentation

data InstanceIdentity Source #

Identity information for the EC2 instance that is hosting the task runner. You can get this value by calling a metadata URI from the EC2 instance. For more information, see Instance Metadata in the Amazon Elastic Compute Cloud User Guide. Passing in this value proves that your task runner is running on an EC2 instance, and ensures the proper AWS Data Pipeline service charges are applied to your pipeline.

See: newInstanceIdentity smart constructor.

Constructors

InstanceIdentity' 

Fields

  • signature :: Maybe Text

    A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.

  • document :: Maybe Text

    A description of an EC2 instance that is generated when the instance is launched and exposed to the instance via the instance metadata service in the form of a JSON representation of an object.

Instances

Instances details
Eq InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Read InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Show InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Generic InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Associated Types

type Rep InstanceIdentity :: Type -> Type #

NFData InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Methods

rnf :: InstanceIdentity -> () #

Hashable InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

ToJSON InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

type Rep InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

type Rep InstanceIdentity = D1 ('MetaData "InstanceIdentity" "Amazonka.DataPipeline.Types.InstanceIdentity" "libZSservicesZSamazonka-datapipelineZSamazonka-datapipeline" 'False) (C1 ('MetaCons "InstanceIdentity'" 'PrefixI 'True) (S1 ('MetaSel ('Just "signature") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "document") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newInstanceIdentity :: InstanceIdentity Source #

Create a value of InstanceIdentity 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:signature:InstanceIdentity', instanceIdentity_signature - A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.

$sel:document:InstanceIdentity', instanceIdentity_document - A description of an EC2 instance that is generated when the instance is launched and exposed to the instance via the instance metadata service in the form of a JSON representation of an object.

instanceIdentity_signature :: Lens' InstanceIdentity (Maybe Text) Source #

A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.

instanceIdentity_document :: Lens' InstanceIdentity (Maybe Text) Source #

A description of an EC2 instance that is generated when the instance is launched and exposed to the instance via the instance metadata service in the form of a JSON representation of an object.