Module Values.AwsAutoScalingLaunchConfigurationMetadataOptionsSource

The metadata options for the instances.

Sourcetype nonrec t = {
  1. httpEndpoint : NonEmptyString.t option;
    (*

    Enables or disables the HTTP metadata endpoint on your instances. By default, the metadata endpoint is enabled.

    *)
  2. httpPutResponseHopLimit : Integer.t option;
    (*

    The HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.

    *)
  3. httpTokens : NonEmptyString.t option;
    (*

    Indicates whether token usage is required or optional for metadata requests. By default, token usage is optional.

    *)
}
Sourceval make : ?httpEndpoint:??? -> ?httpPutResponseHopLimit:??? -> ?httpTokens:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t