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: