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 |
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.
InstanceIdentity' | |
|
Instances
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.