Module Values_2.InstanceImageMetadataSource

Information about the instance and the AMI used to launch the instance.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t option;
    (*

    The ID of the instance.

    *)
  2. instanceType : Values_0.InstanceType.t option;
    (*

    The instance type.

    *)
  3. launchTime : Values_0.MillisecondDateTime.t option;
    (*

    The time the instance was launched.

    *)
  4. availabilityZone : Values_0.String_.t option;
    (*

    The Availability Zone or Local Zone of the instance.

    *)
  5. zoneId : Values_0.String_.t option;
    (*

    The ID of the Availability Zone or Local Zone of the instance.

    *)
  6. state : Values_0.InstanceState.t option;
    (*

    The current state of the instance.

    *)
  7. ownerId : Values_0.String_.t option;
    (*

    The ID of the Amazon Web Services account that owns the instance.

    *)
  8. tags : Values_0.TagList.t option;
    (*

    Any tags assigned to the instance.

    *)
  9. imageMetadata : Values_1.ImageMetadata.t option;
    (*

    Information about the AMI used to launch the instance.

    *)
  10. operator : Values_0.OperatorResponse.t option;
    (*

    The entity that manages the instance.

    *)
}
Sourceval make : ?instanceId:??? -> ?instanceType:??? -> ?launchTime:??? -> ?availabilityZone:??? -> ?zoneId:??? -> ?state:??? -> ?ownerId:??? -> ?tags:??? -> ?imageMetadata:??? -> ?operator:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.InstanceId.t | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of int | `String of Values_0.ImageId.t ]) list | `Timestamp of Values_0.MillisecondDateTime.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