Module EC2.TransitGatewayConnect

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnect.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and transit_gateway_connect_options = {
  1. protocol : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnect-transitgatewayconnectoptions.html

type properties = {
  1. options : transit_gateway_connect_options;
  2. transport_transit_gateway_attachment_id : string;
  3. tags : tag list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnect.html;

val make_properties : options:transit_gateway_connect_options -> transport_transit_gateway_attachment_id:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_transit_gateway_connect_options : ?protocol:string -> unit -> transit_gateway_connect_options
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_transit_gateway_connect_options : transit_gateway_connect_options -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. transit_gateway_id : string;
  3. state : string;
  4. creation_time : string;
  5. transit_gateway_attachment_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string