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

CustomRoutingAccelerator

import type { CustomRoutingAccelerator } from "https://aws-api.deno.dev/v0.4/services/globalaccelerator.ts?docs=full";

Attributes of a custom routing accelerator.

interface CustomRoutingAccelerator {
AcceleratorArn?: string | null;
CreatedTime?: Date | number | null;
DnsName?: string | null;
Enabled?: boolean | null;
IpAddressType?: IpAddressType | null;
IpSets?: IpSet[] | null;
LastModifiedTime?: Date | number | null;
Name?: string | null;
}

§Properties

§
AcceleratorArn?: string | null
[src]

The Amazon Resource Name (ARN) of the custom routing accelerator.

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

The date and time that the accelerator was created.

§
DnsName?: string | null
[src]

The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator's static IPv4 addresses.

The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.

If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.

For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide.

§
Enabled?: boolean | null
[src]

Indicates whether the accelerator is enabled. The value is true or false. The default value is true.

If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.

§
IpAddressType?: IpAddressType | null
[src]

The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.

§
IpSets?: IpSet[] | null
[src]

The static IP addresses that Global Accelerator associates with the accelerator.

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

The date and time that the accelerator was last modified.

§
Name?: string | null
[src]

The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.

§

Describes the deployment status of the accelerator.