Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ServerSideEncryptionUpdateDetails

import type { ServerSideEncryptionUpdateDetails } from "https://aws-api.deno.dev/v0.4/services/voiceid.ts?docs=full";

Details about the most recent server-side encryption configuration update. When the server-side encryption configuration is changed, dependency on the old KMS key is removed through an asynchronous process. When this update is complete, the domain’s data can only be accessed using the new KMS key.

interface ServerSideEncryptionUpdateDetails {
Message?: string | null;
OldKmsKeyId?: string | null;
UpdateStatus?: ServerSideEncryptionUpdateStatus | null;
}

§Properties

§
Message?: string | null
[src]

Message explaining the current UpdateStatus. When the UpdateStatus is FAILED, this message explains the cause of the failure.

§
OldKmsKeyId?: string | null
[src]

The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.

§

Status of the server-side encryption update. During an update, if there is an issue with the domain's current or old KMS key ID, such as an inaccessible or disabled key, then the status is FAILED. In order to resolve this, the key needs to be made accessible, and then an UpdateDomain call with the existing server-side encryption configuration will re-attempt this update process.