/** *

The domain name configuration.

*/ export interface _DomainNameConfiguration { /** *

A domain name for the WebSocket API.

*/ ApiGatewayDomainName?: string; /** *

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.

*/ CertificateArn?: string; /** *

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

*/ CertificateName?: string; /** *

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

*/ CertificateUploadDate?: Date | string | number; /** *

The endpoint type.

*/ EndpointType?: "REGIONAL" | "EDGE" | string; /** *

The Amazon Route 53 Hosted Zone ID of the endpoint.

*/ HostedZoneId?: string; /** *

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.

*/ SecurityPolicy?: "TLS_1_0" | "TLS_1_2" | string; /** *

The status of the domain name migration. The valid values are AVAILABLE and UPDATING. 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.

*/ DomainNameStatus?: "AVAILABLE" | "UPDATING" | string; /** *

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

*/ DomainNameStatusMessage?: string; } export interface _UnmarshalledDomainNameConfiguration extends _DomainNameConfiguration { /** *

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

*/ CertificateUploadDate?: Date; }