Module Values.VpcConfigurationSource

The Amazon VPC configuration that specifies the network settings for a Prometheus collector to securely connect to Amazon MSK clusters. This configuration includes the security groups and subnets that control network access and placement for the collector.

Sourcetype nonrec t = {
  1. securityGroupIds : SecurityGroupIds.t;
    (*

    The security group IDs that control network access for the Prometheus collector. These security groups must allow the collector to communicate with your Amazon MSK cluster on the required ports.

    *)
  2. subnetIds : SubnetIds.t;
    (*

    The subnet IDs where the Prometheus collector will be deployed. The subnets must be in the same Amazon VPC as your Amazon MSK cluster and have network connectivity to the cluster.

    *)
}
Sourceval context_ : string
Sourceval make : securityGroupIds:SecurityGroupIds.t -> subnetIds:SubnetIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SecurityGroupId.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