aws-sdk-rds 1.120.0 → 1.121.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,6 +17,7 @@ module Aws::RDS
17
17
  AccountQuota = Shapes::StructureShape.new(name: 'AccountQuota')
18
18
  AccountQuotaList = Shapes::ListShape.new(name: 'AccountQuotaList')
19
19
  ActivityStreamMode = Shapes::StringShape.new(name: 'ActivityStreamMode')
20
+ ActivityStreamModeList = Shapes::ListShape.new(name: 'ActivityStreamModeList')
20
21
  ActivityStreamStatus = Shapes::StringShape.new(name: 'ActivityStreamStatus')
21
22
  AddRoleToDBClusterMessage = Shapes::StructureShape.new(name: 'AddRoleToDBClusterMessage')
22
23
  AddRoleToDBInstanceMessage = Shapes::StructureShape.new(name: 'AddRoleToDBInstanceMessage')
@@ -612,6 +613,8 @@ module Aws::RDS
612
613
 
613
614
  AccountQuotaList.member = Shapes::ShapeRef.new(shape: AccountQuota, location_name: "AccountQuota")
614
615
 
616
+ ActivityStreamModeList.member = Shapes::ShapeRef.new(shape: String)
617
+
615
618
  AddRoleToDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
616
619
  AddRoleToDBClusterMessage.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RoleArn"))
617
620
  AddRoleToDBClusterMessage.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
@@ -1359,6 +1362,11 @@ module Aws::RDS
1359
1362
  DBInstance.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
1360
1363
  DBInstance.add_member(:customer_owned_ip_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CustomerOwnedIpEnabled"))
1361
1364
  DBInstance.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
1365
+ DBInstance.add_member(:activity_stream_status, Shapes::ShapeRef.new(shape: ActivityStreamStatus, location_name: "ActivityStreamStatus"))
1366
+ DBInstance.add_member(:activity_stream_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "ActivityStreamKmsKeyId"))
1367
+ DBInstance.add_member(:activity_stream_kinesis_stream_name, Shapes::ShapeRef.new(shape: String, location_name: "ActivityStreamKinesisStreamName"))
1368
+ DBInstance.add_member(:activity_stream_mode, Shapes::ShapeRef.new(shape: ActivityStreamMode, location_name: "ActivityStreamMode"))
1369
+ DBInstance.add_member(:activity_stream_engine_native_audit_fields_included, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ActivityStreamEngineNativeAuditFieldsIncluded"))
1362
1370
  DBInstance.struct_class = Types::DBInstance
1363
1371
 
1364
1372
  DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
@@ -2700,6 +2708,7 @@ module Aws::RDS
2700
2708
  OrderableDBInstanceOption.add_member(:supports_storage_autoscaling, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsStorageAutoscaling"))
2701
2709
  OrderableDBInstanceOption.add_member(:supports_kerberos_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsKerberosAuthentication"))
2702
2710
  OrderableDBInstanceOption.add_member(:outpost_capable, Shapes::ShapeRef.new(shape: Boolean, location_name: "OutpostCapable"))
2711
+ OrderableDBInstanceOption.add_member(:supported_activity_stream_modes, Shapes::ShapeRef.new(shape: ActivityStreamModeList, location_name: "SupportedActivityStreamModes"))
2703
2712
  OrderableDBInstanceOption.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
2704
2713
  OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
2705
2714
 
@@ -3198,6 +3207,7 @@ module Aws::RDS
3198
3207
  StartActivityStreamRequest.add_member(:mode, Shapes::ShapeRef.new(shape: ActivityStreamMode, required: true, location_name: "Mode"))
3199
3208
  StartActivityStreamRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "KmsKeyId"))
3200
3209
  StartActivityStreamRequest.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ApplyImmediately"))
3210
+ StartActivityStreamRequest.add_member(:engine_native_audit_fields_included, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EngineNativeAuditFieldsIncluded"))
3201
3211
  StartActivityStreamRequest.struct_class = Types::StartActivityStreamRequest
3202
3212
 
3203
3213
  StartActivityStreamResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
@@ -3205,6 +3215,7 @@ module Aws::RDS
3205
3215
  StartActivityStreamResponse.add_member(:status, Shapes::ShapeRef.new(shape: ActivityStreamStatus, location_name: "Status"))
3206
3216
  StartActivityStreamResponse.add_member(:mode, Shapes::ShapeRef.new(shape: ActivityStreamMode, location_name: "Mode"))
3207
3217
  StartActivityStreamResponse.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApplyImmediately"))
3218
+ StartActivityStreamResponse.add_member(:engine_native_audit_fields_included, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EngineNativeAuditFieldsIncluded"))
3208
3219
  StartActivityStreamResponse.struct_class = Types::StartActivityStreamResponse
3209
3220
 
3210
3221
  StartDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
@@ -234,19 +234,21 @@ module Aws::RDS
234
234
  data[:storage_encrypted]
235
235
  end
236
236
 
237
- # If `StorageEncrypted` is enabled, the AWS KMS key identifier for the
238
- # encrypted DB cluster.
237
+ # If `StorageEncrypted` is enabled, the Amazon Web Services KMS key
238
+ # identifier for the encrypted DB cluster.
239
239
  #
240
- # The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
241
- # name for the AWS KMS customer master key (CMK).
240
+ # The Amazon Web Services KMS key identifier is the key ARN, key ID,
241
+ # alias ARN, or alias name for the Amazon Web Services KMS customer
242
+ # master key (CMK).
242
243
  # @return [String]
243
244
  def kms_key_id
244
245
  data[:kms_key_id]
245
246
  end
246
247
 
247
- # The AWS Region-unique, immutable identifier for the DB cluster. This
248
- # identifier is found in AWS CloudTrail log entries whenever the AWS KMS
249
- # CMK for the DB cluster is accessed.
248
+ # The Amazon Web Services Region-unique, immutable identifier for the DB
249
+ # cluster. This identifier is found in Amazon Web Services CloudTrail
250
+ # log entries whenever the Amazon Web Services KMS CMK for the DB
251
+ # cluster is accessed.
250
252
  # @return [String]
251
253
  def db_cluster_resource_id
252
254
  data[:db_cluster_resource_id]
@@ -258,17 +260,18 @@ module Aws::RDS
258
260
  data[:db_cluster_arn]
259
261
  end
260
262
 
261
- # Provides a list of the AWS Identity and Access Management (IAM) roles
262
- # that are associated with the DB cluster. IAM roles that are associated
263
- # with a DB cluster grant permission for the DB cluster to access other
264
- # AWS services on your behalf.
263
+ # Provides a list of the Amazon Web Services Identity and Access
264
+ # Management (IAM) roles that are associated with the DB cluster. IAM
265
+ # roles that are associated with a DB cluster grant permission for the
266
+ # DB cluster to access other Amazon Web Services on your behalf.
265
267
  # @return [Array<Types::DBClusterRole>]
266
268
  def associated_roles
267
269
  data[:associated_roles]
268
270
  end
269
271
 
270
- # A value that indicates whether the mapping of AWS Identity and Access
271
- # Management (IAM) accounts to database accounts is enabled.
272
+ # A value that indicates whether the mapping of Amazon Web Services
273
+ # Identity and Access Management (IAM) accounts to database accounts is
274
+ # enabled.
272
275
  # @return [Boolean]
273
276
  def iam_database_authentication_enabled
274
277
  data[:iam_database_authentication_enabled]
@@ -404,11 +407,12 @@ module Aws::RDS
404
407
  data[:activity_stream_status]
405
408
  end
406
409
 
407
- # The AWS KMS key identifier used for encrypting messages in the
408
- # database activity stream.
410
+ # The Amazon Web Services KMS key identifier used for encrypting
411
+ # messages in the database activity stream.
409
412
  #
410
- # The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
411
- # name for the AWS KMS customer master key (CMK).
413
+ # The Amazon Web Services KMS key identifier is the key ARN, key ID,
414
+ # alias ARN, or alias name for the Amazon Web Services KMS customer
415
+ # master key (CMK).
412
416
  # @return [String]
413
417
  def activity_stream_kms_key_id
414
418
  data[:activity_stream_kms_key_id]
@@ -429,7 +433,7 @@ module Aws::RDS
429
433
  end
430
434
 
431
435
  # Specifies whether the DB cluster is a clone of a DB cluster owned by a
432
- # different AWS account.
436
+ # different Amazon Web Services account.
433
437
  # @return [Boolean]
434
438
  def cross_account_clone
435
439
  data[:cross_account_clone]
@@ -664,9 +668,9 @@ module Aws::RDS
664
668
  # @param [Hash] options ({})
665
669
  # @option options [Array<String>] :availability_zones
666
670
  # A list of Availability Zones (AZs) where instances in the DB cluster
667
- # can be created. For information on AWS Regions and Availability Zones,
668
- # see [Choosing the Regions and Availability Zones][1] in the *Amazon
669
- # Aurora User Guide*.
671
+ # can be created. For information on Amazon Web Services Regions and
672
+ # Availability Zones, see [Choosing the Regions and Availability
673
+ # Zones][1] in the *Amazon Aurora User Guide*.
670
674
  #
671
675
  #
672
676
  #
@@ -777,8 +781,9 @@ module Aws::RDS
777
781
  # parameter.
778
782
  #
779
783
  # The default is a 30-minute window selected at random from an 8-hour
780
- # block of time for each AWS Region. To view the time blocks available,
781
- # see [ Backup window][1] in the *Amazon Aurora User Guide.*
784
+ # block of time for each Amazon Web Services Region. To view the time
785
+ # blocks available, see [ Backup window][1] in the *Amazon Aurora User
786
+ # Guide.*
782
787
  #
783
788
  # Constraints:
784
789
  #
@@ -800,9 +805,10 @@ module Aws::RDS
800
805
  # Format: `ddd:hh24:mi-ddd:hh24:mi`
801
806
  #
802
807
  # The default is a 30-minute window selected at random from an 8-hour
803
- # block of time for each AWS Region, occurring on a random day of the
804
- # week. To see the time blocks available, see [ Adjusting the Preferred
805
- # DB Cluster Maintenance Window][1] in the *Amazon Aurora User Guide.*
808
+ # block of time for each Amazon Web Services Region, occurring on a
809
+ # random day of the week. To see the time blocks available, see [
810
+ # Adjusting the Preferred DB Cluster Maintenance Window][1] in the
811
+ # *Amazon Aurora User Guide.*
806
812
  #
807
813
  # Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
808
814
  #
@@ -819,11 +825,13 @@ module Aws::RDS
819
825
  # @option options [Boolean] :storage_encrypted
820
826
  # A value that indicates whether the DB cluster is encrypted.
821
827
  # @option options [String] :kms_key_id
822
- # The AWS KMS key identifier for an encrypted DB cluster.
828
+ # The Amazon Web Services KMS key identifier for an encrypted DB
829
+ # cluster.
823
830
  #
824
- # The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
825
- # name for the AWS KMS customer master key (CMK). To use a CMK in a
826
- # different AWS account, specify the key ARN or alias ARN.
831
+ # The Amazon Web Services KMS key identifier is the key ARN, key ID,
832
+ # alias ARN, or alias name for the Amazon Web Services KMS customer
833
+ # master key (CMK). To use a CMK in a different Amazon Web Services
834
+ # account, specify the key ARN or alias ARN.
827
835
  #
828
836
  # When a CMK isn't specified in `KmsKeyId`\:
829
837
  #
@@ -835,53 +843,58 @@ module Aws::RDS
835
843
  # `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
836
844
  # use your default CMK.
837
845
  #
838
- # There is a default CMK for your AWS account. Your AWS account has a
839
- # different default CMK for each AWS Region.
846
+ # There is a default CMK for your Amazon Web Services account. Your
847
+ # Amazon Web Services account has a different default CMK for each
848
+ # Amazon Web Services Region.
840
849
  #
841
- # If you create a read replica of an encrypted DB cluster in another AWS
842
- # Region, you must set `KmsKeyId` to a AWS KMS key identifier that is
843
- # valid in the destination AWS Region. This CMK is used to encrypt the
844
- # read replica in that AWS Region.
850
+ # If you create a read replica of an encrypted DB cluster in another
851
+ # Amazon Web Services Region, you must set `KmsKeyId` to a Amazon Web
852
+ # Services KMS key identifier that is valid in the destination Amazon
853
+ # Web Services Region. This CMK is used to encrypt the read replica in
854
+ # that Amazon Web Services Region.
845
855
  # @option options [String] :pre_signed_url
846
856
  # A URL that contains a Signature Version 4 signed request for the
847
- # `CreateDBCluster` action to be called in the source AWS Region where
848
- # the DB cluster is replicated from. You only need to specify
849
- # `PreSignedUrl` when you are performing cross-region replication from
850
- # an encrypted DB cluster.
857
+ # `CreateDBCluster` action to be called in the source Amazon Web
858
+ # Services Region where the DB cluster is replicated from. You only need
859
+ # to specify `PreSignedUrl` when you are performing cross-region
860
+ # replication from an encrypted DB cluster.
851
861
  #
852
862
  # The pre-signed URL must be a valid request for the `CreateDBCluster`
853
- # API action that can be executed in the source AWS Region that contains
854
- # the encrypted DB cluster to be copied.
863
+ # API action that can be executed in the source Amazon Web Services
864
+ # Region that contains the encrypted DB cluster to be copied.
855
865
  #
856
866
  # The pre-signed URL request must contain the following parameter
857
867
  # values:
858
868
  #
859
- # * `KmsKeyId` - The AWS KMS key identifier for the key to use to
860
- # encrypt the copy of the DB cluster in the destination AWS Region.
861
- # This should refer to the same AWS KMS CMK for both the
862
- # `CreateDBCluster` action that is called in the destination AWS
863
- # Region, and the action contained in the pre-signed URL.
869
+ # * `KmsKeyId` - The Amazon Web Services KMS key identifier for the key
870
+ # to use to encrypt the copy of the DB cluster in the destination
871
+ # Amazon Web Services Region. This should refer to the same Amazon Web
872
+ # Services KMS CMK for both the `CreateDBCluster` action that is
873
+ # called in the destination Amazon Web Services Region, and the action
874
+ # contained in the pre-signed URL.
864
875
  #
865
- # * `DestinationRegion` - The name of the AWS Region that Aurora read
866
- # replica will be created in.
876
+ # * `DestinationRegion` - The name of the Amazon Web Services Region
877
+ # that Aurora read replica will be created in.
867
878
  #
868
879
  # * `ReplicationSourceIdentifier` - The DB cluster identifier for the
869
880
  # encrypted DB cluster to be copied. This identifier must be in the
870
- # Amazon Resource Name (ARN) format for the source AWS Region. For
871
- # example, if you are copying an encrypted DB cluster from the
872
- # us-west-2 AWS Region, then your `ReplicationSourceIdentifier` would
873
- # look like Example:
881
+ # Amazon Resource Name (ARN) format for the source Amazon Web Services
882
+ # Region. For example, if you are copying an encrypted DB cluster from
883
+ # the us-west-2 Amazon Web Services Region, then your
884
+ # `ReplicationSourceIdentifier` would look like Example:
874
885
  # `arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1`.
875
886
  #
876
887
  # To learn how to generate a Signature Version 4 signed request, see [
877
- # Authenticating Requests: Using Query Parameters (AWS Signature Version
878
- # 4)][1] and [ Signature Version 4 Signing Process][2].
888
+ # Authenticating Requests: Using Query Parameters (Amazon Web Services
889
+ # Signature Version 4)][1] and [ Signature Version 4 Signing
890
+ # Process][2].
879
891
  #
880
- # <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
881
- # `SourceRegion` (or `--source-region` for the AWS CLI) instead of
892
+ # <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
893
+ # specify `SourceRegion` (or `--source-region` for the CLI) instead of
882
894
  # specifying `PreSignedUrl` manually. Specifying `SourceRegion`
883
895
  # autogenerates a pre-signed URL that is a valid request for the
884
- # operation that can be executed in the source AWS Region.
896
+ # operation that can be executed in the source Amazon Web Services
897
+ # Region.
885
898
  #
886
899
  # </note>
887
900
  #
@@ -890,9 +903,9 @@ module Aws::RDS
890
903
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
891
904
  # [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
892
905
  # @option options [Boolean] :enable_iam_database_authentication
893
- # A value that indicates whether to enable mapping of AWS Identity and
894
- # Access Management (IAM) accounts to database accounts. By default,
895
- # mapping is disabled.
906
+ # A value that indicates whether to enable mapping of Amazon Web
907
+ # Services Identity and Access Management (IAM) accounts to database
908
+ # accounts. By default, mapping is disabled.
896
909
  #
897
910
  # For more information, see [ IAM Database Authentication][1] in the
898
911
  # *Amazon Aurora User Guide.*
@@ -1261,8 +1274,9 @@ module Aws::RDS
1261
1274
  # parameter.
1262
1275
  #
1263
1276
  # The default is a 30-minute window selected at random from an 8-hour
1264
- # block of time for each AWS Region. To view the time blocks available,
1265
- # see [ Backup window][1] in the *Amazon Aurora User Guide.*
1277
+ # block of time for each Amazon Web Services Region. To view the time
1278
+ # blocks available, see [ Backup window][1] in the *Amazon Aurora User
1279
+ # Guide.*
1266
1280
  #
1267
1281
  # Constraints:
1268
1282
  #
@@ -1284,9 +1298,10 @@ module Aws::RDS
1284
1298
  # Format: `ddd:hh24:mi-ddd:hh24:mi`
1285
1299
  #
1286
1300
  # The default is a 30-minute window selected at random from an 8-hour
1287
- # block of time for each AWS Region, occurring on a random day of the
1288
- # week. To see the time blocks available, see [ Adjusting the Preferred
1289
- # DB Cluster Maintenance Window][1] in the *Amazon Aurora User Guide.*
1301
+ # block of time for each Amazon Web Services Region, occurring on a
1302
+ # random day of the week. To see the time blocks available, see [
1303
+ # Adjusting the Preferred DB Cluster Maintenance Window][1] in the
1304
+ # *Amazon Aurora User Guide.*
1290
1305
  #
1291
1306
  # Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
1292
1307
  #
@@ -1296,9 +1311,9 @@ module Aws::RDS
1296
1311
  #
1297
1312
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
1298
1313
  # @option options [Boolean] :enable_iam_database_authentication
1299
- # A value that indicates whether to enable mapping of AWS Identity and
1300
- # Access Management (IAM) accounts to database accounts. By default,
1301
- # mapping is disabled.
1314
+ # A value that indicates whether to enable mapping of Amazon Web
1315
+ # Services Identity and Access Management (IAM) accounts to database
1316
+ # accounts. By default, mapping is disabled.
1302
1317
  #
1303
1318
  # For more information, see [ IAM Database Authentication][1] in the
1304
1319
  # *Amazon Aurora User Guide.*
@@ -1552,24 +1567,26 @@ module Aws::RDS
1552
1567
  #
1553
1568
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
1554
1569
  # @option options [String] :kms_key_id
1555
- # The AWS KMS key identifier to use when restoring an encrypted DB
1556
- # cluster from an encrypted DB cluster.
1570
+ # The Amazon Web Services KMS key identifier to use when restoring an
1571
+ # encrypted DB cluster from an encrypted DB cluster.
1557
1572
  #
1558
- # The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
1559
- # name for the AWS KMS customer master key (CMK). To use a CMK in a
1560
- # different AWS account, specify the key ARN or alias ARN.
1573
+ # The Amazon Web Services KMS key identifier is the key ARN, key ID,
1574
+ # alias ARN, or alias name for the Amazon Web Services KMS customer
1575
+ # master key (CMK). To use a CMK in a different Amazon Web Services
1576
+ # account, specify the key ARN or alias ARN.
1561
1577
  #
1562
1578
  # You can restore to a new DB cluster and encrypt the new DB cluster
1563
- # with a AWS KMS CMK that is different than the AWS KMS key used to
1564
- # encrypt the source DB cluster. The new DB cluster is encrypted with
1565
- # the AWS KMS CMK identified by the `KmsKeyId` parameter.
1579
+ # with a Amazon Web Services KMS CMK that is different than the Amazon
1580
+ # Web Services KMS key used to encrypt the source DB cluster. The new DB
1581
+ # cluster is encrypted with the Amazon Web Services KMS CMK identified
1582
+ # by the `KmsKeyId` parameter.
1566
1583
  #
1567
1584
  # If you don't specify a value for the `KmsKeyId` parameter, then the
1568
1585
  # following occurs:
1569
1586
  #
1570
1587
  # * If the DB cluster is encrypted, then the restored DB cluster is
1571
- # encrypted using the AWS KMS CMK that was used to encrypt the source
1572
- # DB cluster.
1588
+ # encrypted using the Amazon Web Services KMS CMK that was used to
1589
+ # encrypt the source DB cluster.
1573
1590
  #
1574
1591
  # * If the DB cluster isn't encrypted, then the restored DB cluster
1575
1592
  # isn't encrypted.
@@ -1577,9 +1594,9 @@ module Aws::RDS
1577
1594
  # If `DBClusterIdentifier` refers to a DB cluster that isn't encrypted,
1578
1595
  # then the restore request is rejected.
1579
1596
  # @option options [Boolean] :enable_iam_database_authentication
1580
- # A value that indicates whether to enable mapping of AWS Identity and
1581
- # Access Management (IAM) accounts to database accounts. By default,
1582
- # mapping is disabled.
1597
+ # A value that indicates whether to enable mapping of Amazon Web
1598
+ # Services Identity and Access Management (IAM) accounts to database
1599
+ # accounts. By default, mapping is disabled.
1583
1600
  #
1584
1601
  # For more information, see [ IAM Database Authentication][1] in the
1585
1602
  # *Amazon Aurora User Guide.*
@@ -1811,13 +1828,14 @@ module Aws::RDS
1811
1828
  # of the following values:
1812
1829
  #
1813
1830
  # * `automated` - Return all DB cluster snapshots that have been
1814
- # automatically taken by Amazon RDS for my AWS account.
1831
+ # automatically taken by Amazon RDS for my Amazon Web Services
1832
+ # account.
1815
1833
  #
1816
1834
  # * `manual` - Return all DB cluster snapshots that have been taken by
1817
- # my AWS account.
1835
+ # my Amazon Web Services account.
1818
1836
  #
1819
1837
  # * `shared` - Return all manual DB cluster snapshots that have been
1820
- # shared to my AWS account.
1838
+ # shared to my Amazon Web Services account.
1821
1839
  #
1822
1840
  # * `public` - Return all DB cluster snapshots that have been marked as
1823
1841
  # public.
@@ -1848,17 +1866,17 @@ module Aws::RDS
1848
1866
  # * `engine` - Accepts names of database engines.
1849
1867
  # @option options [Boolean] :include_shared
1850
1868
  # A value that indicates whether to include shared manual DB cluster
1851
- # snapshots from other AWS accounts that this AWS account has been given
1852
- # permission to copy or restore. By default, these snapshots are not
1853
- # included.
1869
+ # snapshots from other Amazon Web Services accounts that this Amazon Web
1870
+ # Services account has been given permission to copy or restore. By
1871
+ # default, these snapshots are not included.
1854
1872
  #
1855
- # You can give an AWS account permission to restore a manual DB cluster
1856
- # snapshot from another AWS account by the
1857
- # `ModifyDBClusterSnapshotAttribute` API action.
1873
+ # You can give an Amazon Web Services account permission to restore a
1874
+ # manual DB cluster snapshot from another Amazon Web Services account by
1875
+ # the `ModifyDBClusterSnapshotAttribute` API action.
1858
1876
  # @option options [Boolean] :include_public
1859
1877
  # A value that indicates whether to include manual DB cluster snapshots
1860
- # that are public and can be copied or restored by any AWS account. By
1861
- # default, the public snapshots are not included.
1878
+ # that are public and can be copied or restored by any Amazon Web
1879
+ # Services account. By default, the public snapshots are not included.
1862
1880
  #
1863
1881
  # You can share a manual DB cluster snapshot as public by using the
1864
1882
  # ModifyDBClusterSnapshotAttribute API action.
@@ -216,6 +216,31 @@ module Aws::RDS
216
216
  # **Aurora PostgreSQL**
217
217
  #
218
218
  # Example: `aurora-postgresql9.6`
219
+ #
220
+ # To list all of the available parameter group families for a DB engine,
221
+ # use the following command:
222
+ #
223
+ # `aws rds describe-db-engine-versions --query
224
+ # "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
225
+ #
226
+ # For example, to list all of the available parameter group families for
227
+ # the Aurora PostgreSQL DB engine, use the following command:
228
+ #
229
+ # `aws rds describe-db-engine-versions --query
230
+ # "DBEngineVersions[].DBParameterGroupFamily" --engine
231
+ # aurora-postgresql`
232
+ #
233
+ # <note markdown="1"> The output contains duplicates.
234
+ #
235
+ # </note>
236
+ #
237
+ # The following are the valid DB engine values:
238
+ #
239
+ # * `aurora` (for MySQL 5.6-compatible Aurora)
240
+ #
241
+ # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
242
+ #
243
+ # * `aurora-postgresql`
219
244
  # @option options [required, String] :description
220
245
  # The description for the DB cluster parameter group.
221
246
  # @option options [Array<Types::Tag>] :tags
@@ -264,6 +289,22 @@ module Aws::RDS
264
289
  # @param [Hash] options ({})
265
290
  # @option options [required, Array<Types::Parameter>] :parameters
266
291
  # A list of parameters in the DB cluster parameter group to modify.
292
+ #
293
+ # Valid Values (for the application method): `immediate |
294
+ # pending-reboot`
295
+ #
296
+ # <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
297
+ # can use the `pending-reboot` value for both dynamic and static
298
+ # parameters.
299
+ #
300
+ # When the application method is `immediate`, changes to dynamic
301
+ # parameters are applied immediately to the DB clusters associated with
302
+ # the parameter group. When the application method is `pending-reboot`,
303
+ # changes to dynamic and static parameters are applied after a reboot
304
+ # without failover to the DB clusters associated with the parameter
305
+ # group.
306
+ #
307
+ # </note>
267
308
  # @return [DBClusterParameterGroup]
268
309
  def modify(options = {})
269
310
  options = options.merge(db_cluster_parameter_group_name: @name)