package aws-ec2

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.NatGatewaySource

Sourcetype 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;
}
Sourceval make : ?create_time:??? -> ?delete_time:??? -> ?failure_code:??? -> ?failure_message:??? -> ?nat_gateway_addresses:??? -> ?nat_gateway_id:??? -> ?provisioned_bandwidth:??? -> ?state:??? -> ?subnet_id:??? -> ?vpc_id:??? -> ?tags:??? -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t