Class: Aws::SecurityHub::Types::AwsRdsDbStatusInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsRdsDbStatusInfo
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsRdsDbStatusInfo data as a hash:
{
status_type: "NonEmptyString",
normal: false,
status: "NonEmptyString",
message: "NonEmptyString",
}
Information about the status of a read replica.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
If the read replica is currently in an error state, provides the error details.
-
#normal ⇒ Boolean
Whether the read replica instance is operating normally.
-
#status ⇒ String
The status of the read replica instance.
-
#status_type ⇒ String
The type of status.
Instance Attribute Details
#message ⇒ String
If the read replica is currently in an error state, provides the error details.
16591 16592 16593 16594 16595 16596 16597 16598 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16591 class AwsRdsDbStatusInfo < Struct.new( :status_type, :normal, :status, :message) SENSITIVE = [] include Aws::Structure end |
#normal ⇒ Boolean
Whether the read replica instance is operating normally.
16591 16592 16593 16594 16595 16596 16597 16598 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16591 class AwsRdsDbStatusInfo < Struct.new( :status_type, :normal, :status, :message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the read replica instance.
16591 16592 16593 16594 16595 16596 16597 16598 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16591 class AwsRdsDbStatusInfo < Struct.new( :status_type, :normal, :status, :message) SENSITIVE = [] include Aws::Structure end |
#status_type ⇒ String
The type of status. For a read replica, the status type is read replication.
16591 16592 16593 16594 16595 16596 16597 16598 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16591 class AwsRdsDbStatusInfo < Struct.new( :status_type, :normal, :status, :message) SENSITIVE = [] include Aws::Structure end |