Module Values.DomainNameConfigurationSource

The domain name configuration.

Sourcetype nonrec t = {
  1. apiGatewayDomainName : string option;
    (*

    A domain name for the API.

    *)
  2. certificateArn : Arn.t option;
    (*

    An AWS-managed certificate that will be used by the edge-optimized endpoint for this domain name. AWS Certificate Manager is the only supported source.

    *)
  3. certificateName : StringWithLengthBetween1And128.t option;
    (*

    The user-friendly name of the certificate that will be used by the edge-optimized endpoint for this domain name.

    *)
  4. certificateUploadDate : string option;
    (*

    The timestamp when the certificate that was used by edge-optimized endpoint for this domain name was uploaded.

    *)
  5. domainNameStatus : DomainNameStatus.t option;
    (*

    The status of the domain name migration. The valid values are AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, and PENDING_OWNERSHIP_VERIFICATION. If the status is UPDATING, the domain cannot be modified further until the existing operation is complete. If it is AVAILABLE, the domain can be updated.

    *)
  6. domainNameStatusMessage : string option;
    (*

    An optional text message containing detailed information about status of the domain name migration.

    *)
  7. endpointType : EndpointType.t option;
    (*

    The endpoint type.

    *)
  8. hostedZoneId : string option;
    (*

    The Amazon Route 53 Hosted Zone ID of the endpoint.

    *)
  9. ipAddressType : IpAddressType.t option;
    (*

    The IP address types that can invoke the domain name. Use ipv4 to allow only IPv4 addresses to invoke your domain name, or use dualstack to allow both IPv4 and IPv6 addresses to invoke your domain name.

    *)
  10. securityPolicy : SecurityPolicy.t option;
    (*

    The Transport Layer Security (TLS) version of the security policy for this domain name. The valid values are TLS_1_0 and TLS_1_2.

    *)
  11. ownershipVerificationCertificateArn : Arn.t option;
    (*

    The ARN of the public certificate issued by ACM to validate ownership of your custom domain. Only required when configuring mutual TLS and using an ACM imported or private CA certificate ARN as the regionalCertificateArn

    *)
}
Sourceval make : ?apiGatewayDomainName:??? -> ?certificateArn:??? -> ?certificateName:??? -> ?certificateUploadDate:??? -> ?domainNameStatus:??? -> ?domainNameStatusMessage:??? -> ?endpointType:??? -> ?hostedZoneId:??? -> ?ipAddressType:??? -> ?securityPolicy:??? -> ?ownershipVerificationCertificateArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Timestamp of string ]) 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