Interface CfnKey.ReplicationStatusTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKey.ReplicationStatusTypeProperty.Jsii$Proxy
- Enclosing class:
CfnKey
@Stability(Stable)
public static interface CfnKey.ReplicationStatusTypeProperty
extends software.amazon.jsii.JsiiSerializable
Represents the replication status information for a key in a replication region for Multi-Region key replication .
This structure contains details about the current state of key replication, including any status messages and operational information about the replication process.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.paymentcryptography.*;
ReplicationStatusTypeProperty replicationStatusTypeProperty = ReplicationStatusTypeProperty.builder()
.status("status")
// the properties below are optional
.statusMessage("statusMessage")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnKey.ReplicationStatusTypePropertystatic final classAn implementation forCfnKey.ReplicationStatusTypeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatus
The current status of key replication in this AWS Region .This field indicates whether the key replication is in progress, completed successfully, or has encountered an error. Possible values include states such as
SYNCRHONIZED,IN_PROGRESS,DELETE_IN_PROGRESS, orFAILED. This provides visibility into the replication process for monitoring and troubleshooting purposes.- See Also:
-
getStatusMessage
A message that provides additional information about the current replication status of the key.This field contains details about any issues or progress updates related to key replication operations. It may include information about replication failures, synchronization status, or other operational details.
- See Also:
-
builder
-