interface Instance {
    createdAt?: Date;
    id: string;
    ipAddress: string;
    region?: Region;
    status: LB.v1.InstanceStatus;
    updatedAt?: Date;
    zone: Zone;
}

Properties

createdAt?: Date

Date on which the Instance was created.

id: string

Underlying Instance ID.

ipAddress: string

Instance IP address.

region?: Region

The region the Instance is in.

Instance status.

updatedAt?: Date

Date on which the Instance was last updated.

zone: Zone

The zone the Instance is in.