interface Snapshot {
    createdAt?: Date;
    expiresAt?: Date;
    id: string;
    instanceId: string;
    instanceName: string;
    name: string;
    nodeType: string;
    region: Region;
    size?: number;
    status: RDB.v1.SnapshotStatus;
    updatedAt?: Date;
    volumeType?: RDB.v1.SnapshotVolumeType;
}

Properties

createdAt?: Date

Creation date (must follow the ISO 8601 format).

expiresAt?: Date

Expiration date (must follow the ISO 8601 format).

id: string

UUID of the snapshot.

instanceId: string

UUID of the Database Instance.

instanceName: string

Name of the Database Instance of the snapshot.

name: string

Name of the snapshot.

nodeType: string

Source node type.

region: Region

Region of this snapshot.

size?: number

Size of the snapshot.

Status of the snapshot.

updatedAt?: Date

Updated date (must follow the ISO 8601 format).

Type of volume where data is stored (lssd, bssd or sbs).