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

CreateDomainNameRequest

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

A request to create a new domain name.

interface CreateDomainNameRequest {
certificateArn?: string | null;
certificateBody?: string | null;
certificateChain?: string | null;
certificateName?: string | null;
certificatePrivateKey?: string | null;
domainName: string;
endpointConfiguration?: EndpointConfiguration | null;
mutualTlsAuthentication?: MutualTlsAuthenticationInput | null;
ownershipVerificationCertificateArn?: string | null;
regionalCertificateArn?: string | null;
regionalCertificateName?: 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.

§
certificateBody?: string | null
[src]

[Deprecated] The body of the server certificate that will be used by edge-optimized endpoint for this domain name provided by your certificate authority.

§
certificateChain?: string | null
[src]

[Deprecated] The intermediate certificates and optionally the root certificate, one after the other without any blank lines, used by an edge-optimized endpoint for this domain name. If you include the root certificate, your certificate chain must start with intermediate certificates and end with the root certificate. Use the intermediate certificates that were provided by your certificate authority. Do not include any intermediaries that are not in the chain of trust path.

§
certificateName?: string | null
[src]

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

§
certificatePrivateKey?: string | null
[src]

[Deprecated] Your edge-optimized endpoint's domain name certificate's private key.

§
domainName: string
[src]

[Required] The name of the "DomainName" resource.

§
endpointConfiguration?: EndpointConfiguration | null
[src]

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

§
mutualTlsAuthentication?: MutualTlsAuthenticationInput | null
[src]
§
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 by regional endpoint for this domain name. AWS Certificate Manager is the only supported source.

§
regionalCertificateName?: string | null
[src]

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

§
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 key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.