Module Values.CreateConnectionGroupRequestSource

Creates a connection group.

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

    The name of the connection group. Enter a friendly identifier that is unique within your Amazon Web Services account. This name can't be updated after you create the connection group.

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

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

    *)
  3. tags : Tags.t option;
  4. anycastIpListId : String_.t option;
    (*

    The ID of the Anycast static IP list.

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

    Enable the connection group.

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