Interface InstanceMetadataOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InstanceMetadataOptions.Builder,InstanceMetadataOptions>,SdkBuilder<InstanceMetadataOptions.Builder,InstanceMetadataOptions>,SdkPojo
- Enclosing class:
- InstanceMetadataOptions
public static interface InstanceMetadataOptions.Builder extends SdkPojo, CopyableBuilder<InstanceMetadataOptions.Builder,InstanceMetadataOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InstanceMetadataOptions.BuilderhttpPutResponseHopLimit(Integer httpPutResponseHopLimit)Limit the number of hops that an instance metadata request can traverse to reach its destination.InstanceMetadataOptions.BuilderhttpTokens(String httpTokens)Indicates whether a signed token header is required for instance metadata retrieval requests.-
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, sdkFields
-
-
-
-
Method Detail
-
httpTokens
InstanceMetadataOptions.Builder httpTokens(String httpTokens)
Indicates whether a signed token header is required for instance metadata retrieval requests. The values affect the response as follows:
-
required – When you retrieve the IAM role credentials, version 2.0 credentials are returned in all cases.
-
optional – You can include a signed token header in your request to retrieve instance metadata, or you can leave it out. If you include it, version 2.0 credentials are returned for the IAM role. Otherwise, version 1.0 credentials are returned.
The default setting is optional.
- Parameters:
httpTokens- Indicates whether a signed token header is required for instance metadata retrieval requests. The values affect the response as follows:-
required – When you retrieve the IAM role credentials, version 2.0 credentials are returned in all cases.
-
optional – You can include a signed token header in your request to retrieve instance metadata, or you can leave it out. If you include it, version 2.0 credentials are returned for the IAM role. Otherwise, version 1.0 credentials are returned.
The default setting is optional.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
httpPutResponseHopLimit
InstanceMetadataOptions.Builder httpPutResponseHopLimit(Integer httpPutResponseHopLimit)
Limit the number of hops that an instance metadata request can traverse to reach its destination. The default is one hop. However, if HTTP tokens are required, container image builds need a minimum of two hops.
- Parameters:
httpPutResponseHopLimit- Limit the number of hops that an instance metadata request can traverse to reach its destination. The default is one hop. However, if HTTP tokens are required, container image builds need a minimum of two hops.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-