Module Values.CreateVpcConnectionRequestSource

Creates a new MSK VPC connection.

Sourcetype nonrec t = {
  1. targetClusterArn : string;
    (*

    The cluster Amazon Resource Name (ARN) for the VPC connection.

    *)
  2. authentication : string;
    (*

    The authentication type of VPC connection.

    *)
  3. vpcId : string;
    (*

    The VPC ID of VPC connection.

    *)
  4. clientSubnets : string list;
    (*

    The list of client subnets.

    *)
  5. securityGroups : string list;
    (*

    The list of security groups.

    *)
  6. tags : (string * string) list option;
    (*

    A map of tags for the VPC connection.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> targetClusterArn:string -> authentication:string -> vpcId:string -> clientSubnets:string list -> securityGroups:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t