Module Values.VpcConfigOutputSource

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. vpcId : VpcId.t option;
    (*

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

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

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

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

    The IDs of the security groups for this canary.

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

    Indicates whether this canary allows outbound IPv6 traffic if it is connected to dual-stack subnets.

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