Class: Aws::RDS::Types::DBParameterGroupStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DBParameterGroupStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
The status of the DB parameter group.
This data type is used as a response element in the following actions:
-
‘CreateDBInstance`
-
‘CreateDBInstanceReadReplica`
-
‘DeleteDBInstance`
-
‘ModifyDBInstance`
-
‘RebootDBInstance`
-
‘RestoreDBInstanceFromDBSnapshot`
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_parameter_group_name ⇒ String
The name of the DB parameter group.
-
#parameter_apply_status ⇒ String
The status of parameter updates.
Instance Attribute Details
#db_parameter_group_name ⇒ String
The name of the DB parameter group.
9931 9932 9933 9934 9935 9936 |
# File 'lib/aws-sdk-rds/types.rb', line 9931 class DBParameterGroupStatus < Struct.new( :db_parameter_group_name, :parameter_apply_status) SENSITIVE = [] include Aws::Structure end |
#parameter_apply_status ⇒ String
The status of parameter updates. Valid values are:
-
‘applying`: The parameter group change is being applied to the database.
-
‘failed-to-apply`: The parameter group is in an invalid state.
-
‘in-sync`: The parameter group change is synchronized with the database.
-
‘pending-database-upgrade`: The parameter group change will be applied after the DB instance is upgraded.
-
‘pending-reboot`: The parameter group change will be applied after the DB instance reboots.
9931 9932 9933 9934 9935 9936 |
# File 'lib/aws-sdk-rds/types.rb', line 9931 class DBParameterGroupStatus < Struct.new( :db_parameter_group_name, :parameter_apply_status) SENSITIVE = [] include Aws::Structure end |