Module Values.CustomizationsSource

Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.

Sourcetype nonrec t = {
  1. webAcl : WebAclCustomization.t option;
    (*

    The WAF web ACL.

    *)
  2. certificate : Certificate.t option;
    (*

    The Certificate Manager (ACM) certificate.

    *)
  3. geoRestrictions : GeoRestrictionCustomization.t option;
    (*

    The geographic restrictions.

    *)
}
Sourceval make : ?webAcl:??? -> ?certificate:??? -> ?geoRestrictions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) 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