Class: Aws::Imagebuilder::Types::InstanceMetadataOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::InstanceMetadataOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-imagebuilder/types.rb
Overview
The instance metadata options that apply to the HTTP requests that pipeline builds use to launch EC2 build and test instances. For more information about instance metadata options, see [Configure the instance metadata options] in the Amazon EC2 User Guide for Linux instances, or [Configure the instance metadata options] in the Amazon EC2 Windows Guide for Windows instances.
[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html [2]: docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#http_put_response_hop_limit ⇒ Integer
Limit the number of hops that an instance metadata request can traverse to reach its destination.
-
#http_tokens ⇒ String
Indicates whether a signed token header is required for instance metadata retrieval requests.
Instance Attribute Details
#http_put_response_hop_limit ⇒ Integer
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.
4711 4712 4713 4714 4715 4716 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 4711 class InstanceMetadataOptions < Struct.new( :http_tokens, :http_put_response_hop_limit) SENSITIVE = [] include Aws::Structure end |
#http_tokens ⇒ String
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.
4711 4712 4713 4714 4715 4716 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 4711 class InstanceMetadataOptions < Struct.new( :http_tokens, :http_put_response_hop_limit) SENSITIVE = [] include Aws::Structure end |