Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DomainName

import type { DomainName } from "https://aws-api.deno.dev/v0.3/services/apigateway.ts?docs=full";

Represents a custom domain name as a user-friendly host name of an API ("RestApi").

When you deploy an API, API Gateway creates a default host name for the API. This default API host name is of the {restapi-id}.execute-api.{region}.amazonaws.com format. With the default host name, you can access the API's root resource with the URL of https://{restapi-id}.execute-api.{region}.amazonaws.com/{stage}/. When you set up a custom domain name of apis.example.com for this API, you can then access the same resource using the URL of the https://apis.examples.com/myApi, where myApi is the base path mapping ("BasePathMapping") of your API under the custom domain name.

See also: Set a Custom Host Name for an API

interface DomainName {
certificateArn?: string | null;
certificateName?: string | null;
certificateUploadDate?: Date | number | null;
distributionDomainName?: string | null;
distributionHostedZoneId?: string | null;
domainName?: string | null;
domainNameStatus?: DomainNameStatus | null;
domainNameStatusMessage?: string | null;
endpointConfiguration?: EndpointConfiguration | null;
mutualTlsAuthentication?: MutualTlsAuthentication | null;
ownershipVerificationCertificateArn?: string | null;
regionalCertificateArn?: string | null;
regionalCertificateName?: string | null;
regionalDomainName?: string | null;
regionalHostedZoneId?: string | null;
securityPolicy?: SecurityPolicy | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
certificateArn?: string | null
[src]

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

§
certificateName?: string | null
[src]

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

§
certificateUploadDate?: Date | number | null
[src]

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

§
distributionDomainName?: string | null
[src]

The domain name of the Amazon CloudFront distribution associated with this custom domain name for an edge-optimized endpoint. You set up this association when adding a DNS record pointing the custom domain name to this distribution name. For more information about CloudFront distributions, see the Amazon CloudFront documentation.

§
distributionHostedZoneId?: string | null
[src]

The region-agnostic Amazon Route 53 Hosted Zone ID of the edge-optimized endpoint. The valid value is Z2FDTNDATAQYW2 for all the regions. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.

§
domainName?: string | null
[src]

The custom domain name as an API host name, for example, my-api.example.com.

§
domainNameStatus?: DomainNameStatus | null
[src]

The status of the "DomainName" 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.

§
domainNameStatusMessage?: string | null
[src]

An optional text message containing detailed information about status of the "DomainName" migration.

§
endpointConfiguration?: EndpointConfiguration | null
[src]

The endpoint configuration of this "DomainName" showing the endpoint types of the domain name.

§
mutualTlsAuthentication?: MutualTlsAuthentication | null
[src]

The mutual TLS authentication configuration for a custom domain name. If specified, API Gateway performs two-way authentication between the client and the server. Clients must present a trusted certificate to access your API.

§
ownershipVerificationCertificateArn?: string | null
[src]

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.

§
regionalCertificateArn?: string | null
[src]

The reference to an AWS-managed certificate that will be used for validating the regional domain name. AWS Certificate Manager is the only supported source.

§
regionalCertificateName?: string | null
[src]

The name of the certificate that will be used for validating the regional domain name.

§
regionalDomainName?: string | null
[src]

The domain name associated with the regional endpoint for this custom domain name. You set up this association by adding a DNS record that points the custom domain name to this regional domain name. The regional domain name is returned by API Gateway when you create a regional endpoint.

§
regionalHostedZoneId?: string | null
[src]

The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.

§
securityPolicy?: SecurityPolicy | null
[src]

The Transport Layer Security (TLS) version + cipher suite for this "DomainName". The valid values are TLS_1_0 and TLS_1_2.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The collection of tags. Each tag element is associated with a given resource.