Module MSK.VpcConnection

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-vpcconnection.html

type properties = {
  1. security_groups : string list;
  2. target_cluster_arn : string;
  3. client_subnets : string list;
  4. vpc_id : string;
  5. authentication : string;
  6. tags : string Stdlib__Map.Make(Stdlib.String).t option;
}

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

val make_properties : security_groups:string list -> target_cluster_arn:string -> client_subnets:string list -> vpc_id:string -> authentication:string -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string