Module Values.CreateDistributionTenantRequestSource

Creates a distribution tenant.

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

    The ID of the multi-tenant distribution to use for creating the distribution tenant.

    *)
  2. name : CreateDistributionTenantRequestNameString.t;
    (*

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

    *)
  3. domains : DomainList.t;
    (*

    The domains associated with the distribution tenant. You must specify at least one domain in the request.

    *)
  4. tags : Tags.t option;
  5. customizations : Customizations.t option;
    (*

    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.

    *)
  6. parameters : Parameters.t option;
    (*

    A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.

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

    The ID of the connection group to associate with the distribution tenant.

    *)
  8. managedCertificateRequest : ManagedCertificateRequest.t option;
    (*

    The configuration for the CloudFront managed ACM certificate request.

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

    Indicates whether the distribution tenant should be enabled when created. If the distribution tenant is disabled, the distribution tenant won't serve traffic.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> ?customizations:??? -> ?parameters:??? -> ?connectionGroupId:??? -> ?managedCertificateRequest:??? -> ?enabled:??? -> distributionId:String_.t -> name:CreateDistributionTenantRequestNameString.t -> domains:DomainList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) 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