Module Values.ConnectionGroupSource

The connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant.

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. createdTime : Timestamp.t option;
    (*

    The date and time when the connection group was created.

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

    The date and time when the connection group was updated.

    *)
  6. tags : Tags.t option;
  7. ipv6Enabled : Boolean.t option;
    (*

    IPv6 is enabled for the connection group.

    *)
  8. 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.

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

    The ID of the Anycast static IP list.

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

    The status of the connection group.

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

    Whether the connection group is enabled.

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

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

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?tags:??? -> ?ipv6Enabled:??? -> ?routingEndpoint:??? -> ?anycastIpListId:??? -> ?status:??? -> ?enabled:??? -> ?isDefault:??? -> 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 | `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