Class: Aws::PaymentCryptography::Types::ReplicationStatusType

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb

Overview

Represents the replication status information for a key in a replication region.

This structure contains details about the current state of key replication, including any status messages and operational information about the replication process.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The current status of key replication in this 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.

Returns:

  • (String)


1961
1962
1963
1964
1965
1966
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1961

class ReplicationStatusType < Struct.new(
  :status,
  :status_message)
  SENSITIVE = []
  include Aws::Structure
end

#status_messageString

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.

Returns:

  • (String)


1961
1962
1963
1964
1965
1966
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1961

class ReplicationStatusType < Struct.new(
  :status,
  :status_message)
  SENSITIVE = []
  include Aws::Structure
end