Module Values.VpcConfigInputSource

If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC.

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

    The IDs of the subnets where this canary is to run.

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

    The IDs of the security groups for this canary.

    *)
  3. ipv6AllowedForDualStack : NullableBoolean.t option;
    (*

    Set this to true to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets. The default is false

    *)
}
Sourceval make : ?subnetIds:??? -> ?securityGroupIds:??? -> ?ipv6AllowedForDualStack:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `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