Module EC2.TransitGatewayPeeringAttachment

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

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

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

and peering_attachment_status = {
  1. message : string option;
  2. code : string option;
}

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

type properties = {
  1. transit_gateway_id : string;
  2. peer_transit_gateway_id : string;
  3. peer_account_id : string;
  4. peer_region : string;
  5. tags : tag list option;
}

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

val make_properties : transit_gateway_id:string -> peer_transit_gateway_id:string -> peer_account_id:string -> peer_region:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_peering_attachment_status : ?message:string -> ?code:string -> unit -> peering_attachment_status
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_peering_attachment_status : peering_attachment_status -> [> `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. state : string;
  3. creation_time : string;
  4. status__message : string;
  5. status__code : string;
  6. transit_gateway_attachment_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string