Interface InstanceIdentity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InstanceIdentity.Builder,InstanceIdentity>,SdkBuilder<InstanceIdentity.Builder,InstanceIdentity>,SdkPojo
- Enclosing class:
- InstanceIdentity
public static interface InstanceIdentity.Builder extends SdkPojo, CopyableBuilder<InstanceIdentity.Builder,InstanceIdentity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InstanceIdentity.Builderdocument(String 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.Buildersignature(String signature)A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
document
InstanceIdentity.Builder document(String 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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signature
InstanceIdentity.Builder signature(String signature)
A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.
- Parameters:
signature- A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-