amazonka-voice-id-2.0: Amazon Voice ID SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

Description

 
Synopsis

Documentation

data ServerSideEncryptionUpdateDetails Source #

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.

See: newServerSideEncryptionUpdateDetails smart constructor.

Constructors

ServerSideEncryptionUpdateDetails' 

Fields

  • message :: Maybe Text

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

  • oldKmsKeyId :: Maybe Text

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

  • updateStatus :: Maybe ServerSideEncryptionUpdateStatus

    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.

Instances

Instances details
FromJSON ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

Generic ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

Associated Types

type Rep ServerSideEncryptionUpdateDetails :: Type -> Type #

Read ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

Show ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

NFData ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

Eq ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

Hashable ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

type Rep ServerSideEncryptionUpdateDetails Source # 
Instance details

Defined in Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails

type Rep ServerSideEncryptionUpdateDetails = D1 ('MetaData "ServerSideEncryptionUpdateDetails" "Amazonka.VoiceId.Types.ServerSideEncryptionUpdateDetails" "amazonka-voice-id-2.0-E9fR3xKghdA6rj9Pl7P2NC" 'False) (C1 ('MetaCons "ServerSideEncryptionUpdateDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "oldKmsKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "updateStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ServerSideEncryptionUpdateStatus)))))

newServerSideEncryptionUpdateDetails :: ServerSideEncryptionUpdateDetails Source #

Create a value of ServerSideEncryptionUpdateDetails with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:message:ServerSideEncryptionUpdateDetails', serverSideEncryptionUpdateDetails_message - Message explaining the current UpdateStatus. When the UpdateStatus is FAILED, this message explains the cause of the failure.

$sel:oldKmsKeyId:ServerSideEncryptionUpdateDetails', serverSideEncryptionUpdateDetails_oldKmsKeyId - The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.

$sel:updateStatus:ServerSideEncryptionUpdateDetails', serverSideEncryptionUpdateDetails_updateStatus - 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.

serverSideEncryptionUpdateDetails_message :: Lens' ServerSideEncryptionUpdateDetails (Maybe Text) Source #

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

serverSideEncryptionUpdateDetails_oldKmsKeyId :: Lens' ServerSideEncryptionUpdateDetails (Maybe Text) Source #

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

serverSideEncryptionUpdateDetails_updateStatus :: Lens' ServerSideEncryptionUpdateDetails (Maybe ServerSideEncryptionUpdateStatus) Source #

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.