aws-sdk-rds 1.280.0 → 1.281.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +41 -3
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_instance.rb +15 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +29 -4
- data/lib/aws-sdk-rds/resource.rb +2 -0
- data/lib/aws-sdk-rds/types.rb +54 -9
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/db_instance.rbs +1 -0
- data/sig/db_snapshot.rbs +5 -0
- data/sig/types.rbs +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2de5e099dd0ab441476346125785b243699bb08c10ba352485b3c439fbb27c8c
|
4
|
+
data.tar.gz: d6eece531d131e71f07c36ef799e5b84a6c254a25c2f3110d281ce352935c538
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0e822be8d94d9daa25734a6d56a998bfce85e91bddba15a9560d98666e08b88cf2a07bd200a113ee9a54b9e89407db9fb334e0019e3d7a25a79f086d8018534
|
7
|
+
data.tar.gz: 421fa0581b8b9986f5bb9c7ca420bcd8dbc19f9c20e951fb01df1dd59a6418c4b496941a8f87f93cecd45879c64b062e126f408bd58cbd47853abd8dc2cef585
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.281.0 (2025-06-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding support for RDS on Dedicated Local Zones, including local backup target, snapshot availability zone and snapshot target
|
8
|
+
|
4
9
|
1.280.0 (2025-06-11)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.281.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1841,6 +1841,22 @@ module Aws::RDS
|
|
1841
1841
|
# associate with the target DB snapshot. The associated option group can
|
1842
1842
|
# be copied only with cross-account snapshot copy calls.
|
1843
1843
|
#
|
1844
|
+
# @option params [String] :snapshot_availability_zone
|
1845
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
1846
|
+
# snapshot. This value is valid only for snapshots that RDS stores on a
|
1847
|
+
# Dedicated Local Zone.
|
1848
|
+
#
|
1849
|
+
# @option params [String] :snapshot_target
|
1850
|
+
# Configures the location where RDS will store copied snapshots.
|
1851
|
+
#
|
1852
|
+
# Valid Values:
|
1853
|
+
#
|
1854
|
+
# * `local` (Dedicated Local Zone)
|
1855
|
+
#
|
1856
|
+
# * `outposts` (Amazon Web Services Outposts)
|
1857
|
+
#
|
1858
|
+
# * `region` (Amazon Web Services Region)
|
1859
|
+
#
|
1844
1860
|
# @option params [String] :source_region
|
1845
1861
|
# The source region of the snapshot. This is only needed when the
|
1846
1862
|
# shapshot is encrypted and in a different region.
|
@@ -1908,6 +1924,8 @@ module Aws::RDS
|
|
1908
1924
|
# option_group_name: "String",
|
1909
1925
|
# target_custom_availability_zone: "String",
|
1910
1926
|
# copy_option_group: false,
|
1927
|
+
# snapshot_availability_zone: "String",
|
1928
|
+
# snapshot_target: "String",
|
1911
1929
|
# source_region: "String",
|
1912
1930
|
# })
|
1913
1931
|
#
|
@@ -1953,6 +1971,7 @@ module Aws::RDS
|
|
1953
1971
|
# resp.db_snapshot.db_system_id #=> String
|
1954
1972
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
1955
1973
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
1974
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
1956
1975
|
#
|
1957
1976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1958
1977
|
#
|
@@ -5571,6 +5590,8 @@ module Aws::RDS
|
|
5571
5590
|
#
|
5572
5591
|
# Valid Values:
|
5573
5592
|
#
|
5593
|
+
# * `local` (Dedicated Local Zone)
|
5594
|
+
#
|
5574
5595
|
# * `outposts` (Amazon Web Services Outposts)
|
5575
5596
|
#
|
5576
5597
|
# * `region` (Amazon Web Services Region)
|
@@ -6779,6 +6800,15 @@ module Aws::RDS
|
|
6779
6800
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
6780
6801
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
6781
6802
|
#
|
6803
|
+
# @option params [String] :backup_target
|
6804
|
+
# The location where RDS stores automated backups and manual snapshots.
|
6805
|
+
#
|
6806
|
+
# Valid Values:
|
6807
|
+
#
|
6808
|
+
# * `local` for Dedicated Local Zones
|
6809
|
+
#
|
6810
|
+
# * `region` for Amazon Web Services Region
|
6811
|
+
#
|
6782
6812
|
# @option params [Integer] :allocated_storage
|
6783
6813
|
# The amount of storage (in gibibytes) to allocate initially for the
|
6784
6814
|
# read replica. Follow the allocation rules specified in
|
@@ -6918,6 +6948,7 @@ module Aws::RDS
|
|
6918
6948
|
# network_type: "String",
|
6919
6949
|
# storage_throughput: 1,
|
6920
6950
|
# enable_customer_owned_ip: false,
|
6951
|
+
# backup_target: "String",
|
6921
6952
|
# allocated_storage: 1,
|
6922
6953
|
# source_db_cluster_identifier: "String",
|
6923
6954
|
# dedicated_log_volume: false,
|
@@ -7824,6 +7855,7 @@ module Aws::RDS
|
|
7824
7855
|
# resp.db_snapshot.db_system_id #=> String
|
7825
7856
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
7826
7857
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
7858
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
7827
7859
|
#
|
7828
7860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
7829
7861
|
#
|
@@ -10515,6 +10547,7 @@ module Aws::RDS
|
|
10515
10547
|
# resp.db_snapshot.db_system_id #=> String
|
10516
10548
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
10517
10549
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
10550
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
10518
10551
|
#
|
10519
10552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
10520
10553
|
#
|
@@ -15255,6 +15288,7 @@ module Aws::RDS
|
|
15255
15288
|
# resp.db_snapshots[0].db_system_id #=> String
|
15256
15289
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
15257
15290
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
15291
|
+
# resp.db_snapshots[0].snapshot_availability_zone #=> String
|
15258
15292
|
#
|
15259
15293
|
#
|
15260
15294
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -22565,6 +22599,7 @@ module Aws::RDS
|
|
22565
22599
|
# resp.db_snapshot.db_system_id #=> String
|
22566
22600
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
22567
22601
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
22602
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
22568
22603
|
#
|
22569
22604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
22570
22605
|
#
|
@@ -28015,8 +28050,9 @@ module Aws::RDS
|
|
28015
28050
|
# Specifies where automated backups and manual snapshots are stored for
|
28016
28051
|
# the restored DB instance.
|
28017
28052
|
#
|
28018
|
-
# Possible values are `
|
28019
|
-
# `region` (Amazon Web Services Region). The
|
28053
|
+
# Possible values are `local` (Dedicated Local Zone), `outposts` (Amazon
|
28054
|
+
# Web Services Outposts), and `region` (Amazon Web Services Region). The
|
28055
|
+
# default is `region`.
|
28020
28056
|
#
|
28021
28057
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
28022
28058
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
@@ -29800,6 +29836,8 @@ module Aws::RDS
|
|
29800
29836
|
#
|
29801
29837
|
# Valid Values:
|
29802
29838
|
#
|
29839
|
+
# * `local` (Dedicated Local Zone)
|
29840
|
+
#
|
29803
29841
|
# * `outposts` (Amazon Web Services Outposts)
|
29804
29842
|
#
|
29805
29843
|
# * `region` (Amazon Web Services Region)
|
@@ -32373,7 +32411,7 @@ module Aws::RDS
|
|
32373
32411
|
tracer: tracer
|
32374
32412
|
)
|
32375
32413
|
context[:gem_name] = 'aws-sdk-rds'
|
32376
|
-
context[:gem_version] = '1.
|
32414
|
+
context[:gem_version] = '1.281.0'
|
32377
32415
|
Seahorse::Client::Request.new(handlers, context)
|
32378
32416
|
end
|
32379
32417
|
|
@@ -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"))
|
@@ -2110,6 +2113,7 @@ module Aws::RDS
|
|
2110
2113
|
DBSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
2111
2114
|
DBSnapshot.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
|
2112
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"))
|
2113
2117
|
DBSnapshot.struct_class = Types::DBSnapshot
|
2114
2118
|
|
2115
2119
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
@@ -697,7 +697,8 @@ module Aws::RDS
|
|
697
697
|
end
|
698
698
|
|
699
699
|
# The location where automated backups and manual snapshots are stored:
|
700
|
-
# Amazon Web Services Outposts or the Amazon Web
|
700
|
+
# Dedicated Local Zones, Amazon Web Services Outposts or the Amazon Web
|
701
|
+
# Services Region.
|
701
702
|
# @return [String]
|
702
703
|
def backup_target
|
703
704
|
data[:backup_target]
|
@@ -2124,6 +2125,8 @@ module Aws::RDS
|
|
2124
2125
|
#
|
2125
2126
|
# Valid Values:
|
2126
2127
|
#
|
2128
|
+
# * `local` (Dedicated Local Zone)
|
2129
|
+
#
|
2127
2130
|
# * `outposts` (Amazon Web Services Outposts)
|
2128
2131
|
#
|
2129
2132
|
# * `region` (Amazon Web Services Region)
|
@@ -2335,6 +2338,7 @@ module Aws::RDS
|
|
2335
2338
|
# network_type: "String",
|
2336
2339
|
# storage_throughput: 1,
|
2337
2340
|
# enable_customer_owned_ip: false,
|
2341
|
+
# backup_target: "String",
|
2338
2342
|
# allocated_storage: 1,
|
2339
2343
|
# source_db_cluster_identifier: "String",
|
2340
2344
|
# dedicated_log_volume: false,
|
@@ -2919,6 +2923,14 @@ module Aws::RDS
|
|
2919
2923
|
#
|
2920
2924
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2921
2925
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
2926
|
+
# @option options [String] :backup_target
|
2927
|
+
# The location where RDS stores automated backups and manual snapshots.
|
2928
|
+
#
|
2929
|
+
# Valid Values:
|
2930
|
+
#
|
2931
|
+
# * `local` for Dedicated Local Zones
|
2932
|
+
#
|
2933
|
+
# * `region` for Amazon Web Services Region
|
2922
2934
|
# @option options [Integer] :allocated_storage
|
2923
2935
|
# The amount of storage (in gibibytes) to allocate initially for the
|
2924
2936
|
# read replica. Follow the allocation rules specified in
|
@@ -4877,6 +4889,8 @@ module Aws::RDS
|
|
4877
4889
|
#
|
4878
4890
|
# Valid Values:
|
4879
4891
|
#
|
4892
|
+
# * `local` (Dedicated Local Zone)
|
4893
|
+
#
|
4880
4894
|
# * `outposts` (Amazon Web Services Outposts)
|
4881
4895
|
#
|
4882
4896
|
# * `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:
|
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 `
|
1143
|
-
# `region` (Amazon Web Services Region). The
|
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*.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1725,6 +1725,24 @@ module Aws::RDS
|
|
1725
1725
|
# can be copied only with cross-account snapshot copy calls.
|
1726
1726
|
# @return [Boolean]
|
1727
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
|
+
#
|
1728
1746
|
# @!attribute [rw] source_region
|
1729
1747
|
# The source region of the snapshot. This is only needed when the
|
1730
1748
|
# shapshot is encrypted and in a different region.
|
@@ -1742,6 +1760,8 @@ module Aws::RDS
|
|
1742
1760
|
:option_group_name,
|
1743
1761
|
:target_custom_availability_zone,
|
1744
1762
|
:copy_option_group,
|
1763
|
+
:snapshot_availability_zone,
|
1764
|
+
:snapshot_target,
|
1745
1765
|
:source_region)
|
1746
1766
|
SENSITIVE = []
|
1747
1767
|
include Aws::Structure
|
@@ -4648,6 +4668,8 @@ module Aws::RDS
|
|
4648
4668
|
#
|
4649
4669
|
# Valid Values:
|
4650
4670
|
#
|
4671
|
+
# * `local` (Dedicated Local Zone)
|
4672
|
+
#
|
4651
4673
|
# * `outposts` (Amazon Web Services Outposts)
|
4652
4674
|
#
|
4653
4675
|
# * `region` (Amazon Web Services Region)
|
@@ -5597,6 +5619,17 @@ module Aws::RDS
|
|
5597
5619
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
5598
5620
|
# @return [Boolean]
|
5599
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
|
+
#
|
5600
5633
|
# @!attribute [rw] allocated_storage
|
5601
5634
|
# The amount of storage (in gibibytes) to allocate initially for the
|
5602
5635
|
# read replica. Follow the allocation rules specified in
|
@@ -5708,6 +5741,7 @@ module Aws::RDS
|
|
5708
5741
|
:network_type,
|
5709
5742
|
:storage_throughput,
|
5710
5743
|
:enable_customer_owned_ip,
|
5744
|
+
:backup_target,
|
5711
5745
|
:allocated_storage,
|
5712
5746
|
:source_db_cluster_identifier,
|
5713
5747
|
:dedicated_log_volume,
|
@@ -9438,8 +9472,8 @@ module Aws::RDS
|
|
9438
9472
|
#
|
9439
9473
|
# @!attribute [rw] backup_target
|
9440
9474
|
# The location where automated backups and manual snapshots are
|
9441
|
-
# stored: Amazon Web Services Outposts or the
|
9442
|
-
# Region.
|
9475
|
+
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9476
|
+
# Amazon Web Services Region.
|
9443
9477
|
# @return [String]
|
9444
9478
|
#
|
9445
9479
|
# @!attribute [rw] network_type
|
@@ -9769,8 +9803,9 @@ module Aws::RDS
|
|
9769
9803
|
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
9770
9804
|
#
|
9771
9805
|
# @!attribute [rw] backup_target
|
9772
|
-
# The location where automated backups are stored:
|
9773
|
-
# Outposts or the Amazon Web Services
|
9806
|
+
# The location where automated backups are stored: Dedicated Local
|
9807
|
+
# Zones, Amazon Web Services Outposts or the Amazon Web Services
|
9808
|
+
# Region.
|
9774
9809
|
# @return [String]
|
9775
9810
|
#
|
9776
9811
|
# @!attribute [rw] storage_throughput
|
@@ -11198,8 +11233,8 @@ module Aws::RDS
|
|
11198
11233
|
# @return [Time]
|
11199
11234
|
#
|
11200
11235
|
# @!attribute [rw] snapshot_target
|
11201
|
-
# Specifies where manual snapshots are stored:
|
11202
|
-
# 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.
|
11203
11238
|
# @return [String]
|
11204
11239
|
#
|
11205
11240
|
# @!attribute [rw] storage_throughput
|
@@ -11223,6 +11258,12 @@ module Aws::RDS
|
|
11223
11258
|
# (FALSE).
|
11224
11259
|
# @return [Boolean]
|
11225
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
|
+
#
|
11226
11267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
11227
11268
|
#
|
11228
11269
|
class DBSnapshot < Struct.new(
|
@@ -11261,7 +11302,8 @@ module Aws::RDS
|
|
11261
11302
|
:storage_throughput,
|
11262
11303
|
:db_system_id,
|
11263
11304
|
:dedicated_log_volume,
|
11264
|
-
:multi_tenant
|
11305
|
+
:multi_tenant,
|
11306
|
+
:snapshot_availability_zone)
|
11265
11307
|
SENSITIVE = []
|
11266
11308
|
include Aws::Structure
|
11267
11309
|
end
|
@@ -25451,8 +25493,9 @@ module Aws::RDS
|
|
25451
25493
|
# Specifies where automated backups and manual snapshots are stored
|
25452
25494
|
# for the restored DB instance.
|
25453
25495
|
#
|
25454
|
-
# Possible values are `
|
25455
|
-
#
|
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`.
|
25456
25499
|
#
|
25457
25500
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
25458
25501
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
@@ -26952,6 +26995,8 @@ module Aws::RDS
|
|
26952
26995
|
#
|
26953
26996
|
# Valid Values:
|
26954
26997
|
#
|
26998
|
+
# * `local` (Dedicated Local Zone)
|
26999
|
+
#
|
26955
27000
|
# * `outposts` (Amazon Web Services Outposts)
|
26956
27001
|
#
|
26957
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.
|
83
|
+
GEM_VERSION = '1.281.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_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
|
@@ -1564,6 +1567,7 @@ module Aws::RDS
|
|
1564
1567
|
attr_accessor db_system_id: ::String
|
1565
1568
|
attr_accessor dedicated_log_volume: bool
|
1566
1569
|
attr_accessor multi_tenant: bool
|
1570
|
+
attr_accessor snapshot_availability_zone: ::String
|
1567
1571
|
SENSITIVE: []
|
1568
1572
|
end
|
1569
1573
|
|