import { _ResourceLocation, _UnmarshalledResourceLocation } from "./_ResourceLocation"; import { _Tag, _UnmarshalledTag } from "./_Tag"; import { _DomainEntry, _UnmarshalledDomainEntry } from "./_DomainEntry"; /** *

Describes a domain where you are storing recordsets in Lightsail.

*/ export interface _Domain { /** *

The name of the domain.

*/ name?: string; /** *

The Amazon Resource Name (ARN) of the domain recordset (e.g., arn:aws:lightsail:global:123456789101:Domain/824cede0-abc7-4f84-8dbc-12345EXAMPLE).

*/ arn?: string; /** *

The support code. Include this code in your email to support when you have questions about an instance or another resource in Lightsail. This code enables our support team to look up your Lightsail information more easily.

*/ supportCode?: string; /** *

The date when the domain recordset was created.

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

The AWS Region and Availability Zones where the domain recordset was created.

*/ location?: _ResourceLocation; /** *

The resource type.

*/ resourceType?: "Instance" | "StaticIp" | "KeyPair" | "InstanceSnapshot" | "Domain" | "PeeredVpc" | "LoadBalancer" | "LoadBalancerTlsCertificate" | "Disk" | "DiskSnapshot" | "RelationalDatabase" | "RelationalDatabaseSnapshot" | "ExportSnapshotRecord" | "CloudFormationStackRecord" | string; /** *

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

*/ tags?: Array<_Tag> | Iterable<_Tag>; /** *

An array of key-value pairs containing information about the domain entries.

*/ domainEntries?: Array<_DomainEntry> | Iterable<_DomainEntry>; } export interface _UnmarshalledDomain extends _Domain { /** *

The date when the domain recordset was created.

*/ createdAt?: Date; /** *

The AWS Region and Availability Zones where the domain recordset was created.

*/ location?: _UnmarshalledResourceLocation; /** *

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

*/ tags?: Array<_UnmarshalledTag>; /** *

An array of key-value pairs containing information about the domain entries.

*/ domainEntries?: Array<_UnmarshalledDomainEntry>; }