Class: Aws::VoiceID::Types::ServerSideEncryptionUpdateDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::ServerSideEncryptionUpdateDetails
- Defined in:
- gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
Message explaining the current UpdateStatus.
-
#old_kms_key_id ⇒ String
The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.
-
#update_status ⇒ String
Status of the server-side encryption update.
Instance Attribute Details
#message ⇒ String
Message explaining the current UpdateStatus. When the UpdateStatus is FAILED, this message explains the cause of the failure.
1685 1686 1687 1688 1689 1690 1691 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1685 class ServerSideEncryptionUpdateDetails < Struct.new( :message, :old_kms_key_id, :update_status) SENSITIVE = [] include Aws::Structure end |
#old_kms_key_id ⇒ String
The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.
1685 1686 1687 1688 1689 1690 1691 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1685 class ServerSideEncryptionUpdateDetails < Struct.new( :message, :old_kms_key_id, :update_status) SENSITIVE = [] include Aws::Structure end |
#update_status ⇒ String
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.
1685 1686 1687 1688 1689 1690 1691 |
# File 'gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb', line 1685 class ServerSideEncryptionUpdateDetails < Struct.new( :message, :old_kms_key_id, :update_status) SENSITIVE = [] include Aws::Structure end |