package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. availability_zone : Aws.BaseTypes.String.t option;
  2. affinity : Aws.BaseTypes.String.t option;
  3. group_name : Aws.BaseTypes.String.t option;
  4. host_id : Aws.BaseTypes.String.t option;
  5. tenancy : Tenancy.t option;
  6. spread_domain : Aws.BaseTypes.String.t option;
  7. host_resource_group_arn : Aws.BaseTypes.String.t option;
  8. partition_number : Aws.BaseTypes.Integer.t option;
}
val make : ?availability_zone:Aws.BaseTypes.String.t -> ?affinity:Aws.BaseTypes.String.t -> ?group_name:Aws.BaseTypes.String.t -> ?host_id:Aws.BaseTypes.String.t -> ?tenancy:Tenancy.t -> ?spread_domain:Aws.BaseTypes.String.t -> ?host_resource_group_arn:Aws.BaseTypes.String.t -> ?partition_number:Aws.BaseTypes.Integer.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t