Module Values.ConnectionGroupSummarySource

A summary that contains details about your connection groups.

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

    The ID of the connection group.

    *)
  2. name : String_.t option;
    (*

    The name of the connection group.

    *)
  3. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the connection group.

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

    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.

    *)
  5. createdTime : Timestamp.t option;
    (*

    The date and time when the connection group was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The date and time when the connection group was updated.

    *)
  7. eTag : String_.t option;
    (*

    The current version of the connection group.

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

    The ID of the Anycast static IP list.

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

    Whether the connection group is enabled

    *)
  10. status : String_.t option;
    (*

    The status of the connection group.

    *)
  11. isDefault : Boolean.t option;
    (*

    Whether the connection group is the default connection group for the distribution tenants.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?routingEndpoint:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?eTag:??? -> ?anycastIpListId:??? -> ?enabled:??? -> ?status:??? -> ?isDefault:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Timestamp of Timestamp.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