Module Types.NatGateway
type t={create_time : Aws.BaseTypes.DateTime.t option;delete_time : Aws.BaseTypes.DateTime.t option;failure_code : Aws.BaseTypes.String.t option;failure_message : Aws.BaseTypes.String.t option;nat_gateway_addresses : NatGatewayAddressList.t;nat_gateway_id : Aws.BaseTypes.String.t option;provisioned_bandwidth : ProvisionedBandwidth.t option;state : NatGatewayState.t option;subnet_id : Aws.BaseTypes.String.t option;vpc_id : Aws.BaseTypes.String.t option;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 -> tval parse : Ezxmlm.nodes -> t optionval to_query : t -> Aws.Query.tval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]val of_json : Aws.Json.t -> t