Module Values.AwsEc2InstanceMetadataOptionsSource

Metadata options that allow you to configure and secure the Amazon EC2 instance.

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

    Enables or disables the HTTP metadata endpoint on the instance.

    *)
  2. httpProtocolIpv6 : NonEmptyString.t option;
    (*

    Enables or disables the IPv6 endpoint for the instance metadata service.

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

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

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

    The state of token usage for your instance metadata requests.

    *)
  5. instanceMetadataTags : NonEmptyString.t option;
    (*

    Specifies whether to allow access to instance tags from the instance metadata.

    *)
}
Sourceval make : ?httpEndpoint:??? -> ?httpProtocolIpv6:??? -> ?httpPutResponseHopLimit:??? -> ?httpTokens:??? -> ?instanceMetadataTags:??? -> 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