Module Values.InstanceDetailsSource

Contains information about the details of an instance.

Sourcetype nonrec t = {
  1. availabilityZone : String_.t option;
    (*

    The Availability Zone of the EC2 instance.

    *)
  2. iamInstanceProfile : IamInstanceProfile.t option;
    (*

    The profile information of the EC2 instance.

    *)
  3. imageDescription : String_.t option;
    (*

    The image description of the EC2 instance.

    *)
  4. imageId : String_.t option;
    (*

    The image ID of the EC2 instance.

    *)
  5. instanceId : String_.t option;
    (*

    The ID of the EC2 instance.

    *)
  6. instanceState : String_.t option;
    (*

    The state of the EC2 instance.

    *)
  7. instanceType : String_.t option;
    (*

    The type of the EC2 instance.

    *)
  8. outpostArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. Only applicable to Amazon Web Services Outposts instances.

    *)
  9. launchTime : String_.t option;
    (*

    The launch time of the EC2 instance.

    *)
  10. networkInterfaces : NetworkInterfaces.t option;
    (*

    The elastic network interface information of the EC2 instance.

    *)
  11. platform : String_.t option;
    (*

    The platform of the EC2 instance.

    *)
  12. productCodes : ProductCodes.t option;
    (*

    The product code of the EC2 instance.

    *)
  13. tags : Tags.t option;
    (*

    The tags of the EC2 instance.

    *)
}
Sourceval make : ?availabilityZone:??? -> ?iamInstanceProfile:??? -> ?imageDescription:??? -> ?imageId:??? -> ?instanceId:??? -> ?instanceState:??? -> ?instanceType:??? -> ?outpostArn:??? -> ?launchTime:??? -> ?networkInterfaces:??? -> ?platform:??? -> ?productCodes:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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