aws-sdk-rds 1.301.0 → 1.302.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 +248 -1
- data/lib/aws-sdk-rds/client_api.rb +22 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/db_instance.rb +95 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/resource.rb +38 -0
- data/lib/aws-sdk-rds/types.rb +195 -5
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +131 -4
- data/sig/db_cluster.rbs +23 -1
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_instance.rbs +56 -1
- data/sig/db_snapshot.rbs +11 -0
- data/sig/resource.rbs +22 -0
- data/sig/types.rbs +20 -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: b03157f8a49eefdeba8c89878f2a4a5e1b44dea1cc636ac4f8322ffe18714cfe
|
|
4
|
+
data.tar.gz: 43c2f1fa21569dc2f75029a75d0bad3358da63418e5c72a91b264ee69e7ec282
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b11a0a6c81b1ab55ff54e3e1fe149cf78a481c6456bda254d7c07f02ed414eeb2a16a7d0a0873f989c8dc24dcdf889aa61b8c7164d2d532d3c4dd6b510c3fc5
|
|
7
|
+
data.tar.gz: ea1973983fa7287c7884dc11af58a11d16c19d2569afc278f921dc2c280db988a596c8127b769122cccfb373c845f52e9ddefe5feb01f2f54a4f87d3b1bb09fa
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.302.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -3655,6 +3655,15 @@ module Aws::RDS
|
|
|
3655
3655
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
3656
3656
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3657
3657
|
#
|
|
3658
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
3659
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
3660
|
+
#
|
|
3661
|
+
# Valid Values:
|
|
3662
|
+
#
|
|
3663
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
3664
|
+
#
|
|
3665
|
+
# ^
|
|
3666
|
+
#
|
|
3658
3667
|
# @option params [String] :master_user_authentication_type
|
|
3659
3668
|
# Specifies the authentication type for the master user. With IAM master
|
|
3660
3669
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -3886,6 +3895,17 @@ module Aws::RDS
|
|
|
3886
3895
|
# master_user_secret_kms_key_id: "String",
|
|
3887
3896
|
# ca_certificate_identifier: "String",
|
|
3888
3897
|
# engine_lifecycle_support: "String",
|
|
3898
|
+
# tag_specifications: [
|
|
3899
|
+
# {
|
|
3900
|
+
# resource_type: "String",
|
|
3901
|
+
# tags: [
|
|
3902
|
+
# {
|
|
3903
|
+
# key: "String",
|
|
3904
|
+
# value: "String",
|
|
3905
|
+
# },
|
|
3906
|
+
# ],
|
|
3907
|
+
# },
|
|
3908
|
+
# ],
|
|
3889
3909
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
3890
3910
|
# source_region: "String",
|
|
3891
3911
|
# })
|
|
@@ -5797,6 +5817,15 @@ module Aws::RDS
|
|
|
5797
5817
|
#
|
|
5798
5818
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
5799
5819
|
#
|
|
5820
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
5821
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5822
|
+
#
|
|
5823
|
+
# Valid Values:
|
|
5824
|
+
#
|
|
5825
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5826
|
+
#
|
|
5827
|
+
# ^
|
|
5828
|
+
#
|
|
5800
5829
|
# @option params [String] :master_user_authentication_type
|
|
5801
5830
|
# Specifies the authentication type for the master user. With IAM master
|
|
5802
5831
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -6009,6 +6038,17 @@ module Aws::RDS
|
|
|
6009
6038
|
# multi_tenant: false,
|
|
6010
6039
|
# dedicated_log_volume: false,
|
|
6011
6040
|
# engine_lifecycle_support: "String",
|
|
6041
|
+
# tag_specifications: [
|
|
6042
|
+
# {
|
|
6043
|
+
# resource_type: "String",
|
|
6044
|
+
# tags: [
|
|
6045
|
+
# {
|
|
6046
|
+
# key: "String",
|
|
6047
|
+
# value: "String",
|
|
6048
|
+
# },
|
|
6049
|
+
# ],
|
|
6050
|
+
# },
|
|
6051
|
+
# ],
|
|
6012
6052
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
6013
6053
|
# additional_storage_volumes: [
|
|
6014
6054
|
# {
|
|
@@ -6958,6 +6998,15 @@ module Aws::RDS
|
|
|
6958
6998
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
6959
6999
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
6960
7000
|
#
|
|
7001
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
7002
|
+
# Tags to assign to resources associated with the DB instance.
|
|
7003
|
+
#
|
|
7004
|
+
# Valid Values:
|
|
7005
|
+
#
|
|
7006
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
7007
|
+
#
|
|
7008
|
+
# ^
|
|
7009
|
+
#
|
|
6961
7010
|
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
6962
7011
|
# A list of additional storage volumes to create for the DB instance.
|
|
6963
7012
|
# You can create up to three additional storage volumes using the names
|
|
@@ -7055,6 +7104,17 @@ module Aws::RDS
|
|
|
7055
7104
|
# dedicated_log_volume: false,
|
|
7056
7105
|
# upgrade_storage_config: false,
|
|
7057
7106
|
# ca_certificate_identifier: "String",
|
|
7107
|
+
# tag_specifications: [
|
|
7108
|
+
# {
|
|
7109
|
+
# resource_type: "String",
|
|
7110
|
+
# tags: [
|
|
7111
|
+
# {
|
|
7112
|
+
# key: "String",
|
|
7113
|
+
# value: "String",
|
|
7114
|
+
# },
|
|
7115
|
+
# ],
|
|
7116
|
+
# },
|
|
7117
|
+
# ],
|
|
7058
7118
|
# additional_storage_volumes: [
|
|
7059
7119
|
# {
|
|
7060
7120
|
# volume_name: "String", # required
|
|
@@ -9765,6 +9825,9 @@ module Aws::RDS
|
|
|
9765
9825
|
# resp.db_cluster_automated_backup.iops #=> Integer
|
|
9766
9826
|
# resp.db_cluster_automated_backup.storage_throughput #=> Integer
|
|
9767
9827
|
# resp.db_cluster_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
9828
|
+
# resp.db_cluster_automated_backup.tag_list #=> Array
|
|
9829
|
+
# resp.db_cluster_automated_backup.tag_list[0].key #=> String
|
|
9830
|
+
# resp.db_cluster_automated_backup.tag_list[0].value #=> String
|
|
9768
9831
|
#
|
|
9769
9832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup AWS API Documentation
|
|
9770
9833
|
#
|
|
@@ -10436,6 +10499,9 @@ module Aws::RDS
|
|
|
10436
10499
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
10437
10500
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
10438
10501
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
10502
|
+
# resp.db_instance_automated_backup.tag_list #=> Array
|
|
10503
|
+
# resp.db_instance_automated_backup.tag_list[0].key #=> String
|
|
10504
|
+
# resp.db_instance_automated_backup.tag_list[0].value #=> String
|
|
10439
10505
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
10440
10506
|
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
10441
10507
|
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
@@ -11936,6 +12002,9 @@ module Aws::RDS
|
|
|
11936
12002
|
# resp.db_cluster_automated_backups[0].iops #=> Integer
|
|
11937
12003
|
# resp.db_cluster_automated_backups[0].storage_throughput #=> Integer
|
|
11938
12004
|
# resp.db_cluster_automated_backups[0].aws_backup_recovery_point_arn #=> String
|
|
12005
|
+
# resp.db_cluster_automated_backups[0].tag_list #=> Array
|
|
12006
|
+
# resp.db_cluster_automated_backups[0].tag_list[0].key #=> String
|
|
12007
|
+
# resp.db_cluster_automated_backups[0].tag_list[0].value #=> String
|
|
11939
12008
|
#
|
|
11940
12009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups AWS API Documentation
|
|
11941
12010
|
#
|
|
@@ -13662,6 +13731,9 @@ module Aws::RDS
|
|
|
13662
13731
|
# resp.db_instance_automated_backups[0].backup_target #=> String
|
|
13663
13732
|
# resp.db_instance_automated_backups[0].multi_tenant #=> Boolean
|
|
13664
13733
|
# resp.db_instance_automated_backups[0].aws_backup_recovery_point_arn #=> String
|
|
13734
|
+
# resp.db_instance_automated_backups[0].tag_list #=> Array
|
|
13735
|
+
# resp.db_instance_automated_backups[0].tag_list[0].key #=> String
|
|
13736
|
+
# resp.db_instance_automated_backups[0].tag_list[0].value #=> String
|
|
13665
13737
|
# resp.db_instance_automated_backups[0].dedicated_log_volume #=> Boolean
|
|
13666
13738
|
# resp.db_instance_automated_backups[0].additional_storage_volumes #=> Array
|
|
13667
13739
|
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].volume_name #=> String
|
|
@@ -21988,6 +22060,15 @@ module Aws::RDS
|
|
|
21988
22060
|
# parameter group with `--db-parameter-group-name` and a new option
|
|
21989
22061
|
# group with `--option-group-name`.
|
|
21990
22062
|
#
|
|
22063
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
22064
|
+
# Tags to assign to resources associated with the DB instance.
|
|
22065
|
+
#
|
|
22066
|
+
# Valid Values:
|
|
22067
|
+
#
|
|
22068
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
22069
|
+
#
|
|
22070
|
+
# ^
|
|
22071
|
+
#
|
|
21991
22072
|
# @option params [String] :master_user_authentication_type
|
|
21992
22073
|
# Specifies the authentication type for the master user. With IAM master
|
|
21993
22074
|
# user authentication, you can change the master DB user to use IAM
|
|
@@ -22135,6 +22216,17 @@ module Aws::RDS
|
|
|
22135
22216
|
# multi_tenant: false,
|
|
22136
22217
|
# dedicated_log_volume: false,
|
|
22137
22218
|
# engine: "String",
|
|
22219
|
+
# tag_specifications: [
|
|
22220
|
+
# {
|
|
22221
|
+
# resource_type: "String",
|
|
22222
|
+
# tags: [
|
|
22223
|
+
# {
|
|
22224
|
+
# key: "String",
|
|
22225
|
+
# value: "String",
|
|
22226
|
+
# },
|
|
22227
|
+
# ],
|
|
22228
|
+
# },
|
|
22229
|
+
# ],
|
|
22138
22230
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
22139
22231
|
# additional_storage_volumes: [
|
|
22140
22232
|
# {
|
|
@@ -24091,6 +24183,15 @@ module Aws::RDS
|
|
|
24091
24183
|
#
|
|
24092
24184
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
|
24093
24185
|
#
|
|
24186
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
24187
|
+
# Tags to assign to resources associated with the DB instance.
|
|
24188
|
+
#
|
|
24189
|
+
# Valid Values:
|
|
24190
|
+
#
|
|
24191
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
24192
|
+
#
|
|
24193
|
+
# ^
|
|
24194
|
+
#
|
|
24094
24195
|
# @return [Types::PromoteReadReplicaResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
24095
24196
|
#
|
|
24096
24197
|
# * {Types::PromoteReadReplicaResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -24120,6 +24221,17 @@ module Aws::RDS
|
|
|
24120
24221
|
# db_instance_identifier: "String", # required
|
|
24121
24222
|
# backup_retention_period: 1,
|
|
24122
24223
|
# preferred_backup_window: "String",
|
|
24224
|
+
# tag_specifications: [
|
|
24225
|
+
# {
|
|
24226
|
+
# resource_type: "String",
|
|
24227
|
+
# tags: [
|
|
24228
|
+
# {
|
|
24229
|
+
# key: "String",
|
|
24230
|
+
# value: "String",
|
|
24231
|
+
# },
|
|
24232
|
+
# ],
|
|
24233
|
+
# },
|
|
24234
|
+
# ],
|
|
24123
24235
|
# })
|
|
24124
24236
|
#
|
|
24125
24237
|
# @example Response structure
|
|
@@ -26141,6 +26253,15 @@ module Aws::RDS
|
|
|
26141
26253
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
26142
26254
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26143
26255
|
#
|
|
26256
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
26257
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
26258
|
+
#
|
|
26259
|
+
# Valid Values:
|
|
26260
|
+
#
|
|
26261
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
26262
|
+
#
|
|
26263
|
+
# ^
|
|
26264
|
+
#
|
|
26144
26265
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
26145
26266
|
#
|
|
26146
26267
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -26263,6 +26384,17 @@ module Aws::RDS
|
|
|
26263
26384
|
# manage_master_user_password: false,
|
|
26264
26385
|
# master_user_secret_kms_key_id: "String",
|
|
26265
26386
|
# engine_lifecycle_support: "String",
|
|
26387
|
+
# tag_specifications: [
|
|
26388
|
+
# {
|
|
26389
|
+
# resource_type: "String",
|
|
26390
|
+
# tags: [
|
|
26391
|
+
# {
|
|
26392
|
+
# key: "String",
|
|
26393
|
+
# value: "String",
|
|
26394
|
+
# },
|
|
26395
|
+
# ],
|
|
26396
|
+
# },
|
|
26397
|
+
# ],
|
|
26266
26398
|
# })
|
|
26267
26399
|
#
|
|
26268
26400
|
# @example Response structure
|
|
@@ -26962,6 +27094,15 @@ module Aws::RDS
|
|
|
26962
27094
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
26963
27095
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26964
27096
|
#
|
|
27097
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
27098
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
27099
|
+
#
|
|
27100
|
+
# Valid Values:
|
|
27101
|
+
#
|
|
27102
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
27103
|
+
#
|
|
27104
|
+
# ^
|
|
27105
|
+
#
|
|
26965
27106
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
26966
27107
|
#
|
|
26967
27108
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -27090,6 +27231,17 @@ module Aws::RDS
|
|
|
27090
27231
|
# performance_insights_kms_key_id: "String",
|
|
27091
27232
|
# performance_insights_retention_period: 1,
|
|
27092
27233
|
# engine_lifecycle_support: "String",
|
|
27234
|
+
# tag_specifications: [
|
|
27235
|
+
# {
|
|
27236
|
+
# resource_type: "String",
|
|
27237
|
+
# tags: [
|
|
27238
|
+
# {
|
|
27239
|
+
# key: "String",
|
|
27240
|
+
# value: "String",
|
|
27241
|
+
# },
|
|
27242
|
+
# ],
|
|
27243
|
+
# },
|
|
27244
|
+
# ],
|
|
27093
27245
|
# })
|
|
27094
27246
|
#
|
|
27095
27247
|
# @example Response structure
|
|
@@ -27773,6 +27925,15 @@ module Aws::RDS
|
|
|
27773
27925
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
27774
27926
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
27775
27927
|
#
|
|
27928
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
27929
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
27930
|
+
#
|
|
27931
|
+
# Valid Values:
|
|
27932
|
+
#
|
|
27933
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
27934
|
+
#
|
|
27935
|
+
# ^
|
|
27936
|
+
#
|
|
27776
27937
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
27777
27938
|
#
|
|
27778
27939
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -27900,6 +28061,17 @@ module Aws::RDS
|
|
|
27900
28061
|
# performance_insights_kms_key_id: "String",
|
|
27901
28062
|
# performance_insights_retention_period: 1,
|
|
27902
28063
|
# engine_lifecycle_support: "String",
|
|
28064
|
+
# tag_specifications: [
|
|
28065
|
+
# {
|
|
28066
|
+
# resource_type: "String",
|
|
28067
|
+
# tags: [
|
|
28068
|
+
# {
|
|
28069
|
+
# key: "String",
|
|
28070
|
+
# value: "String",
|
|
28071
|
+
# },
|
|
28072
|
+
# ],
|
|
28073
|
+
# },
|
|
28074
|
+
# ],
|
|
27903
28075
|
# })
|
|
27904
28076
|
#
|
|
27905
28077
|
# @example Response structure
|
|
@@ -28686,6 +28858,15 @@ module Aws::RDS
|
|
|
28686
28858
|
#
|
|
28687
28859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
28688
28860
|
#
|
|
28861
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
28862
|
+
# Tags to assign to resources associated with the DB instance.
|
|
28863
|
+
#
|
|
28864
|
+
# Valid Values:
|
|
28865
|
+
#
|
|
28866
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
28867
|
+
#
|
|
28868
|
+
# ^
|
|
28869
|
+
#
|
|
28689
28870
|
# @option params [Boolean] :manage_master_user_password
|
|
28690
28871
|
# Specifies whether to manage the master user password with Amazon Web
|
|
28691
28872
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -28830,6 +29011,17 @@ module Aws::RDS
|
|
|
28830
29011
|
# dedicated_log_volume: false,
|
|
28831
29012
|
# ca_certificate_identifier: "String",
|
|
28832
29013
|
# engine_lifecycle_support: "String",
|
|
29014
|
+
# tag_specifications: [
|
|
29015
|
+
# {
|
|
29016
|
+
# resource_type: "String",
|
|
29017
|
+
# tags: [
|
|
29018
|
+
# {
|
|
29019
|
+
# key: "String",
|
|
29020
|
+
# value: "String",
|
|
29021
|
+
# },
|
|
29022
|
+
# ],
|
|
29023
|
+
# },
|
|
29024
|
+
# ],
|
|
28833
29025
|
# manage_master_user_password: false,
|
|
28834
29026
|
# master_user_secret_kms_key_id: "String",
|
|
28835
29027
|
# additional_storage_volumes: [
|
|
@@ -29608,6 +29800,15 @@ module Aws::RDS
|
|
|
29608
29800
|
#
|
|
29609
29801
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
29610
29802
|
#
|
|
29803
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
29804
|
+
# Tags to assign to resources associated with the DB instance.
|
|
29805
|
+
#
|
|
29806
|
+
# Valid Values:
|
|
29807
|
+
#
|
|
29808
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
29809
|
+
#
|
|
29810
|
+
# ^
|
|
29811
|
+
#
|
|
29611
29812
|
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
29612
29813
|
# A list of additional storage volumes to modify or delete for the DB
|
|
29613
29814
|
# instance. You can modify or delete up to three additional storage
|
|
@@ -29684,6 +29885,17 @@ module Aws::RDS
|
|
|
29684
29885
|
# dedicated_log_volume: false,
|
|
29685
29886
|
# ca_certificate_identifier: "String",
|
|
29686
29887
|
# engine_lifecycle_support: "String",
|
|
29888
|
+
# tag_specifications: [
|
|
29889
|
+
# {
|
|
29890
|
+
# resource_type: "String",
|
|
29891
|
+
# tags: [
|
|
29892
|
+
# {
|
|
29893
|
+
# key: "String",
|
|
29894
|
+
# value: "String",
|
|
29895
|
+
# },
|
|
29896
|
+
# ],
|
|
29897
|
+
# },
|
|
29898
|
+
# ],
|
|
29687
29899
|
# additional_storage_volumes: [
|
|
29688
29900
|
# {
|
|
29689
29901
|
# volume_name: "String", # required
|
|
@@ -30520,6 +30732,15 @@ module Aws::RDS
|
|
|
30520
30732
|
#
|
|
30521
30733
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
30522
30734
|
#
|
|
30735
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
30736
|
+
# Tags to assign to resources associated with the DB instance.
|
|
30737
|
+
#
|
|
30738
|
+
# Valid Values:
|
|
30739
|
+
#
|
|
30740
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
30741
|
+
#
|
|
30742
|
+
# ^
|
|
30743
|
+
#
|
|
30523
30744
|
# @option params [Boolean] :manage_master_user_password
|
|
30524
30745
|
# Specifies whether to manage the master user password with Amazon Web
|
|
30525
30746
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -30727,6 +30948,17 @@ module Aws::RDS
|
|
|
30727
30948
|
# dedicated_log_volume: false,
|
|
30728
30949
|
# ca_certificate_identifier: "String",
|
|
30729
30950
|
# engine_lifecycle_support: "String",
|
|
30951
|
+
# tag_specifications: [
|
|
30952
|
+
# {
|
|
30953
|
+
# resource_type: "String",
|
|
30954
|
+
# tags: [
|
|
30955
|
+
# {
|
|
30956
|
+
# key: "String",
|
|
30957
|
+
# value: "String",
|
|
30958
|
+
# },
|
|
30959
|
+
# ],
|
|
30960
|
+
# },
|
|
30961
|
+
# ],
|
|
30730
30962
|
# manage_master_user_password: false,
|
|
30731
30963
|
# master_user_secret_kms_key_id: "String",
|
|
30732
30964
|
# additional_storage_volumes: [
|
|
@@ -31633,6 +31865,9 @@ module Aws::RDS
|
|
|
31633
31865
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
|
31634
31866
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
|
31635
31867
|
#
|
|
31868
|
+
# @option params [Array<Types::Tag>] :tags
|
|
31869
|
+
# A list of tags to associate with the replicated automated backups.
|
|
31870
|
+
#
|
|
31636
31871
|
# @option params [String] :source_region
|
|
31637
31872
|
# The source region of the snapshot. This is only needed when the
|
|
31638
31873
|
# shapshot is encrypted and in a different region.
|
|
@@ -31685,6 +31920,12 @@ module Aws::RDS
|
|
|
31685
31920
|
# backup_retention_period: 1,
|
|
31686
31921
|
# kms_key_id: "String",
|
|
31687
31922
|
# pre_signed_url: "SensitiveString",
|
|
31923
|
+
# tags: [
|
|
31924
|
+
# {
|
|
31925
|
+
# key: "String",
|
|
31926
|
+
# value: "String",
|
|
31927
|
+
# },
|
|
31928
|
+
# ],
|
|
31688
31929
|
# source_region: "String",
|
|
31689
31930
|
# })
|
|
31690
31931
|
#
|
|
@@ -31722,6 +31963,9 @@ module Aws::RDS
|
|
|
31722
31963
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
31723
31964
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
31724
31965
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
31966
|
+
# resp.db_instance_automated_backup.tag_list #=> Array
|
|
31967
|
+
# resp.db_instance_automated_backup.tag_list[0].key #=> String
|
|
31968
|
+
# resp.db_instance_automated_backup.tag_list[0].value #=> String
|
|
31725
31969
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
31726
31970
|
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
31727
31971
|
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
@@ -32543,6 +32787,9 @@ module Aws::RDS
|
|
|
32543
32787
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
32544
32788
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
32545
32789
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
32790
|
+
# resp.db_instance_automated_backup.tag_list #=> Array
|
|
32791
|
+
# resp.db_instance_automated_backup.tag_list[0].key #=> String
|
|
32792
|
+
# resp.db_instance_automated_backup.tag_list[0].value #=> String
|
|
32546
32793
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
32547
32794
|
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
32548
32795
|
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
@@ -33093,7 +33340,7 @@ module Aws::RDS
|
|
|
33093
33340
|
tracer: tracer
|
|
33094
33341
|
)
|
|
33095
33342
|
context[:gem_name] = 'aws-sdk-rds'
|
|
33096
|
-
context[:gem_version] = '1.
|
|
33343
|
+
context[:gem_version] = '1.302.0'
|
|
33097
33344
|
Seahorse::Client::Request.new(handlers, context)
|
|
33098
33345
|
end
|
|
33099
33346
|
|
|
@@ -753,6 +753,8 @@ module Aws::RDS
|
|
|
753
753
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
|
754
754
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
|
755
755
|
TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
|
|
756
|
+
TagSpecification = Shapes::StructureShape.new(name: 'TagSpecification')
|
|
757
|
+
TagSpecificationList = Shapes::ListShape.new(name: 'TagSpecificationList')
|
|
756
758
|
TargetConnectionNetworkType = Shapes::StringShape.new(name: 'TargetConnectionNetworkType')
|
|
757
759
|
TargetDBClusterParameterGroupName = Shapes::StringShape.new(name: 'TargetDBClusterParameterGroupName')
|
|
758
760
|
TargetDBInstanceClass = Shapes::StringShape.new(name: 'TargetDBInstanceClass')
|
|
@@ -1159,6 +1161,7 @@ module Aws::RDS
|
|
|
1159
1161
|
CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
1160
1162
|
CreateDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
1161
1163
|
CreateDBClusterMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
1164
|
+
CreateDBClusterMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
1162
1165
|
CreateDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
|
1163
1166
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
1164
1167
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
|
@@ -1247,6 +1250,7 @@ module Aws::RDS
|
|
|
1247
1250
|
CreateDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
1248
1251
|
CreateDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
1249
1252
|
CreateDBInstanceMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
1253
|
+
CreateDBInstanceMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
1250
1254
|
CreateDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
|
1251
1255
|
CreateDBInstanceMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
1252
1256
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
|
@@ -1298,6 +1302,7 @@ module Aws::RDS
|
|
|
1298
1302
|
CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
1299
1303
|
CreateDBInstanceReadReplicaMessage.add_member(:upgrade_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeStorageConfig"))
|
|
1300
1304
|
CreateDBInstanceReadReplicaMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
1305
|
+
CreateDBInstanceReadReplicaMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
1301
1306
|
CreateDBInstanceReadReplicaMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
1302
1307
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
1303
1308
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
|
@@ -1567,6 +1572,7 @@ module Aws::RDS
|
|
|
1567
1572
|
DBClusterAutomatedBackup.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
1568
1573
|
DBClusterAutomatedBackup.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
|
1569
1574
|
DBClusterAutomatedBackup.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
|
1575
|
+
DBClusterAutomatedBackup.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
1570
1576
|
DBClusterAutomatedBackup.struct_class = Types::DBClusterAutomatedBackup
|
|
1571
1577
|
|
|
1572
1578
|
DBClusterAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBClusterAutomatedBackup, location_name: "DBClusterAutomatedBackup")
|
|
@@ -1909,6 +1915,7 @@ module Aws::RDS
|
|
|
1909
1915
|
DBInstanceAutomatedBackup.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
1910
1916
|
DBInstanceAutomatedBackup.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
1911
1917
|
DBInstanceAutomatedBackup.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
|
1918
|
+
DBInstanceAutomatedBackup.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
1912
1919
|
DBInstanceAutomatedBackup.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
1913
1920
|
DBInstanceAutomatedBackup.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
1914
1921
|
DBInstanceAutomatedBackup.struct_class = Types::DBInstanceAutomatedBackup
|
|
@@ -3317,6 +3324,7 @@ module Aws::RDS
|
|
|
3317
3324
|
ModifyDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
|
3318
3325
|
ModifyDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
3319
3326
|
ModifyDBInstanceMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
|
3327
|
+
ModifyDBInstanceMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3320
3328
|
ModifyDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
|
3321
3329
|
ModifyDBInstanceMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: ModifyAdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
3322
3330
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
|
@@ -3705,6 +3713,7 @@ module Aws::RDS
|
|
|
3705
3713
|
PromoteReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
|
3706
3714
|
PromoteReadReplicaMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
3707
3715
|
PromoteReadReplicaMessage.add_member(:preferred_backup_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredBackupWindow"))
|
|
3716
|
+
PromoteReadReplicaMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3708
3717
|
PromoteReadReplicaMessage.struct_class = Types::PromoteReadReplicaMessage
|
|
3709
3718
|
|
|
3710
3719
|
PromoteReadReplicaResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -3931,6 +3940,7 @@ module Aws::RDS
|
|
|
3931
3940
|
RestoreDBClusterFromS3Message.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
3932
3941
|
RestoreDBClusterFromS3Message.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
3933
3942
|
RestoreDBClusterFromS3Message.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
3943
|
+
RestoreDBClusterFromS3Message.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3934
3944
|
RestoreDBClusterFromS3Message.struct_class = Types::RestoreDBClusterFromS3Message
|
|
3935
3945
|
|
|
3936
3946
|
RestoreDBClusterFromS3Result.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -3971,6 +3981,7 @@ module Aws::RDS
|
|
|
3971
3981
|
RestoreDBClusterFromSnapshotMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
3972
3982
|
RestoreDBClusterFromSnapshotMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
3973
3983
|
RestoreDBClusterFromSnapshotMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
3984
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
3974
3985
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
|
3975
3986
|
|
|
3976
3987
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -4011,6 +4022,7 @@ module Aws::RDS
|
|
|
4011
4022
|
RestoreDBClusterToPointInTimeMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
4012
4023
|
RestoreDBClusterToPointInTimeMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
4013
4024
|
RestoreDBClusterToPointInTimeMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4025
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
4014
4026
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
|
4015
4027
|
|
|
4016
4028
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -4058,6 +4070,7 @@ module Aws::RDS
|
|
|
4058
4070
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
4059
4071
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
4060
4072
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4073
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
4061
4074
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
4062
4075
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
4063
4076
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
@@ -4118,6 +4131,7 @@ module Aws::RDS
|
|
|
4118
4131
|
RestoreDBInstanceFromS3Message.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
4119
4132
|
RestoreDBInstanceFromS3Message.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
4120
4133
|
RestoreDBInstanceFromS3Message.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4134
|
+
RestoreDBInstanceFromS3Message.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
4121
4135
|
RestoreDBInstanceFromS3Message.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
4122
4136
|
RestoreDBInstanceFromS3Message.struct_class = Types::RestoreDBInstanceFromS3Message
|
|
4123
4137
|
|
|
@@ -4170,6 +4184,7 @@ module Aws::RDS
|
|
|
4170
4184
|
RestoreDBInstanceToPointInTimeMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
|
4171
4185
|
RestoreDBInstanceToPointInTimeMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
4172
4186
|
RestoreDBInstanceToPointInTimeMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
4187
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecifications"))
|
|
4173
4188
|
RestoreDBInstanceToPointInTimeMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
4174
4189
|
RestoreDBInstanceToPointInTimeMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
4175
4190
|
RestoreDBInstanceToPointInTimeMessage.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesList, location_name: "AdditionalStorageVolumes"))
|
|
@@ -4280,6 +4295,7 @@ module Aws::RDS
|
|
|
4280
4295
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
4281
4296
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
4282
4297
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "PreSignedUrl"))
|
|
4298
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
4283
4299
|
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
4284
4300
|
StartDBInstanceAutomatedBackupsReplicationMessage.struct_class = Types::StartDBInstanceAutomatedBackupsReplicationMessage
|
|
4285
4301
|
|
|
@@ -4402,6 +4418,12 @@ module Aws::RDS
|
|
|
4402
4418
|
TagListMessage.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
4403
4419
|
TagListMessage.struct_class = Types::TagListMessage
|
|
4404
4420
|
|
|
4421
|
+
TagSpecification.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
|
|
4422
|
+
TagSpecification.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
4423
|
+
TagSpecification.struct_class = Types::TagSpecification
|
|
4424
|
+
|
|
4425
|
+
TagSpecificationList.member = Shapes::ShapeRef.new(shape: TagSpecification, location_name: "item")
|
|
4426
|
+
|
|
4405
4427
|
TargetGroupList.member = Shapes::ShapeRef.new(shape: DBProxyTargetGroup)
|
|
4406
4428
|
|
|
4407
4429
|
TargetHealth.add_member(:state, Shapes::ShapeRef.new(shape: TargetState, location_name: "State"))
|