interface ReplicationStatusTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PaymentCryptography.Mixins.CfnKeyPropsMixin.ReplicationStatusTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspaymentcryptography/mixins#CfnKeyPropsMixin_ReplicationStatusTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.paymentcryptography.mixins.CfnKeyPropsMixin.ReplicationStatusTypeProperty |
Python | aws_cdk.mixins_preview.aws_paymentcryptography.mixins.CfnKeyPropsMixin.ReplicationStatusTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_paymentcryptography » mixins » CfnKeyPropsMixin » ReplicationStatusTypeProperty |
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 { mixins as paymentcryptography_mixins } from '@aws-cdk/mixins-preview/aws-paymentcryptography';
const replicationStatusTypeProperty: paymentcryptography_mixins.CfnKeyPropsMixin.ReplicationStatusTypeProperty = {
status: 'status',
statusMessage: 'statusMessage',
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | The current status of key replication in this AWS Region . |
| status | string | A message that provides additional information about the current replication status of the key. |
status?
Type:
string
(optional)
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 , or FAILED . This provides visibility into the replication process for monitoring and troubleshooting purposes.
statusMessage?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript