package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. create_time : Aws.BaseTypes.DateTime.t option;
  2. delete_time : Aws.BaseTypes.DateTime.t option;
  3. failure_code : Aws.BaseTypes.String.t option;
  4. failure_message : Aws.BaseTypes.String.t option;
  5. nat_gateway_addresses : NatGatewayAddressList.t;
  6. nat_gateway_id : Aws.BaseTypes.String.t option;
  7. provisioned_bandwidth : ProvisionedBandwidth.t option;
  8. state : NatGatewayState.t option;
  9. subnet_id : Aws.BaseTypes.String.t option;
  10. vpc_id : Aws.BaseTypes.String.t option;
  11. tags : TagList.t;
}
val make : ?create_time:Aws.BaseTypes.DateTime.t -> ?delete_time:Aws.BaseTypes.DateTime.t -> ?failure_code:Aws.BaseTypes.String.t -> ?failure_message:Aws.BaseTypes.String.t -> ?nat_gateway_addresses:NatGatewayAddressList.t -> ?nat_gateway_id:Aws.BaseTypes.String.t -> ?provisioned_bandwidth:ProvisionedBandwidth.t -> ?state:NatGatewayState.t -> ?subnet_id:Aws.BaseTypes.String.t -> ?vpc_id:Aws.BaseTypes.String.t -> ?tags:TagList.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