package aws-ec2

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

Module Types.RouteTableAssociationSource

Sourcetype t = {
  1. main : Aws.BaseTypes.Boolean.t option;
  2. route_table_association_id : Aws.BaseTypes.String.t option;
  3. route_table_id : Aws.BaseTypes.String.t option;
  4. subnet_id : Aws.BaseTypes.String.t option;
  5. gateway_id : Aws.BaseTypes.String.t option;
  6. association_state : RouteTableAssociationState.t option;
}
Sourceval make : ?main:??? -> ?route_table_association_id:??? -> ?route_table_id:??? -> ?subnet_id:??? -> ?gateway_id:??? -> ?association_state:??? -> 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