amazonka-datapipeline-2.0: Amazon Data Pipeline SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

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

  • 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.

  • signature :: Maybe Text

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

Instances

Instances details
ToJSON 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 #

Read InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Show InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

NFData InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Methods

rnf :: InstanceIdentity -> () #

Eq InstanceIdentity Source # 
Instance details

Defined in Amazonka.DataPipeline.Types.InstanceIdentity

Hashable 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" "amazonka-datapipeline-2.0-1cySuAk2jmdDRpZSxMUuos" 'False) (C1 ('MetaCons "InstanceIdentity'" 'PrefixI 'True) (S1 ('MetaSel ('Just "document") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "signature") '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: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.

$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.

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.

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.