Module Values.UpdateConnectionGroupRequestSource

Updates a connection group.

Sourcetype nonrec t = {
  1. id : String_.t;
    (*

    The ID of the connection group.

    *)
  2. ipv6Enabled : Boolean.t option;
    (*

    Enable IPv6 for the connection group. For more information, see Enable IPv6 in the Amazon CloudFront Developer Guide.

    *)
  3. ifMatch : String_.t;
    (*

    The value of the ETag header that you received when retrieving the connection group that you're updating.

    *)
  4. anycastIpListId : String_.t option;
    (*

    The ID of the Anycast static IP list.

    *)
  5. enabled : Boolean.t option;
    (*

    Whether the connection group is enabled.

    *)
}
Sourceval context_ : string
Sourceval make : ?ipv6Enabled:??? -> ?anycastIpListId:??? -> ?enabled:??? -> id:String_.t -> ifMatch:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.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