Class: Aws::RDS::Types::ClusterPendingModifiedValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ClusterPendingModifiedValues
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
This data type is used as a response element in the `ModifyDBCluster` operation and contains changes that will be applied during the next maintenance window.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_identifier ⇒ String
The DBClusterIdentifier value for the DB cluster.
-
#engine_version ⇒ String
The database engine version.
-
#iam_database_authentication_enabled ⇒ Boolean
A value that indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.
-
#master_user_password ⇒ String
The master credentials for the DB cluster.
-
#pending_cloudwatch_logs_exports ⇒ Types::PendingCloudwatchLogsExports
A list of the log types whose configuration is still pending.
Instance Attribute Details
#db_cluster_identifier ⇒ String
The DBClusterIdentifier value for the DB cluster.
793 794 795 796 797 798 799 800 801 |
# File 'lib/aws-sdk-rds/types.rb', line 793 class ClusterPendingModifiedValues < Struct.new( :pending_cloudwatch_logs_exports, :db_cluster_identifier, :master_user_password, :iam_database_authentication_enabled, :engine_version) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The database engine version.
793 794 795 796 797 798 799 800 801 |
# File 'lib/aws-sdk-rds/types.rb', line 793 class ClusterPendingModifiedValues < Struct.new( :pending_cloudwatch_logs_exports, :db_cluster_identifier, :master_user_password, :iam_database_authentication_enabled, :engine_version) SENSITIVE = [] include Aws::Structure end |
#iam_database_authentication_enabled ⇒ Boolean
A value that indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.
793 794 795 796 797 798 799 800 801 |
# File 'lib/aws-sdk-rds/types.rb', line 793 class ClusterPendingModifiedValues < Struct.new( :pending_cloudwatch_logs_exports, :db_cluster_identifier, :master_user_password, :iam_database_authentication_enabled, :engine_version) SENSITIVE = [] include Aws::Structure end |
#master_user_password ⇒ String
The master credentials for the DB cluster.
793 794 795 796 797 798 799 800 801 |
# File 'lib/aws-sdk-rds/types.rb', line 793 class ClusterPendingModifiedValues < Struct.new( :pending_cloudwatch_logs_exports, :db_cluster_identifier, :master_user_password, :iam_database_authentication_enabled, :engine_version) SENSITIVE = [] include Aws::Structure end |
#pending_cloudwatch_logs_exports ⇒ Types::PendingCloudwatchLogsExports
A list of the log types whose configuration is still pending. In other words, these log types are in the process of being activated or deactivated.
793 794 795 796 797 798 799 800 801 |
# File 'lib/aws-sdk-rds/types.rb', line 793 class ClusterPendingModifiedValues < Struct.new( :pending_cloudwatch_logs_exports, :db_cluster_identifier, :master_user_password, :iam_database_authentication_enabled, :engine_version) SENSITIVE = [] include Aws::Structure end |