Module Values.CreateDomainAssociationRequestSource

The request structure for the create domain association request.

Sourcetype nonrec t = {
  1. appId : AppId.t;
    (*

    The unique ID for an Amplify app.

    *)
  2. domainName : DomainName.t;
    (*

    The domain name for the domain association.

    *)
  3. enableAutoSubDomain : EnableAutoSubDomain.t option;
    (*

    Enables the automated creation of subdomains for branches.

    *)
  4. subDomainSettings : SubDomainSettings.t;
    (*

    The setting for the subdomain.

    *)
  5. autoSubDomainCreationPatterns : AutoSubDomainCreationPatterns.t option;
    (*

    Sets the branch patterns for automatic subdomain creation.

    *)
  6. autoSubDomainIAMRole : AutoSubDomainIAMRole.t option;
    (*

    The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for automatically creating subdomains.

    *)
  7. certificateSettings : CertificateSettings.t option;
    (*

    The type of SSL/TLS certificate to use for your custom domain. If you don't specify a certificate type, Amplify uses the default certificate that it provisions and manages for you.

    *)
}
Sourceval context_ : string
Sourceval make : ?enableAutoSubDomain:??? -> ?autoSubDomainCreationPatterns:??? -> ?autoSubDomainIAMRole:??? -> ?certificateSettings:??? -> appId:AppId.t -> domainName:DomainName.t -> subDomainSettings:SubDomainSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of EnableAutoSubDomain.t | `List of [> `String of AutoSubDomainCreationPattern.t | `Structure of (string * [> `String of DomainPrefix.t ]) list ] list | `String of AppId.t | `Structure of (string * [> `Enum of string | `String of CertificateArn.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