Package version:

Interface CustomDomainConfiguration

Configuration properties for apps environment custom domain

interface CustomDomainConfiguration {
    certificateKeyVaultProperties?: CertificateKeyVaultProperties;
    certificatePassword?: string;
    certificateValue?: Uint8Array;
    customDomainVerificationId?: string;
    dnsSuffix?: string;
    expirationDate?: Date;
    subjectName?: string;
    thumbprint?: string;
}

Properties

certificateKeyVaultProperties?: CertificateKeyVaultProperties

Certificate stored in Azure Key Vault.

certificatePassword?: string

Certificate password

certificateValue?: Uint8Array

PFX or PEM blob

customDomainVerificationId?: string

Id used to verify domain name ownership NOTE: This property will not be serialized. It can only be populated by the server.

dnsSuffix?: string

Dns suffix for the environment domain

expirationDate?: Date

Certificate expiration date. NOTE: This property will not be serialized. It can only be populated by the server.

subjectName?: string

Subject name of the certificate. NOTE: This property will not be serialized. It can only be populated by the server.

thumbprint?: string

Certificate thumbprint. NOTE: This property will not be serialized. It can only be populated by the server.