Interface ServerSideEncryptionUpdateDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServerSideEncryptionUpdateDetails.Builder,ServerSideEncryptionUpdateDetails>,SdkBuilder<ServerSideEncryptionUpdateDetails.Builder,ServerSideEncryptionUpdateDetails>,SdkPojo
- Enclosing class:
- ServerSideEncryptionUpdateDetails
public static interface ServerSideEncryptionUpdateDetails.Builder extends SdkPojo, CopyableBuilder<ServerSideEncryptionUpdateDetails.Builder,ServerSideEncryptionUpdateDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerSideEncryptionUpdateDetails.Buildermessage(String message)Message explaining the current UpdateStatus.ServerSideEncryptionUpdateDetails.BuilderoldKmsKeyId(String oldKmsKeyId)The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.ServerSideEncryptionUpdateDetails.BuilderupdateStatus(String updateStatus)Status of the server-side encryption update.ServerSideEncryptionUpdateDetails.BuilderupdateStatus(ServerSideEncryptionUpdateStatus updateStatus)Status of the server-side encryption update.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
message
ServerSideEncryptionUpdateDetails.Builder message(String message)
Message explaining the current UpdateStatus. When the UpdateStatus is FAILED, this message explains the cause of the failure.
- Parameters:
message- Message explaining the current UpdateStatus. When the UpdateStatus is FAILED, this message explains the cause of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oldKmsKeyId
ServerSideEncryptionUpdateDetails.Builder oldKmsKeyId(String oldKmsKeyId)
The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.
- Parameters:
oldKmsKeyId- The previous KMS key ID the domain was encrypted with, before ServerSideEncryptionConfiguration was updated to a new KMS key ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateStatus
ServerSideEncryptionUpdateDetails.Builder updateStatus(String 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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServerSideEncryptionUpdateStatus,ServerSideEncryptionUpdateStatus
-
updateStatus
ServerSideEncryptionUpdateDetails.Builder updateStatus(ServerSideEncryptionUpdateStatus 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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServerSideEncryptionUpdateStatus,ServerSideEncryptionUpdateStatus
-
-