aws-sdk-rds 1.277.0 → 1.285.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.
@@ -987,6 +987,8 @@ module Aws::RDS
987
987
  CopyDBSnapshotMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
988
988
  CopyDBSnapshotMessage.add_member(:target_custom_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "TargetCustomAvailabilityZone"))
989
989
  CopyDBSnapshotMessage.add_member(:copy_option_group, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyOptionGroup"))
990
+ CopyDBSnapshotMessage.add_member(:snapshot_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotAvailabilityZone"))
991
+ CopyDBSnapshotMessage.add_member(:snapshot_target, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotTarget"))
990
992
  CopyDBSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
991
993
  CopyDBSnapshotMessage.struct_class = Types::CopyDBSnapshotMessage
992
994
 
@@ -1228,6 +1230,7 @@ module Aws::RDS
1228
1230
  CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
1229
1231
  CreateDBInstanceReadReplicaMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
1230
1232
  CreateDBInstanceReadReplicaMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
1233
+ CreateDBInstanceReadReplicaMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
1231
1234
  CreateDBInstanceReadReplicaMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
1232
1235
  CreateDBInstanceReadReplicaMessage.add_member(:source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterIdentifier"))
1233
1236
  CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
@@ -1439,6 +1442,7 @@ module Aws::RDS
1439
1442
  DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
1440
1443
  DBCluster.add_member(:domain_memberships, Shapes::ShapeRef.new(shape: DomainMembershipList, location_name: "DomainMemberships"))
1441
1444
  DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
1445
+ DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
1442
1446
  DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
1443
1447
  DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
1444
1448
  DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
@@ -2109,6 +2113,7 @@ module Aws::RDS
2109
2113
  DBSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
2110
2114
  DBSnapshot.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
2111
2115
  DBSnapshot.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
2116
+ DBSnapshot.add_member(:snapshot_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotAvailabilityZone"))
2112
2117
  DBSnapshot.struct_class = Types::DBSnapshot
2113
2118
 
2114
2119
  DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
@@ -6495,6 +6500,7 @@ module Aws::RDS
6495
6500
  o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
6496
6501
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
6497
6502
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
6503
+ o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
6498
6504
  end)
6499
6505
 
6500
6506
  api.add_operation(:start_db_instance, Seahorse::Model::Operation.new.tap do |o|
@@ -6569,6 +6575,7 @@ module Aws::RDS
6569
6575
  o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
6570
6576
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
6571
6577
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
6578
+ o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
6572
6579
  end)
6573
6580
 
6574
6581
  api.add_operation(:stop_db_instance, Seahorse::Model::Operation.new.tap do |o|
@@ -480,6 +480,14 @@ module Aws::RDS
480
480
  data[:tag_list]
481
481
  end
482
482
 
483
+ # Contains a user-supplied global database cluster identifier. This
484
+ # identifier is the unique key that identifies a global database
485
+ # cluster.
486
+ # @return [String]
487
+ def global_cluster_identifier
488
+ data[:global_cluster_identifier]
489
+ end
490
+
483
491
  # The status of write forwarding for a secondary cluster in an Aurora
484
492
  # global database.
485
493
  # @return [String]
@@ -227,17 +227,20 @@ module Aws::RDS
227
227
  data[:read_replica_db_cluster_identifiers]
228
228
  end
229
229
 
230
- # The open mode of an Oracle read replica. The default is
231
- # `open-read-only`. For more information, see [Working with Oracle Read
232
- # Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
230
+ # The open mode of a Db2 or an Oracle read replica. The default is
231
+ # `open-read-only`. For more information, see [Working with read
232
+ # replicas for Amazon RDS for Db2][1] and [Working with read replicas
233
+ # for Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
233
234
  #
234
- # <note markdown="1"> This attribute is only supported in RDS for Oracle.
235
+ # <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
236
+ # RDS Custom for Oracle.
235
237
  #
236
238
  # </note>
237
239
  #
238
240
  #
239
241
  #
240
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
242
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
243
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
241
244
  # @return [String]
242
245
  def replica_mode
243
246
  data[:replica_mode]
@@ -694,7 +697,8 @@ module Aws::RDS
694
697
  end
695
698
 
696
699
  # The location where automated backups and manual snapshots are stored:
697
- # Amazon Web Services Outposts or the Amazon Web Services Region.
700
+ # Dedicated Local Zones, Amazon Web Services Outposts or the Amazon Web
701
+ # Services Region.
698
702
  # @return [String]
699
703
  def backup_target
700
704
  data[:backup_target]
@@ -1547,12 +1551,8 @@ module Aws::RDS
1547
1551
  # set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
1548
1552
  # deployment.
1549
1553
  #
1550
- # This setting doesn't apply to the following DB instances:
1551
- #
1552
- # * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
1553
- # the DB cluster.)
1554
- #
1555
- # * RDS Custom
1554
+ # This setting doesn't apply to Amazon Aurora because the DB instance
1555
+ # Availability Zones (AZs) are managed by the DB cluster.
1556
1556
  # @option options [String] :engine_version
1557
1557
  # The version number of the database engine to use.
1558
1558
  #
@@ -2121,6 +2121,8 @@ module Aws::RDS
2121
2121
  #
2122
2122
  # Valid Values:
2123
2123
  #
2124
+ # * `local` (Dedicated Local Zone)
2125
+ #
2124
2126
  # * `outposts` (Amazon Web Services Outposts)
2125
2127
  #
2126
2128
  # * `region` (Amazon Web Services Region)
@@ -2332,6 +2334,7 @@ module Aws::RDS
2332
2334
  # network_type: "String",
2333
2335
  # storage_throughput: 1,
2334
2336
  # enable_customer_owned_ip: false,
2337
+ # backup_target: "String",
2335
2338
  # allocated_storage: 1,
2336
2339
  # source_db_cluster_identifier: "String",
2337
2340
  # dedicated_log_volume: false,
@@ -2411,6 +2414,16 @@ module Aws::RDS
2411
2414
  # The name of the DB parameter group to associate with this read replica
2412
2415
  # DB instance.
2413
2416
  #
2417
+ # For the Db2 DB engine, if your source DB instance uses the Bring Your
2418
+ # Own License model, then a custom parameter group must be associated
2419
+ # with the replica. For a same Amazon Web Services Region replica, if
2420
+ # you don't specify a custom parameter group, Amazon RDS associates the
2421
+ # custom parameter group associated with the source DB instance. For a
2422
+ # cross-Region replica, you must specify a custom parameter group. This
2423
+ # custom parameter group must include your IBM Site ID and IBM Customer
2424
+ # ID. For more information, see [ IBM IDs for Bring Your Own License for
2425
+ # Db2][1].
2426
+ #
2414
2427
  # For Single-AZ or Multi-AZ DB instance read replica instances, if you
2415
2428
  # don't specify a value for `DBParameterGroupName`, then Amazon RDS
2416
2429
  # uses the `DBParameterGroup` of the source DB instance for a same
@@ -2423,9 +2436,9 @@ module Aws::RDS
2423
2436
  #
2424
2437
  # Specifying a parameter group for this operation is only supported for
2425
2438
  # MySQL DB instances for cross-Region read replicas, for Multi-AZ DB
2426
- # cluster read replica instances, and for Oracle DB instances. It isn't
2427
- # supported for MySQL DB instances for same Region read replicas or for
2428
- # RDS Custom.
2439
+ # cluster read replica instances, for Db2 DB instances, and for Oracle
2440
+ # DB instances. It isn't supported for MySQL DB instances for same
2441
+ # Region read replicas or for RDS Custom.
2429
2442
  #
2430
2443
  # Constraints:
2431
2444
  #
@@ -2434,6 +2447,10 @@ module Aws::RDS
2434
2447
  # * First character must be a letter.
2435
2448
  #
2436
2449
  # * Can't end with a hyphen or contain two consecutive hyphens.
2450
+ #
2451
+ #
2452
+ #
2453
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
2437
2454
  # @option options [Boolean] :publicly_accessible
2438
2455
  # Specifies whether the DB instance is publicly accessible.
2439
2456
  #
@@ -2782,31 +2799,50 @@ module Aws::RDS
2782
2799
  #
2783
2800
  # Example: `123.124.125.126,234.235.236.237`
2784
2801
  # @option options [String] :replica_mode
2785
- # The open mode of the replica database: mounted or read-only.
2802
+ # The open mode of the replica database.
2786
2803
  #
2787
- # <note markdown="1"> This parameter is only supported for Oracle DB instances.
2804
+ # <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
2805
+ # instances.
2788
2806
  #
2789
2807
  # </note>
2790
2808
  #
2791
- # Mounted DB replicas are included in Oracle Database Enterprise
2792
- # Edition. The main use case for mounted replicas is cross-Region
2793
- # disaster recovery. The primary database doesn't use Active Data Guard
2794
- # to transmit information to the mounted replica. Because it doesn't
2795
- # accept user connections, a mounted replica can't serve a read-only
2796
- # workload.
2809
+ # Db2
2797
2810
  #
2798
- # You can create a combination of mounted and read-only DB replicas for
2799
- # the same primary DB instance. For more information, see [Working with
2800
- # Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
2801
- # Guide*.
2811
+ # : Standby DB replicas are included in Db2 Advanced Edition (AE) and
2812
+ # Db2 Standard Edition (SE). The main use case for standby replicas is
2813
+ # cross-Region disaster recovery. Because it doesn't accept user
2814
+ # connections, a standby replica can't serve a read-only workload.
2815
+ #
2816
+ # You can create a combination of standby and read-only DB replicas
2817
+ # for the same primary DB instance. For more information, see [Working
2818
+ # with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
2819
+ # User Guide*.
2820
+ #
2821
+ # To create standby DB replicas for RDS for Db2, set this parameter to
2822
+ # `mounted`.
2823
+ #
2824
+ # Oracle
2825
+ #
2826
+ # : Mounted DB replicas are included in Oracle Database Enterprise
2827
+ # Edition. The main use case for mounted replicas is cross-Region
2828
+ # disaster recovery. The primary database doesn't use Active Data
2829
+ # Guard to transmit information to the mounted replica. Because it
2830
+ # doesn't accept user connections, a mounted replica can't serve a
2831
+ # read-only workload.
2802
2832
  #
2803
- # For RDS Custom, you must specify this parameter and set it to
2804
- # `mounted`. The value won't be set by default. After replica creation,
2805
- # you can manage the open mode manually.
2833
+ # You can create a combination of mounted and read-only DB replicas
2834
+ # for the same primary DB instance. For more information, see [Working
2835
+ # with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
2836
+ # User Guide*.
2806
2837
  #
2838
+ # For RDS Custom, you must specify this parameter and set it to
2839
+ # `mounted`. The value won't be set by default. After replica
2840
+ # creation, you can manage the open mode manually.
2807
2841
  #
2808
2842
  #
2809
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
2843
+ #
2844
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
2845
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
2810
2846
  # @option options [Integer] :max_allocated_storage
2811
2847
  # The upper limit in gibibytes (GiB) to which Amazon RDS can
2812
2848
  # automatically scale the storage of the DB instance.
@@ -2883,6 +2919,14 @@ module Aws::RDS
2883
2919
  #
2884
2920
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
2885
2921
  # [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
2922
+ # @option options [String] :backup_target
2923
+ # The location where RDS stores automated backups and manual snapshots.
2924
+ #
2925
+ # Valid Values:
2926
+ #
2927
+ # * `local` for Dedicated Local Zones
2928
+ #
2929
+ # * `region` for Amazon Web Services Region
2886
2930
  # @option options [Integer] :allocated_storage
2887
2931
  # The amount of storage (in gibibytes) to allocate initially for the
2888
2932
  # read replica. Follow the allocation rules specified in
@@ -3986,26 +4030,50 @@ module Aws::RDS
3986
4030
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
3987
4031
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
3988
4032
  # @option options [String] :replica_mode
3989
- # A value that sets the open mode of a replica database to either
3990
- # mounted or read-only.
4033
+ # The open mode of a replica database.
3991
4034
  #
3992
- # <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
4035
+ # <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
4036
+ # instances.
3993
4037
  #
3994
4038
  # </note>
3995
4039
  #
3996
- # Mounted DB replicas are included in Oracle Enterprise Edition. The
3997
- # main use case for mounted replicas is cross-Region disaster recovery.
3998
- # The primary database doesn't use Active Data Guard to transmit
3999
- # information to the mounted replica. Because it doesn't accept user
4000
- # connections, a mounted replica can't serve a read-only workload. For
4001
- # more information, see [Working with Oracle Read Replicas for Amazon
4002
- # RDS][1] in the *Amazon RDS User Guide*.
4040
+ # Db2
4003
4041
  #
4004
- # This setting doesn't apply to RDS Custom DB instances.
4042
+ # : Standby DB replicas are included in Db2 Advanced Edition (AE) and
4043
+ # Db2 Standard Edition (SE). The main use case for standby replicas is
4044
+ # cross-Region disaster recovery. Because it doesn't accept user
4045
+ # connections, a standby replica can't serve a read-only workload.
4005
4046
  #
4047
+ # You can create a combination of standby and read-only DB replicas
4048
+ # for the same primary DB instance. For more information, see [Working
4049
+ # with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
4050
+ # User Guide*.
4006
4051
  #
4052
+ # To create standby DB replicas for RDS for Db2, set this parameter to
4053
+ # `mounted`.
4007
4054
  #
4008
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
4055
+ # Oracle
4056
+ #
4057
+ # : Mounted DB replicas are included in Oracle Database Enterprise
4058
+ # Edition. The main use case for mounted replicas is cross-Region
4059
+ # disaster recovery. The primary database doesn't use Active Data
4060
+ # Guard to transmit information to the mounted replica. Because it
4061
+ # doesn't accept user connections, a mounted replica can't serve a
4062
+ # read-only workload.
4063
+ #
4064
+ # You can create a combination of mounted and read-only DB replicas
4065
+ # for the same primary DB instance. For more information, see [Working
4066
+ # with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
4067
+ # User Guide*.
4068
+ #
4069
+ # For RDS Custom, you must specify this parameter and set it to
4070
+ # `mounted`. The value won't be set by default. After replica
4071
+ # creation, you can manage the open mode manually.
4072
+ #
4073
+ #
4074
+ #
4075
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
4076
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
4009
4077
  # @option options [Boolean] :enable_customer_owned_ip
4010
4078
  # Specifies whether to enable a customer-owned IP address (CoIP) for an
4011
4079
  # RDS on Outposts DB instance.
@@ -4817,6 +4885,8 @@ module Aws::RDS
4817
4885
  #
4818
4886
  # Valid Values:
4819
4887
  #
4888
+ # * `local` (Dedicated Local Zone)
4889
+ #
4820
4890
  # * `outposts` (Amazon Web Services Outposts)
4821
4891
  #
4822
4892
  # * `region` (Amazon Web Services Region)
@@ -256,8 +256,8 @@ module Aws::RDS
256
256
  data[:snapshot_database_time]
257
257
  end
258
258
 
259
- # Specifies where manual snapshots are stored: Amazon Web Services
260
- # Outposts or the Amazon Web Services Region.
259
+ # Specifies where manual snapshots are stored: Dedicated Local Zones,
260
+ # Amazon Web Services Outposts or the Amazon Web Services Region.
261
261
  # @return [String]
262
262
  def snapshot_target
263
263
  data[:snapshot_target]
@@ -292,6 +292,14 @@ module Aws::RDS
292
292
  data[:multi_tenant]
293
293
  end
294
294
 
295
+ # Specifies the name of the Availability Zone where RDS stores the DB
296
+ # snapshot. This value is valid only for snapshots that RDS stores on a
297
+ # Dedicated Local Zone.
298
+ # @return [String]
299
+ def snapshot_availability_zone
300
+ data[:snapshot_availability_zone]
301
+ end
302
+
295
303
  # @!endgroup
296
304
 
297
305
  # @return [Client]
@@ -485,6 +493,8 @@ module Aws::RDS
485
493
  # option_group_name: "String",
486
494
  # target_custom_availability_zone: "String",
487
495
  # copy_option_group: false,
496
+ # snapshot_availability_zone: "String",
497
+ # snapshot_target: "String",
488
498
  # source_region: "String",
489
499
  # })
490
500
  # @param [Hash] options ({})
@@ -631,6 +641,20 @@ module Aws::RDS
631
641
  # source DB snapshot to the target Amazon Web Services account and
632
642
  # associate with the target DB snapshot. The associated option group can
633
643
  # be copied only with cross-account snapshot copy calls.
644
+ # @option options [String] :snapshot_availability_zone
645
+ # Specifies the name of the Availability Zone where RDS stores the DB
646
+ # snapshot. This value is valid only for snapshots that RDS stores on a
647
+ # Dedicated Local Zone.
648
+ # @option options [String] :snapshot_target
649
+ # Configures the location where RDS will store copied snapshots.
650
+ #
651
+ # Valid Values:
652
+ #
653
+ # * `local` (Dedicated Local Zone)
654
+ #
655
+ # * `outposts` (Amazon Web Services Outposts)
656
+ #
657
+ # * `region` (Amazon Web Services Region)
634
658
  # @option options [String] :source_region
635
659
  # The source region of the snapshot. This is only needed when the
636
660
  # shapshot is encrypted and in a different region.
@@ -1139,8 +1163,9 @@ module Aws::RDS
1139
1163
  # Specifies where automated backups and manual snapshots are stored for
1140
1164
  # the restored DB instance.
1141
1165
  #
1142
- # Possible values are `outposts` (Amazon Web Services Outposts) and
1143
- # `region` (Amazon Web Services Region). The default is `region`.
1166
+ # Possible values are `local` (Dedicated Local Zone), `outposts` (Amazon
1167
+ # Web Services Outposts), and `region` (Amazon Web Services Region). The
1168
+ # default is `region`.
1144
1169
  #
1145
1170
  # For more information, see [Working with Amazon RDS on Amazon Web
1146
1171
  # Services Outposts][1] in the *Amazon RDS User Guide*.
@@ -53,7 +53,10 @@ module Aws::RDS
53
53
  data[:subnet_group_status]
54
54
  end
55
55
 
56
- # Contains a list of `Subnet` elements.
56
+ # Contains a list of `Subnet` elements. The list of subnets shown here
57
+ # might not reflect the current state of your VPC. For the most
58
+ # up-to-date information, we recommend checking your VPC configuration
59
+ # directly.
57
60
  # @return [Array<Types::Subnet>]
58
61
  def subnets
59
62
  data[:subnets]
@@ -243,7 +243,6 @@ module Aws::RDS
243
243
  #
244
244
  # Additionally, error classes are dynamically generated for service errors based on the error code
245
245
  # if they are not defined above.
246
- # Some existing error classes may use a different class name than the one documented.
247
246
  module Errors
248
247
 
249
248
  extend Aws::Errors::DynamicErrors
@@ -1696,12 +1696,8 @@ module Aws::RDS
1696
1696
  # set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
1697
1697
  # deployment.
1698
1698
  #
1699
- # This setting doesn't apply to the following DB instances:
1700
- #
1701
- # * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
1702
- # the DB cluster.)
1703
- #
1704
- # * RDS Custom
1699
+ # This setting doesn't apply to Amazon Aurora because the DB instance
1700
+ # Availability Zones (AZs) are managed by the DB cluster.
1705
1701
  # @option options [String] :engine_version
1706
1702
  # The version number of the database engine to use.
1707
1703
  #
@@ -2270,6 +2266,8 @@ module Aws::RDS
2270
2266
  #
2271
2267
  # Valid Values:
2272
2268
  #
2269
+ # * `local` (Dedicated Local Zone)
2270
+ #
2273
2271
  # * `outposts` (Amazon Web Services Outposts)
2274
2272
  #
2275
2273
  # * `region` (Amazon Web Services Region)