aws-sdk-rds 1.277.0 → 1.282.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.
@@ -1070,7 +1070,7 @@ module Aws::RDS
1070
1070
  #
1071
1071
  # Constraints:
1072
1072
  #
1073
- # * Must be between 0 and 3600.
1073
+ # * Must be between 0 and 300.
1074
1074
  #
1075
1075
  # ^
1076
1076
  # @return [Integer]
@@ -1090,15 +1090,20 @@ module Aws::RDS
1090
1090
  # specify one or more SQL statements for the proxy to run when opening
1091
1091
  # each new database connection. The setting is typically used with
1092
1092
  # `SET` statements to make sure that each connection has identical
1093
- # settings. Make sure that the query you add is valid. To include
1094
- # multiple variables in a single `SET` statement, use comma
1095
- # separators.
1093
+ # settings. Make sure the query added here is valid. This is an
1094
+ # optional field, so you can choose to leave it empty. For including
1095
+ # multiple variables in a single SET statement, use a comma separator.
1096
1096
  #
1097
1097
  # For example: `SET variable1=value1, variable2=value2`
1098
1098
  #
1099
- # For multiple statements, use semicolons as the separator.
1100
- #
1101
1099
  # Default: no initialization query
1100
+ #
1101
+ # Since you can access initialization query as part of target group
1102
+ # configuration, it is not protected by authentication or
1103
+ # cryptographic methods. Anyone with access to view or manage your
1104
+ # proxy target group configuration can view the initialization query.
1105
+ # You should not add sensitive data, such as passwords or long-lived
1106
+ # encryption keys, to this option.
1102
1107
  # @return [String]
1103
1108
  #
1104
1109
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfiguration AWS API Documentation
@@ -1152,12 +1157,20 @@ module Aws::RDS
1152
1157
  #
1153
1158
  # @!attribute [rw] init_query
1154
1159
  # One or more SQL statements for the proxy to run when opening each
1155
- # new database connection. Typically used with `SET` statements to
1156
- # make sure that each connection has identical settings such as time
1157
- # zone and character set. This setting is empty by default. For
1158
- # multiple statements, use semicolons as the separator. You can also
1159
- # include multiple variables in a single `SET` statement, such as `SET
1160
- # x=1, y=2`.
1160
+ # new database connection. The setting is typically used with `SET`
1161
+ # statements to make sure that each connection has identical settings.
1162
+ # The query added here must be valid. For including multiple variables
1163
+ # in a single SET statement, use a comma separator. This is an
1164
+ # optional field.
1165
+ #
1166
+ # For example: `SET variable1=value1, variable2=value2`
1167
+ #
1168
+ # Since you can access initialization query as part of target group
1169
+ # configuration, it is not protected by authentication or
1170
+ # cryptographic methods. Anyone with access to view or manage your
1171
+ # proxy target group configuration can view the initialization query.
1172
+ # You should not add sensitive data, such as passwords or long-lived
1173
+ # encryption keys, to this option.
1161
1174
  # @return [String]
1162
1175
  #
1163
1176
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfigurationInfo AWS API Documentation
@@ -1712,6 +1725,24 @@ module Aws::RDS
1712
1725
  # can be copied only with cross-account snapshot copy calls.
1713
1726
  # @return [Boolean]
1714
1727
  #
1728
+ # @!attribute [rw] snapshot_availability_zone
1729
+ # Specifies the name of the Availability Zone where RDS stores the DB
1730
+ # snapshot. This value is valid only for snapshots that RDS stores on
1731
+ # a Dedicated Local Zone.
1732
+ # @return [String]
1733
+ #
1734
+ # @!attribute [rw] snapshot_target
1735
+ # Configures the location where RDS will store copied snapshots.
1736
+ #
1737
+ # Valid Values:
1738
+ #
1739
+ # * `local` (Dedicated Local Zone)
1740
+ #
1741
+ # * `outposts` (Amazon Web Services Outposts)
1742
+ #
1743
+ # * `region` (Amazon Web Services Region)
1744
+ # @return [String]
1745
+ #
1715
1746
  # @!attribute [rw] source_region
1716
1747
  # The source region of the snapshot. This is only needed when the
1717
1748
  # shapshot is encrypted and in a different region.
@@ -1729,6 +1760,8 @@ module Aws::RDS
1729
1760
  :option_group_name,
1730
1761
  :target_custom_availability_zone,
1731
1762
  :copy_option_group,
1763
+ :snapshot_availability_zone,
1764
+ :snapshot_target,
1732
1765
  :source_region)
1733
1766
  SENSITIVE = []
1734
1767
  include Aws::Structure
@@ -4635,6 +4668,8 @@ module Aws::RDS
4635
4668
  #
4636
4669
  # Valid Values:
4637
4670
  #
4671
+ # * `local` (Dedicated Local Zone)
4672
+ #
4638
4673
  # * `outposts` (Amazon Web Services Outposts)
4639
4674
  #
4640
4675
  # * `region` (Amazon Web Services Region)
@@ -4881,8 +4916,13 @@ module Aws::RDS
4881
4916
  # @!attribute [rw] source_db_instance_identifier
4882
4917
  # The identifier of the DB instance that will act as the source for
4883
4918
  # the read replica. Each DB instance can have up to 15 read replicas,
4884
- # with the exception of Oracle and SQL Server, which can have up to
4885
- # five.
4919
+ # except for the following engines:
4920
+ #
4921
+ # * Db2 - Can have up to three replicas.
4922
+ #
4923
+ # * Oracle - Can have up to five read replicas.
4924
+ #
4925
+ # * SQL Server - Can have up to five read replicas.
4886
4926
  #
4887
4927
  # Constraints:
4888
4928
  #
@@ -5000,6 +5040,16 @@ module Aws::RDS
5000
5040
  # The name of the DB parameter group to associate with this read
5001
5041
  # replica DB instance.
5002
5042
  #
5043
+ # For the Db2 DB engine, if your source DB instance uses the Bring
5044
+ # Your Own License model, then a custom parameter group must be
5045
+ # associated with the replica. For a same Amazon Web Services Region
5046
+ # replica, if you don't specify a custom parameter group, Amazon RDS
5047
+ # associates the custom parameter group associated with the source DB
5048
+ # instance. For a cross-Region replica, you must specify a custom
5049
+ # parameter group. This custom parameter group must include your IBM
5050
+ # Site ID and IBM Customer ID. For more information, see [ IBM IDs for
5051
+ # Bring Your Own License for Db2][1].
5052
+ #
5003
5053
  # For Single-AZ or Multi-AZ DB instance read replica instances, if you
5004
5054
  # don't specify a value for `DBParameterGroupName`, then Amazon RDS
5005
5055
  # uses the `DBParameterGroup` of the source DB instance for a same
@@ -5012,9 +5062,9 @@ module Aws::RDS
5012
5062
  #
5013
5063
  # Specifying a parameter group for this operation is only supported
5014
5064
  # for MySQL DB instances for cross-Region read replicas, for Multi-AZ
5015
- # DB cluster read replica instances, and for Oracle DB instances. It
5016
- # isn't supported for MySQL DB instances for same Region read
5017
- # replicas or for RDS Custom.
5065
+ # DB cluster read replica instances, for Db2 DB instances, and for
5066
+ # Oracle DB instances. It isn't supported for MySQL DB instances for
5067
+ # same Region read replicas or for RDS Custom.
5018
5068
  #
5019
5069
  # Constraints:
5020
5070
  #
@@ -5023,6 +5073,10 @@ module Aws::RDS
5023
5073
  # * First character must be a letter.
5024
5074
  #
5025
5075
  # * Can't end with a hyphen or contain two consecutive hyphens.
5076
+ #
5077
+ #
5078
+ #
5079
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
5026
5080
  # @return [String]
5027
5081
  #
5028
5082
  # @!attribute [rw] publicly_accessible
@@ -5432,31 +5486,50 @@ module Aws::RDS
5432
5486
  # @return [Array<String>]
5433
5487
  #
5434
5488
  # @!attribute [rw] replica_mode
5435
- # The open mode of the replica database: mounted or read-only.
5489
+ # The open mode of the replica database.
5436
5490
  #
5437
- # <note markdown="1"> This parameter is only supported for Oracle DB instances.
5491
+ # <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
5492
+ # instances.
5438
5493
  #
5439
5494
  # </note>
5440
5495
  #
5441
- # Mounted DB replicas are included in Oracle Database Enterprise
5442
- # Edition. The main use case for mounted replicas is cross-Region
5443
- # disaster recovery. The primary database doesn't use Active Data
5444
- # Guard to transmit information to the mounted replica. Because it
5445
- # doesn't accept user connections, a mounted replica can't serve a
5446
- # read-only workload.
5496
+ # Db2
5447
5497
  #
5448
- # You can create a combination of mounted and read-only DB replicas
5449
- # for the same primary DB instance. For more information, see [Working
5450
- # with Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
5451
- # Guide*.
5498
+ # : Standby DB replicas are included in Db2 Advanced Edition (AE) and
5499
+ # Db2 Standard Edition (SE). The main use case for standby replicas
5500
+ # is cross-Region disaster recovery. Because it doesn't accept user
5501
+ # connections, a standby replica can't serve a read-only workload.
5452
5502
  #
5453
- # For RDS Custom, you must specify this parameter and set it to
5454
- # `mounted`. The value won't be set by default. After replica
5455
- # creation, you can manage the open mode manually.
5503
+ # You can create a combination of standby and read-only DB replicas
5504
+ # for the same primary DB instance. For more information, see
5505
+ # [Working with read replicas for Amazon RDS for Db2][1] in the
5506
+ # *Amazon RDS User Guide*.
5456
5507
  #
5508
+ # To create standby DB replicas for RDS for Db2, set this parameter
5509
+ # to `mounted`.
5457
5510
  #
5511
+ # Oracle
5458
5512
  #
5459
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
5513
+ # : Mounted DB replicas are included in Oracle Database Enterprise
5514
+ # Edition. The main use case for mounted replicas is cross-Region
5515
+ # disaster recovery. The primary database doesn't use Active Data
5516
+ # Guard to transmit information to the mounted replica. Because it
5517
+ # doesn't accept user connections, a mounted replica can't serve a
5518
+ # read-only workload.
5519
+ #
5520
+ # You can create a combination of mounted and read-only DB replicas
5521
+ # for the same primary DB instance. For more information, see
5522
+ # [Working with read replicas for Amazon RDS for Oracle][2] in the
5523
+ # *Amazon RDS User Guide*.
5524
+ #
5525
+ # For RDS Custom, you must specify this parameter and set it to
5526
+ # `mounted`. The value won't be set by default. After replica
5527
+ # creation, you can manage the open mode manually.
5528
+ #
5529
+ #
5530
+ #
5531
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
5532
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
5460
5533
  # @return [String]
5461
5534
  #
5462
5535
  # @!attribute [rw] max_allocated_storage
@@ -5546,6 +5619,17 @@ module Aws::RDS
5546
5619
  # [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
5547
5620
  # @return [Boolean]
5548
5621
  #
5622
+ # @!attribute [rw] backup_target
5623
+ # The location where RDS stores automated backups and manual
5624
+ # snapshots.
5625
+ #
5626
+ # Valid Values:
5627
+ #
5628
+ # * `local` for Dedicated Local Zones
5629
+ #
5630
+ # * `region` for Amazon Web Services Region
5631
+ # @return [String]
5632
+ #
5549
5633
  # @!attribute [rw] allocated_storage
5550
5634
  # The amount of storage (in gibibytes) to allocate initially for the
5551
5635
  # read replica. Follow the allocation rules specified in
@@ -5657,6 +5741,7 @@ module Aws::RDS
5657
5741
  :network_type,
5658
5742
  :storage_throughput,
5659
5743
  :enable_customer_owned_ip,
5744
+ :backup_target,
5660
5745
  :allocated_storage,
5661
5746
  :source_db_cluster_identifier,
5662
5747
  :dedicated_log_volume,
@@ -6031,17 +6116,17 @@ module Aws::RDS
6031
6116
  # @return [String]
6032
6117
  #
6033
6118
  # @!attribute [rw] compute_redundancy
6034
- # Specifies whether to create standby DB shard groups for the DB shard
6035
- # group. Valid values are the following:
6119
+ # Specifies whether to create standby standby DB data access shard for
6120
+ # the DB shard group. Valid values are the following:
6036
6121
  #
6037
- # * 0 - Creates a DB shard group without a standby DB shard group.
6038
- # This is the default value.
6122
+ # * 0 - Creates a DB shard group without a standby DB data access
6123
+ # shard. This is the default value.
6039
6124
  #
6040
- # * 1 - Creates a DB shard group with a standby DB shard group in a
6041
- # different Availability Zone (AZ).
6125
+ # * 1 - Creates a DB shard group with a standby DB data access shard
6126
+ # in a different Availability Zone (AZ).
6042
6127
  #
6043
- # * 2 - Creates a DB shard group with two standby DB shard groups in
6044
- # two different AZs.
6128
+ # * 2 - Creates a DB shard group with two standby DB data access shard
6129
+ # in two different AZs.
6045
6130
  # @return [Integer]
6046
6131
  #
6047
6132
  # @!attribute [rw] max_acu
@@ -7220,6 +7305,12 @@ module Aws::RDS
7220
7305
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
7221
7306
  # @return [Array<Types::Tag>]
7222
7307
  #
7308
+ # @!attribute [rw] global_cluster_identifier
7309
+ # Contains a user-supplied global database cluster identifier. This
7310
+ # identifier is the unique key that identifies a global database
7311
+ # cluster.
7312
+ # @return [String]
7313
+ #
7223
7314
  # @!attribute [rw] global_write_forwarding_status
7224
7315
  # The status of write forwarding for a secondary cluster in an Aurora
7225
7316
  # global database.
@@ -7512,6 +7603,7 @@ module Aws::RDS
7512
7603
  :cross_account_clone,
7513
7604
  :domain_memberships,
7514
7605
  :tag_list,
7606
+ :global_cluster_identifier,
7515
7607
  :global_write_forwarding_status,
7516
7608
  :global_write_forwarding_requested,
7517
7609
  :pending_modified_values,
@@ -9005,17 +9097,20 @@ module Aws::RDS
9005
9097
  # @return [Array<String>]
9006
9098
  #
9007
9099
  # @!attribute [rw] replica_mode
9008
- # The open mode of an Oracle read replica. The default is
9009
- # `open-read-only`. For more information, see [Working with Oracle
9010
- # Read Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
9100
+ # The open mode of a Db2 or an Oracle read replica. The default is
9101
+ # `open-read-only`. For more information, see [Working with read
9102
+ # replicas for Amazon RDS for Db2][1] and [Working with read replicas
9103
+ # for Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
9011
9104
  #
9012
- # <note markdown="1"> This attribute is only supported in RDS for Oracle.
9105
+ # <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
9106
+ # RDS Custom for Oracle.
9013
9107
  #
9014
9108
  # </note>
9015
9109
  #
9016
9110
  #
9017
9111
  #
9018
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
9112
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
9113
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
9019
9114
  # @return [String]
9020
9115
  #
9021
9116
  # @!attribute [rw] license_model
@@ -9377,8 +9472,8 @@ module Aws::RDS
9377
9472
  #
9378
9473
  # @!attribute [rw] backup_target
9379
9474
  # The location where automated backups and manual snapshots are
9380
- # stored: Amazon Web Services Outposts or the Amazon Web Services
9381
- # Region.
9475
+ # stored: Dedicated Local Zones, Amazon Web Services Outposts or the
9476
+ # Amazon Web Services Region.
9382
9477
  # @return [String]
9383
9478
  #
9384
9479
  # @!attribute [rw] network_type
@@ -9708,8 +9803,9 @@ module Aws::RDS
9708
9803
  # @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
9709
9804
  #
9710
9805
  # @!attribute [rw] backup_target
9711
- # The location where automated backups are stored: Amazon Web Services
9712
- # Outposts or the Amazon Web Services Region.
9806
+ # The location where automated backups are stored: Dedicated Local
9807
+ # Zones, Amazon Web Services Outposts or the Amazon Web Services
9808
+ # Region.
9713
9809
  # @return [String]
9714
9810
  #
9715
9811
  # @!attribute [rw] storage_throughput
@@ -11137,8 +11233,8 @@ module Aws::RDS
11137
11233
  # @return [Time]
11138
11234
  #
11139
11235
  # @!attribute [rw] snapshot_target
11140
- # Specifies where manual snapshots are stored: Amazon Web Services
11141
- # Outposts or the Amazon Web Services Region.
11236
+ # Specifies where manual snapshots are stored: Dedicated Local Zones,
11237
+ # Amazon Web Services Outposts or the Amazon Web Services Region.
11142
11238
  # @return [String]
11143
11239
  #
11144
11240
  # @!attribute [rw] storage_throughput
@@ -11162,6 +11258,12 @@ module Aws::RDS
11162
11258
  # (FALSE).
11163
11259
  # @return [Boolean]
11164
11260
  #
11261
+ # @!attribute [rw] snapshot_availability_zone
11262
+ # Specifies the name of the Availability Zone where RDS stores the DB
11263
+ # snapshot. This value is valid only for snapshots that RDS stores on
11264
+ # a Dedicated Local Zone.
11265
+ # @return [String]
11266
+ #
11165
11267
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
11166
11268
  #
11167
11269
  class DBSnapshot < Struct.new(
@@ -11200,7 +11302,8 @@ module Aws::RDS
11200
11302
  :storage_throughput,
11201
11303
  :db_system_id,
11202
11304
  :dedicated_log_volume,
11203
- :multi_tenant)
11305
+ :multi_tenant,
11306
+ :snapshot_availability_zone)
11204
11307
  SENSITIVE = []
11205
11308
  include Aws::Structure
11206
11309
  end
@@ -11432,7 +11535,10 @@ module Aws::RDS
11432
11535
  # @return [String]
11433
11536
  #
11434
11537
  # @!attribute [rw] subnets
11435
- # Contains a list of `Subnet` elements.
11538
+ # Contains a list of `Subnet` elements. The list of subnets shown here
11539
+ # might not reflect the current state of your VPC. For the most
11540
+ # up-to-date information, we recommend checking your VPC configuration
11541
+ # directly.
11436
11542
  # @return [Array<Types::Subnet>]
11437
11543
  #
11438
11544
  # @!attribute [rw] db_subnet_group_arn
@@ -19466,26 +19572,50 @@ module Aws::RDS
19466
19572
  # @return [Boolean]
19467
19573
  #
19468
19574
  # @!attribute [rw] replica_mode
19469
- # A value that sets the open mode of a replica database to either
19470
- # mounted or read-only.
19575
+ # The open mode of a replica database.
19471
19576
  #
19472
- # <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
19577
+ # <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
19578
+ # instances.
19473
19579
  #
19474
19580
  # </note>
19475
19581
  #
19476
- # Mounted DB replicas are included in Oracle Enterprise Edition. The
19477
- # main use case for mounted replicas is cross-Region disaster
19478
- # recovery. The primary database doesn't use Active Data Guard to
19479
- # transmit information to the mounted replica. Because it doesn't
19480
- # accept user connections, a mounted replica can't serve a read-only
19481
- # workload. For more information, see [Working with Oracle Read
19482
- # Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
19582
+ # Db2
19483
19583
  #
19484
- # This setting doesn't apply to RDS Custom DB instances.
19584
+ # : Standby DB replicas are included in Db2 Advanced Edition (AE) and
19585
+ # Db2 Standard Edition (SE). The main use case for standby replicas
19586
+ # is cross-Region disaster recovery. Because it doesn't accept user
19587
+ # connections, a standby replica can't serve a read-only workload.
19485
19588
  #
19589
+ # You can create a combination of standby and read-only DB replicas
19590
+ # for the same primary DB instance. For more information, see
19591
+ # [Working with read replicas for Amazon RDS for Db2][1] in the
19592
+ # *Amazon RDS User Guide*.
19593
+ #
19594
+ # To create standby DB replicas for RDS for Db2, set this parameter
19595
+ # to `mounted`.
19596
+ #
19597
+ # Oracle
19486
19598
  #
19599
+ # : Mounted DB replicas are included in Oracle Database Enterprise
19600
+ # Edition. The main use case for mounted replicas is cross-Region
19601
+ # disaster recovery. The primary database doesn't use Active Data
19602
+ # Guard to transmit information to the mounted replica. Because it
19603
+ # doesn't accept user connections, a mounted replica can't serve a
19604
+ # read-only workload.
19605
+ #
19606
+ # You can create a combination of mounted and read-only DB replicas
19607
+ # for the same primary DB instance. For more information, see
19608
+ # [Working with read replicas for Amazon RDS for Oracle][2] in the
19609
+ # *Amazon RDS User Guide*.
19487
19610
  #
19488
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
19611
+ # For RDS Custom, you must specify this parameter and set it to
19612
+ # `mounted`. The value won't be set by default. After replica
19613
+ # creation, you can manage the open mode manually.
19614
+ #
19615
+ #
19616
+ #
19617
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
19618
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
19489
19619
  # @return [String]
19490
19620
  #
19491
19621
  # @!attribute [rw] enable_customer_owned_ip
@@ -25363,8 +25493,9 @@ module Aws::RDS
25363
25493
  # Specifies where automated backups and manual snapshots are stored
25364
25494
  # for the restored DB instance.
25365
25495
  #
25366
- # Possible values are `outposts` (Amazon Web Services Outposts) and
25367
- # `region` (Amazon Web Services Region). The default is `region`.
25496
+ # Possible values are `local` (Dedicated Local Zone), `outposts`
25497
+ # (Amazon Web Services Outposts), and `region` (Amazon Web Services
25498
+ # Region). The default is `region`.
25368
25499
  #
25369
25500
  # For more information, see [Working with Amazon RDS on Amazon Web
25370
25501
  # Services Outposts][1] in the *Amazon RDS User Guide*.
@@ -26864,6 +26995,8 @@ module Aws::RDS
26864
26995
  #
26865
26996
  # Valid Values:
26866
26997
  #
26998
+ # * `local` (Dedicated Local Zone)
26999
+ #
26867
27000
  # * `outposts` (Amazon Web Services Outposts)
26868
27001
  #
26869
27002
  # * `region` (Amazon Web Services Region)
data/lib/aws-sdk-rds.rb CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
80
80
  autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
81
81
  autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
82
82
 
83
- GEM_VERSION = '1.277.0'
83
+ GEM_VERSION = '1.282.0'
84
84
 
85
85
  end
86
86
 
data/sig/client.rbs CHANGED
@@ -262,6 +262,8 @@ module Aws
262
262
  ?option_group_name: ::String,
263
263
  ?target_custom_availability_zone: ::String,
264
264
  ?copy_option_group: bool,
265
+ ?snapshot_availability_zone: ::String,
266
+ ?snapshot_target: ::String,
265
267
  ?source_region: ::String
266
268
  ) -> _CopyDBSnapshotResponseSuccess
267
269
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyDBSnapshotResponseSuccess
@@ -659,6 +661,7 @@ module Aws
659
661
  ?network_type: ::String,
660
662
  ?storage_throughput: ::Integer,
661
663
  ?enable_customer_owned_ip: bool,
664
+ ?backup_target: ::String,
662
665
  ?allocated_storage: ::Integer,
663
666
  ?source_db_cluster_identifier: ::String,
664
667
  ?dedicated_log_volume: bool,
data/sig/db_cluster.rbs CHANGED
@@ -183,6 +183,9 @@ module Aws
183
183
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#tag_list-instance_method
184
184
  def tag_list: () -> ::Array[Types::Tag]
185
185
 
186
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#global_cluster_identifier-instance_method
187
+ def global_cluster_identifier: () -> ::String
188
+
186
189
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#global_write_forwarding_status-instance_method
187
190
  def global_write_forwarding_status: () -> ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
188
191
 
data/sig/db_instance.rbs CHANGED
@@ -419,6 +419,7 @@ module Aws
419
419
  ?network_type: ::String,
420
420
  ?storage_throughput: ::Integer,
421
421
  ?enable_customer_owned_ip: bool,
422
+ ?backup_target: ::String,
422
423
  ?allocated_storage: ::Integer,
423
424
  ?source_db_cluster_identifier: ::String,
424
425
  ?dedicated_log_volume: bool,
data/sig/db_snapshot.rbs CHANGED
@@ -124,6 +124,9 @@ module Aws
124
124
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#multi_tenant-instance_method
125
125
  def multi_tenant: () -> bool
126
126
 
127
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_availability_zone-instance_method
128
+ def snapshot_availability_zone: () -> ::String
129
+
127
130
  def client: () -> Client
128
131
 
129
132
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#load-instance_method
@@ -163,6 +166,8 @@ module Aws
163
166
  ?option_group_name: ::String,
164
167
  ?target_custom_availability_zone: ::String,
165
168
  ?copy_option_group: bool,
169
+ ?snapshot_availability_zone: ::String,
170
+ ?snapshot_target: ::String,
166
171
  ?source_region: ::String
167
172
  ) -> DBSnapshot
168
173
  | (?Hash[Symbol, untyped]) -> DBSnapshot
data/sig/types.rbs CHANGED
@@ -272,6 +272,8 @@ module Aws::RDS
272
272
  attr_accessor option_group_name: ::String
273
273
  attr_accessor target_custom_availability_zone: ::String
274
274
  attr_accessor copy_option_group: bool
275
+ attr_accessor snapshot_availability_zone: ::String
276
+ attr_accessor snapshot_target: ::String
275
277
  attr_accessor source_region: ::String
276
278
  SENSITIVE: []
277
279
  end
@@ -544,6 +546,7 @@ module Aws::RDS
544
546
  attr_accessor network_type: ::String
545
547
  attr_accessor storage_throughput: ::Integer
546
548
  attr_accessor enable_customer_owned_ip: bool
549
+ attr_accessor backup_target: ::String
547
550
  attr_accessor allocated_storage: ::Integer
548
551
  attr_accessor source_db_cluster_identifier: ::String
549
552
  attr_accessor dedicated_log_volume: bool
@@ -811,6 +814,7 @@ module Aws::RDS
811
814
  attr_accessor cross_account_clone: bool
812
815
  attr_accessor domain_memberships: ::Array[Types::DomainMembership]
813
816
  attr_accessor tag_list: ::Array[Types::Tag]
817
+ attr_accessor global_cluster_identifier: ::String
814
818
  attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
815
819
  attr_accessor global_write_forwarding_requested: bool
816
820
  attr_accessor pending_modified_values: Types::ClusterPendingModifiedValues
@@ -1563,6 +1567,7 @@ module Aws::RDS
1563
1567
  attr_accessor db_system_id: ::String
1564
1568
  attr_accessor dedicated_log_volume: bool
1565
1569
  attr_accessor multi_tenant: bool
1570
+ attr_accessor snapshot_availability_zone: ::String
1566
1571
  SENSITIVE: []
1567
1572
  end
1568
1573
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.277.0
4
+ version: 1.282.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.216.0
21
+ version: 3.225.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.216.0
31
+ version: 3.225.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +136,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
136
  requirements:
137
137
  - - ">="
138
138
  - !ruby/object:Gem::Version
139
- version: '2.5'
139
+ version: '2.7'
140
140
  required_rubygems_version: !ruby/object:Gem::Requirement
141
141
  requirements:
142
142
  - - ">="