Interface CfnInfrastructureConfiguration.InstanceMetadataOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInfrastructureConfiguration.InstanceMetadataOptionsProperty.Jsii$Proxy
Enclosing class:
CfnInfrastructureConfiguration

@Stability(Stable) public static interface CfnInfrastructureConfiguration.InstanceMetadataOptionsProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.imagebuilder.*;
 InstanceMetadataOptionsProperty instanceMetadataOptionsProperty = InstanceMetadataOptionsProperty.builder()
         .httpPutResponseHopLimit(123)
         .httpTokens("httpTokens")
         .build();
 

See Also: