Type Alias MigrationInformation

type MigrationInformation = {
    completedAt?: string;
    id?: string;
    initiatedAt?: string;
    migratingFrom?: string;
    migratingTo?: string;
    migratingToFingerprint?: string;
    migratingToPrefix?: string;
    progress?: number;
    state?: "New" | "InProgress" | "Completed";
    tenantId?: string;
}
Index

Properties

completedAt?: string
id?: string

Migration operation ID.

initiatedAt?: string
migratingFrom?: string

The key ARN being migrated from (in case of QlikVault, could be a short name only).

migratingTo?: string

The new key ARN that keys should be migrated to.

migratingToFingerprint?: string

The new key ARN fingerprint.

migratingToPrefix?: string

The new key prefix (to help services know which prefix should NOT be migrated).

progress?: number

Progress in percentage.

state?: "New" | "InProgress" | "Completed"

Migration operation state.

tenantId?: string

Tenant ID.