Class: Aws::PaymentCryptography::Types::ReplicationStatusType
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::ReplicationStatusType
- 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
-
#status ⇒ String
Defines the replication state of a key.
-
#status_message ⇒ String
A message that provides additional information about the current replication status of the key.
Instance Attribute Details
#status ⇒ String
Defines the replication state of a key
1850 1851 1852 1853 1854 1855 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1850 class ReplicationStatusType < Struct.new( :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
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.
1850 1851 1852 1853 1854 1855 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1850 class ReplicationStatusType < Struct.new( :status, :status_message) SENSITIVE = [] include Aws::Structure end |