Interface CfnLaunchConfiguration.MetadataOptionsProperty

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

@Stability(Stable) public static interface CfnLaunchConfiguration.MetadataOptionsProperty extends software.amazon.jsii.JsiiSerializable
MetadataOptions is a property of AWS::AutoScaling::LaunchConfiguration that describes metadata options for the instances.

For more information, see Configure the instance metadata options in the Amazon EC2 Auto Scaling User Guide .

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.autoscaling.*;
 MetadataOptionsProperty metadataOptionsProperty = MetadataOptionsProperty.builder()
         .httpEndpoint("httpEndpoint")
         .httpPutResponseHopLimit(123)
         .httpTokens("httpTokens")
         .build();
 

See Also: