import { _ResourceLocation, _UnmarshalledResourceLocation } from "./_ResourceLocation"; /** *
Describes the static IP.
*/ export interface _StaticIp { /** *The name of the static IP (e.g., StaticIP-Ohio-EXAMPLE).
The Amazon Resource Name (ARN) of the static IP (e.g., arn:aws:lightsail:us-east-2:123456789101:StaticIp/9cbb4a9e-f8e3-4dfe-b57e-12345EXAMPLE).
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 timestamp when the static IP was created (e.g., 1479735304.222).
The region and Availability Zone where the static IP was created.
*/ location?: _ResourceLocation; /** *The resource type (usually StaticIp).
The static IP address.
*/ ipAddress?: string; /** *The instance where the static IP is attached (e.g., Amazon_Linux-1GB-Ohio-1).
A Boolean value indicating whether the static IP is attached.
*/ isAttached?: boolean; } export interface _UnmarshalledStaticIp extends _StaticIp { /** *The timestamp when the static IP was created (e.g., 1479735304.222).
The region and Availability Zone where the static IP was created.
*/ location?: _UnmarshalledResourceLocation; }