aws-sdk-rds 1.64.0 → 1.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78058d2649bfdca4d6104ba55a532d03c38d237b
4
- data.tar.gz: 9abdd9d67a51d6f8533b63559b4c4a73ef18a0f8
3
+ metadata.gz: 9648eb4abd8ae03bf79aa11448ec4c8959cb0925
4
+ data.tar.gz: 915c523d65d702ece1c6326acb313ba8880156ba
5
5
  SHA512:
6
- metadata.gz: 59982da1baf45f01ce908484e64a4a7031a6a3c36a7dd247cdde483f4f9e5dda6efeaeaeb832650d9deb9f2373cafb683261ab573b127cb5c3a39b0f4d01a648
7
- data.tar.gz: 8758b5e5043d34e62e7906ab449bd0cac7bf3a7b57931a06cfd6a6a9d226cfcb7d05c0d77433a12d3fd425528f7db9f59d4c2f425068f7baa8e5351aa5d7f258
6
+ metadata.gz: b3189995487356385287ad0f89eb6c6de2b63b505891bf99eb99469e4b76c407f494d046bffdf7a7cac18c8a377f4b61c5d24a422be9ce34a4b7382930a1a800
7
+ data.tar.gz: 489e308157cc45f700500cc1b8dd93eca4dfe50634a9c32c339b0e88f5b6c1a5b50b47e2ca89d2a3bb4843b78904fd6207e6f1d1a9cf14aeb3376bd879e3f262
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.64.0'
71
+ GEM_VERSION = '1.65.0'
72
72
 
73
73
  end
@@ -1908,7 +1908,7 @@ module Aws::RDS
1908
1908
  #
1909
1909
  # @option params [String] :engine_mode
1910
1910
  # The DB engine mode of the DB cluster, either `provisioned`,
1911
- # `serverless`, `parallelquery`, or `global`.
1911
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
1912
1912
  #
1913
1913
  # @option params [Types::ScalingConfiguration] :scaling_configuration
1914
1914
  # For DB clusters in `serverless` DB engine mode, the scaling properties
@@ -2124,7 +2124,7 @@ module Aws::RDS
2124
2124
  # as a lowercase string.
2125
2125
  #
2126
2126
  # @option params [required, String] :endpoint_type
2127
- # The type of the endpoint. One of: `READER`, `ANY`.
2127
+ # The type of the endpoint. One of: `READER`, `WRITER`, `ANY`.
2128
2128
  #
2129
2129
  # @option params [Array<String>] :static_members
2130
2130
  # List of DB instance identifiers that are part of the custom endpoint
@@ -2794,8 +2794,8 @@ module Aws::RDS
2794
2794
  #
2795
2795
  # @option params [String] :db_parameter_group_name
2796
2796
  # The name of the DB parameter group to associate with this DB instance.
2797
- # If this argument is omitted, the default DBParameterGroup for the
2798
- # specified engine is used.
2797
+ # If you do not specify a value for `DBParameterGroupName`, then the
2798
+ # default `DBParameterGroup` for the specified DB engine is used.
2799
2799
  #
2800
2800
  # Constraints:
2801
2801
  #
@@ -3563,6 +3563,22 @@ module Aws::RDS
3563
3563
  # The option group the DB instance is associated with. If omitted, the
3564
3564
  # option group associated with the source instance is used.
3565
3565
  #
3566
+ # @option params [String] :db_parameter_group_name
3567
+ # The name of the DB parameter group to associate with this DB instance.
3568
+ #
3569
+ # If you do not specify a value for `DBParameterGroupName`, then Amazon
3570
+ # RDS uses the `DBParameterGroup` of source DB instance for a same
3571
+ # region Read Replica, or the default `DBParameterGroup` for the
3572
+ # specified DB engine for a cross region Read Replica.
3573
+ #
3574
+ # Constraints:
3575
+ #
3576
+ # * Must be 1 to 255 letters, numbers, or hyphens.
3577
+ #
3578
+ # * First character must be a letter
3579
+ #
3580
+ # * Can't end with a hyphen or contain two consecutive hyphens
3581
+ #
3566
3582
  # @option params [Boolean] :publicly_accessible
3567
3583
  # A value that indicates whether the DB instance is publicly accessible.
3568
3584
  # When the DB instance is publicly accessible, it is an Internet-facing
@@ -3835,6 +3851,7 @@ module Aws::RDS
3835
3851
  # auto_minor_version_upgrade: false,
3836
3852
  # iops: 1,
3837
3853
  # option_group_name: "String",
3854
+ # db_parameter_group_name: "String",
3838
3855
  # publicly_accessible: false,
3839
3856
  # tags: [
3840
3857
  # {
@@ -10132,7 +10149,7 @@ module Aws::RDS
10132
10149
  # a lowercase string.
10133
10150
  #
10134
10151
  # @option params [String] :endpoint_type
10135
- # The type of the endpoint. One of: `READER`, `ANY`.
10152
+ # The type of the endpoint. One of: `READER`, `WRITER`, `ANY`.
10136
10153
  #
10137
10154
  # @option params [Array<String>] :static_members
10138
10155
  # List of DB instance identifiers that are part of the custom endpoint
@@ -11213,7 +11230,7 @@ module Aws::RDS
11213
11230
  #
11214
11231
  # Constraints:
11215
11232
  #
11216
- # * If supplied, must match the name of an existing DBParameterGroup.
11233
+ # * If supplied, must match the name of an existing `DBParameterGroup`.
11217
11234
  #
11218
11235
  # ^
11219
11236
  #
@@ -11889,17 +11906,17 @@ module Aws::RDS
11889
11906
  # Example: `mydbinstance`
11890
11907
  #
11891
11908
  # @option params [Integer] :backup_retention_period
11892
- # The number of days to retain automated backups. Setting this parameter
11893
- # to a positive number enables backups. Setting this parameter to 0
11894
- # disables automated backups.
11909
+ # The number of days for which automated backups are retained. Setting
11910
+ # this parameter to a positive number enables backups. Setting this
11911
+ # parameter to 0 disables automated backups.
11895
11912
  #
11896
11913
  # Default: 1
11897
11914
  #
11898
11915
  # Constraints:
11899
11916
  #
11900
- # * Must be a value from 0 to 8
11917
+ # * Must be a value from 0 to 35.
11901
11918
  #
11902
- # ^
11919
+ # * Can't be set to 0 if the DB instance is a source to Read Replicas.
11903
11920
  #
11904
11921
  # @option params [String] :preferred_backup_window
11905
11922
  # The daily time range during which automated backups are created if
@@ -12815,7 +12832,7 @@ module Aws::RDS
12815
12832
  #
12816
12833
  # Constraints:
12817
12834
  #
12818
- # * Must match the name of an existing DBParameterGroup.
12835
+ # * Must match the name of an existing `DBParameterGroup`.
12819
12836
  #
12820
12837
  # ^
12821
12838
  #
@@ -13488,7 +13505,7 @@ module Aws::RDS
13488
13505
  #
13489
13506
  # @option params [String] :engine_mode
13490
13507
  # The DB engine mode of the DB cluster, either `provisioned`,
13491
- # `serverless`, or `parallelquery`.
13508
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
13492
13509
  #
13493
13510
  # @option params [Types::ScalingConfiguration] :scaling_configuration
13494
13511
  # For DB clusters in `serverless` DB engine mode, the scaling properties
@@ -14261,8 +14278,9 @@ module Aws::RDS
14261
14278
  #
14262
14279
  # @option params [String] :db_parameter_group_name
14263
14280
  # The name of the DB parameter group to associate with this DB instance.
14264
- # If this argument is omitted, the default DBParameterGroup for the
14265
- # specified engine is used.
14281
+ #
14282
+ # If you do not specify a value for `DBParameterGroupName`, then the
14283
+ # default `DBParameterGroup` for the specified DB engine is used.
14266
14284
  #
14267
14285
  # Constraints:
14268
14286
  #
@@ -14678,8 +14696,9 @@ module Aws::RDS
14678
14696
  #
14679
14697
  # @option params [String] :db_parameter_group_name
14680
14698
  # The name of the DB parameter group to associate with this DB instance.
14681
- # If this argument is omitted, the default parameter group for the
14682
- # specified engine is used.
14699
+ #
14700
+ # If you do not specify a value for `DBParameterGroupName`, then the
14701
+ # default `DBParameterGroup` for the specified DB engine is used.
14683
14702
  #
14684
14703
  # @option params [Integer] :backup_retention_period
14685
14704
  # The number of days for which automated backups are retained. Setting
@@ -15360,8 +15379,9 @@ module Aws::RDS
15360
15379
  #
15361
15380
  # @option params [String] :db_parameter_group_name
15362
15381
  # The name of the DB parameter group to associate with this DB instance.
15363
- # If this argument is omitted, the default DBParameterGroup for the
15364
- # specified engine is used.
15382
+ #
15383
+ # If you do not specify a value for `DBParameterGroupName`, then the
15384
+ # default `DBParameterGroup` for the specified DB engine is used.
15365
15385
  #
15366
15386
  # Constraints:
15367
15387
  #
@@ -16408,7 +16428,7 @@ module Aws::RDS
16408
16428
  params: params,
16409
16429
  config: config)
16410
16430
  context[:gem_name] = 'aws-sdk-rds'
16411
- context[:gem_version] = '1.64.0'
16431
+ context[:gem_version] = '1.65.0'
16412
16432
  Seahorse::Client::Request.new(handlers, context)
16413
16433
  end
16414
16434
 
@@ -745,6 +745,7 @@ module Aws::RDS
745
745
  CreateDBInstanceReadReplicaMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
746
746
  CreateDBInstanceReadReplicaMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
747
747
  CreateDBInstanceReadReplicaMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
748
+ CreateDBInstanceReadReplicaMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
748
749
  CreateDBInstanceReadReplicaMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
749
750
  CreateDBInstanceReadReplicaMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
750
751
  CreateDBInstanceReadReplicaMessage.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
@@ -331,7 +331,7 @@ module Aws::RDS
331
331
  end
332
332
 
333
333
  # The DB engine mode of the DB cluster, either `provisioned`,
334
- # `serverless`, or `parallelquery`.
334
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
335
335
  # @return [String]
336
336
  def engine_mode
337
337
  data[:engine_mode]
@@ -854,7 +854,7 @@ module Aws::RDS
854
854
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
855
855
  # @option options [String] :engine_mode
856
856
  # The DB engine mode of the DB cluster, either `provisioned`,
857
- # `serverless`, `parallelquery`, or `global`.
857
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
858
858
  # @option options [Types::ScalingConfiguration] :scaling_configuration
859
859
  # For DB clusters in `serverless` DB engine mode, the scaling properties
860
860
  # of the DB cluster.
@@ -612,7 +612,7 @@ module Aws::RDS
612
612
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
613
613
  # @option options [String] :engine_mode
614
614
  # The DB engine mode of the DB cluster, either `provisioned`,
615
- # `serverless`, or `parallelquery`.
615
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
616
616
  # @option options [Types::ScalingConfiguration] :scaling_configuration
617
617
  # For DB clusters in `serverless` DB engine mode, the scaling properties
618
618
  # of the DB cluster.
@@ -1025,8 +1025,8 @@ module Aws::RDS
1025
1025
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
1026
1026
  # @option options [String] :db_parameter_group_name
1027
1027
  # The name of the DB parameter group to associate with this DB instance.
1028
- # If this argument is omitted, the default DBParameterGroup for the
1029
- # specified engine is used.
1028
+ # If you do not specify a value for `DBParameterGroupName`, then the
1029
+ # default `DBParameterGroup` for the specified DB engine is used.
1030
1030
  #
1031
1031
  # Constraints:
1032
1032
  #
@@ -1460,6 +1460,7 @@ module Aws::RDS
1460
1460
  # auto_minor_version_upgrade: false,
1461
1461
  # iops: 1,
1462
1462
  # option_group_name: "String",
1463
+ # db_parameter_group_name: "String",
1463
1464
  # publicly_accessible: false,
1464
1465
  # tags: [
1465
1466
  # {
@@ -1540,6 +1541,21 @@ module Aws::RDS
1540
1541
  # @option options [String] :option_group_name
1541
1542
  # The option group the DB instance is associated with. If omitted, the
1542
1543
  # option group associated with the source instance is used.
1544
+ # @option options [String] :db_parameter_group_name
1545
+ # The name of the DB parameter group to associate with this DB instance.
1546
+ #
1547
+ # If you do not specify a value for `DBParameterGroupName`, then Amazon
1548
+ # RDS uses the `DBParameterGroup` of source DB instance for a same
1549
+ # region Read Replica, or the default `DBParameterGroup` for the
1550
+ # specified DB engine for a cross region Read Replica.
1551
+ #
1552
+ # Constraints:
1553
+ #
1554
+ # * Must be 1 to 255 letters, numbers, or hyphens.
1555
+ #
1556
+ # * First character must be a letter
1557
+ #
1558
+ # * Can't end with a hyphen or contain two consecutive hyphens
1543
1559
  # @option options [Boolean] :publicly_accessible
1544
1560
  # A value that indicates whether the DB instance is publicly accessible.
1545
1561
  # When the DB instance is publicly accessible, it is an Internet-facing
@@ -2460,17 +2476,17 @@ module Aws::RDS
2460
2476
  # })
2461
2477
  # @param [Hash] options ({})
2462
2478
  # @option options [Integer] :backup_retention_period
2463
- # The number of days to retain automated backups. Setting this parameter
2464
- # to a positive number enables backups. Setting this parameter to 0
2465
- # disables automated backups.
2479
+ # The number of days for which automated backups are retained. Setting
2480
+ # this parameter to a positive number enables backups. Setting this
2481
+ # parameter to 0 disables automated backups.
2466
2482
  #
2467
2483
  # Default: 1
2468
2484
  #
2469
2485
  # Constraints:
2470
2486
  #
2471
- # * Must be a value from 0 to 8
2487
+ # * Must be a value from 0 to 35.
2472
2488
  #
2473
- # ^
2489
+ # * Can't be set to 0 if the DB instance is a source to Read Replicas.
2474
2490
  # @option options [String] :preferred_backup_window
2475
2491
  # The daily time range during which automated backups are created if
2476
2492
  # automated backups are enabled, using the `BackupRetentionPeriod`
@@ -2780,8 +2796,9 @@ module Aws::RDS
2780
2796
  # instance uses its default processor features.
2781
2797
  # @option options [String] :db_parameter_group_name
2782
2798
  # The name of the DB parameter group to associate with this DB instance.
2783
- # If this argument is omitted, the default DBParameterGroup for the
2784
- # specified engine is used.
2799
+ #
2800
+ # If you do not specify a value for `DBParameterGroupName`, then the
2801
+ # default `DBParameterGroup` for the specified DB engine is used.
2785
2802
  #
2786
2803
  # Constraints:
2787
2804
  #
@@ -774,8 +774,9 @@ module Aws::RDS
774
774
  # instance uses its default processor features.
775
775
  # @option options [String] :db_parameter_group_name
776
776
  # The name of the DB parameter group to associate with this DB instance.
777
- # If this argument is omitted, the default DBParameterGroup for the
778
- # specified engine is used.
777
+ #
778
+ # If you do not specify a value for `DBParameterGroupName`, then the
779
+ # default `DBParameterGroup` for the specified DB engine is used.
779
780
  #
780
781
  # Constraints:
781
782
  #
@@ -337,7 +337,7 @@ module Aws::RDS
337
337
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
338
338
  # @option options [String] :engine_mode
339
339
  # The DB engine mode of the DB cluster, either `provisioned`,
340
- # `serverless`, `parallelquery`, or `global`.
340
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
341
341
  # @option options [Types::ScalingConfiguration] :scaling_configuration
342
342
  # For DB clusters in `serverless` DB engine mode, the scaling properties
343
343
  # of the DB cluster.
@@ -862,8 +862,8 @@ module Aws::RDS
862
862
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
863
863
  # @option options [String] :db_parameter_group_name
864
864
  # The name of the DB parameter group to associate with this DB instance.
865
- # If this argument is omitted, the default DBParameterGroup for the
866
- # specified engine is used.
865
+ # If you do not specify a value for `DBParameterGroupName`, then the
866
+ # default `DBParameterGroup` for the specified DB engine is used.
867
867
  #
868
868
  # Constraints:
869
869
  #
@@ -1320,7 +1320,7 @@ module Aws::RDS
1320
1320
  # @return [String]
1321
1321
  #
1322
1322
  # @!attribute [rw] endpoint_type
1323
- # The type of the endpoint. One of: `READER`, `ANY`.
1323
+ # The type of the endpoint. One of: `READER`, `WRITER`, `ANY`.
1324
1324
  # @return [String]
1325
1325
  #
1326
1326
  # @!attribute [rw] static_members
@@ -1713,7 +1713,7 @@ module Aws::RDS
1713
1713
  #
1714
1714
  # @!attribute [rw] engine_mode
1715
1715
  # The DB engine mode of the DB cluster, either `provisioned`,
1716
- # `serverless`, `parallelquery`, or `global`.
1716
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
1717
1717
  # @return [String]
1718
1718
  #
1719
1719
  # @!attribute [rw] scaling_configuration
@@ -2414,8 +2414,9 @@ module Aws::RDS
2414
2414
  #
2415
2415
  # @!attribute [rw] db_parameter_group_name
2416
2416
  # The name of the DB parameter group to associate with this DB
2417
- # instance. If this argument is omitted, the default DBParameterGroup
2418
- # for the specified engine is used.
2417
+ # instance. If you do not specify a value for `DBParameterGroupName`,
2418
+ # then the default `DBParameterGroup` for the specified DB engine is
2419
+ # used.
2419
2420
  #
2420
2421
  # Constraints:
2421
2422
  #
@@ -2961,6 +2962,7 @@ module Aws::RDS
2961
2962
  # auto_minor_version_upgrade: false,
2962
2963
  # iops: 1,
2963
2964
  # option_group_name: "String",
2965
+ # db_parameter_group_name: "String",
2964
2966
  # publicly_accessible: false,
2965
2967
  # tags: [
2966
2968
  # {
@@ -3094,6 +3096,24 @@ module Aws::RDS
3094
3096
  # option group associated with the source instance is used.
3095
3097
  # @return [String]
3096
3098
  #
3099
+ # @!attribute [rw] db_parameter_group_name
3100
+ # The name of the DB parameter group to associate with this DB
3101
+ # instance.
3102
+ #
3103
+ # If you do not specify a value for `DBParameterGroupName`, then
3104
+ # Amazon RDS uses the `DBParameterGroup` of source DB instance for a
3105
+ # same region Read Replica, or the default `DBParameterGroup` for the
3106
+ # specified DB engine for a cross region Read Replica.
3107
+ #
3108
+ # Constraints:
3109
+ #
3110
+ # * Must be 1 to 255 letters, numbers, or hyphens.
3111
+ #
3112
+ # * First character must be a letter
3113
+ #
3114
+ # * Can't end with a hyphen or contain two consecutive hyphens
3115
+ # @return [String]
3116
+ #
3097
3117
  # @!attribute [rw] publicly_accessible
3098
3118
  # A value that indicates whether the DB instance is publicly
3099
3119
  # accessible. When the DB instance is publicly accessible, it is an
@@ -3361,6 +3381,7 @@ module Aws::RDS
3361
3381
  :auto_minor_version_upgrade,
3362
3382
  :iops,
3363
3383
  :option_group_name,
3384
+ :db_parameter_group_name,
3364
3385
  :publicly_accessible,
3365
3386
  :tags,
3366
3387
  :db_subnet_group_name,
@@ -4179,7 +4200,7 @@ module Aws::RDS
4179
4200
  #
4180
4201
  # @!attribute [rw] engine_mode
4181
4202
  # The DB engine mode of the DB cluster, either `provisioned`,
4182
- # `serverless`, or `parallelquery`.
4203
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
4183
4204
  # @return [String]
4184
4205
  #
4185
4206
  # @!attribute [rw] scaling_configuration_info
@@ -4456,7 +4477,8 @@ module Aws::RDS
4456
4477
  # @return [String]
4457
4478
  #
4458
4479
  # @!attribute [rw] custom_endpoint_type
4459
- # The type associated with a custom endpoint. One of: `READER`, `ANY`.
4480
+ # The type associated with a custom endpoint. One of: `READER`,
4481
+ # `WRITER`, `ANY`.
4460
4482
  # @return [String]
4461
4483
  #
4462
4484
  # @!attribute [rw] static_members
@@ -4518,8 +4540,8 @@ module Aws::RDS
4518
4540
  # @return [String]
4519
4541
  #
4520
4542
  # @!attribute [rw] is_cluster_writer
4521
- # A value that indicates whehter the cluster member is the primary
4522
- # instance for the DB cluster.
4543
+ # Value that is `true` if the cluster member is the primary instance
4544
+ # for the DB cluster and `false` otherwise.
4523
4545
  # @return [Boolean]
4524
4546
  #
4525
4547
  # @!attribute [rw] db_cluster_parameter_group_status
@@ -5804,7 +5826,7 @@ module Aws::RDS
5804
5826
  # * `RestoreDBInstanceFromDBSnapshot`
5805
5827
  #
5806
5828
  # @!attribute [rw] db_parameter_group_name
5807
- # The name of the DP parameter group.
5829
+ # The name of the DB parameter group.
5808
5830
  # @return [String]
5809
5831
  #
5810
5832
  # @!attribute [rw] parameter_apply_status
@@ -9889,7 +9911,7 @@ module Aws::RDS
9889
9911
  # @return [String]
9890
9912
  #
9891
9913
  # @!attribute [rw] endpoint_type
9892
- # The type of the endpoint. One of: `READER`, `ANY`.
9914
+ # The type of the endpoint. One of: `READER`, `WRITER`, `ANY`.
9893
9915
  # @return [String]
9894
9916
  #
9895
9917
  # @!attribute [rw] static_members
@@ -11129,7 +11151,8 @@ module Aws::RDS
11129
11151
  #
11130
11152
  # Constraints:
11131
11153
  #
11132
- # * If supplied, must match the name of an existing DBParameterGroup.
11154
+ # * If supplied, must match the name of an existing
11155
+ # `DBParameterGroup`.
11133
11156
  #
11134
11157
  # ^
11135
11158
  # @return [String]
@@ -12598,17 +12621,18 @@ module Aws::RDS
12598
12621
  # @return [String]
12599
12622
  #
12600
12623
  # @!attribute [rw] backup_retention_period
12601
- # The number of days to retain automated backups. Setting this
12602
- # parameter to a positive number enables backups. Setting this
12624
+ # The number of days for which automated backups are retained. Setting
12625
+ # this parameter to a positive number enables backups. Setting this
12603
12626
  # parameter to 0 disables automated backups.
12604
12627
  #
12605
12628
  # Default: 1
12606
12629
  #
12607
12630
  # Constraints:
12608
12631
  #
12609
- # * Must be a value from 0 to 8
12632
+ # * Must be a value from 0 to 35.
12610
12633
  #
12611
- # ^
12634
+ # * Can't be set to 0 if the DB instance is a source to Read
12635
+ # Replicas.
12612
12636
  # @return [Integer]
12613
12637
  #
12614
12638
  # @!attribute [rw] preferred_backup_window
@@ -13258,7 +13282,7 @@ module Aws::RDS
13258
13282
  #
13259
13283
  # Constraints:
13260
13284
  #
13261
- # * Must match the name of an existing DBParameterGroup.
13285
+ # * Must match the name of an existing `DBParameterGroup`.
13262
13286
  #
13263
13287
  # ^
13264
13288
  # @return [String]
@@ -13920,7 +13944,7 @@ module Aws::RDS
13920
13944
  #
13921
13945
  # @!attribute [rw] engine_mode
13922
13946
  # The DB engine mode of the DB cluster, either `provisioned`,
13923
- # `serverless`, or `parallelquery`.
13947
+ # `serverless`, `parallelquery`, `global`, or `multimaster`.
13924
13948
  # @return [String]
13925
13949
  #
13926
13950
  # @!attribute [rw] scaling_configuration
@@ -14570,8 +14594,10 @@ module Aws::RDS
14570
14594
  #
14571
14595
  # @!attribute [rw] db_parameter_group_name
14572
14596
  # The name of the DB parameter group to associate with this DB
14573
- # instance. If this argument is omitted, the default DBParameterGroup
14574
- # for the specified engine is used.
14597
+ # instance.
14598
+ #
14599
+ # If you do not specify a value for `DBParameterGroupName`, then the
14600
+ # default `DBParameterGroup` for the specified DB engine is used.
14575
14601
  #
14576
14602
  # Constraints:
14577
14603
  #
@@ -14831,8 +14857,10 @@ module Aws::RDS
14831
14857
  #
14832
14858
  # @!attribute [rw] db_parameter_group_name
14833
14859
  # The name of the DB parameter group to associate with this DB
14834
- # instance. If this argument is omitted, the default parameter group
14835
- # for the specified engine is used.
14860
+ # instance.
14861
+ #
14862
+ # If you do not specify a value for `DBParameterGroupName`, then the
14863
+ # default `DBParameterGroup` for the specified DB engine is used.
14836
14864
  # @return [String]
14837
14865
  #
14838
14866
  # @!attribute [rw] backup_retention_period
@@ -15482,8 +15510,10 @@ module Aws::RDS
15482
15510
  #
15483
15511
  # @!attribute [rw] db_parameter_group_name
15484
15512
  # The name of the DB parameter group to associate with this DB
15485
- # instance. If this argument is omitted, the default DBParameterGroup
15486
- # for the specified engine is used.
15513
+ # instance.
15514
+ #
15515
+ # If you do not specify a value for `DBParameterGroupName`, then the
15516
+ # default `DBParameterGroup` for the specified DB engine is used.
15487
15517
  #
15488
15518
  # Constraints:
15489
15519
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.65.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-22 00:00:00.000000000 Z
11
+ date: 2019-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4