Module Values.SelfManagedKafkaAccessConfigurationVpcSource

This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.

Sourcetype nonrec t = {
  1. subnets : SubnetIds.t option;
    (*

    Specifies the subnets associated with the stream. These subnets must all be in the same VPC. You can specify as many as 16 subnets.

    *)
  2. securityGroup : SecurityGroupIds.t option;
    (*

    Specifies the security groups associated with the stream. These security groups must all be in the same VPC. You can specify as many as five security groups.

    *)
}
Sourceval make : ?subnets:??? -> ?securityGroup:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.t ] list ]) 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