aws-sdk-rds 1.87.0 → 1.92.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +24 -51
- data/lib/aws-sdk-rds/client_api.rb +50 -0
- data/lib/aws-sdk-rds/db_cluster.rb +11 -25
- data/lib/aws-sdk-rds/db_instance.rb +11 -25
- data/lib/aws-sdk-rds/resource.rb +30 -72
- data/lib/aws-sdk-rds/types.rb +330 -49
- metadata +2 -2
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1704,8 +1704,6 @@ module Aws::RDS
|
|
1704
1704
|
# values: ["String"], # required
|
1705
1705
|
# },
|
1706
1706
|
# ],
|
1707
|
-
# max_records: 1,
|
1708
|
-
# marker: "String",
|
1709
1707
|
# })
|
1710
1708
|
# @param [Hash] options ({})
|
1711
1709
|
# @option options [String] :certificate_identifier
|
@@ -1720,33 +1718,21 @@ module Aws::RDS
|
|
1720
1718
|
# ^
|
1721
1719
|
# @option options [Array<Types::Filter>] :filters
|
1722
1720
|
# This parameter isn't currently supported.
|
1723
|
-
# @option options [Integer] :max_records
|
1724
|
-
# The maximum number of records to include in the response. If more
|
1725
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
1726
|
-
# token called a marker is included in the response so you can retrieve
|
1727
|
-
# the remaining results.
|
1728
|
-
#
|
1729
|
-
# Default: 100
|
1730
|
-
#
|
1731
|
-
# Constraints: Minimum 20, maximum 100.
|
1732
|
-
# @option options [String] :marker
|
1733
|
-
# An optional pagination token provided by a previous
|
1734
|
-
# `DescribeCertificates` request. If this parameter is specified, the
|
1735
|
-
# response includes only records beyond the marker, up to the value
|
1736
|
-
# specified by `MaxRecords`.
|
1737
1721
|
# @return [Certificate::Collection]
|
1738
1722
|
def certificates(options = {})
|
1739
1723
|
batches = Enumerator.new do |y|
|
1740
|
-
batch = []
|
1741
1724
|
resp = @client.describe_certificates(options)
|
1742
|
-
resp.
|
1743
|
-
batch
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1725
|
+
resp.each_page do |page|
|
1726
|
+
batch = []
|
1727
|
+
page.data.certificates.each do |c|
|
1728
|
+
batch << Certificate.new(
|
1729
|
+
id: c.certificate_identifier,
|
1730
|
+
data: c,
|
1731
|
+
client: @client
|
1732
|
+
)
|
1733
|
+
end
|
1734
|
+
y.yield(batch)
|
1748
1735
|
end
|
1749
|
-
y.yield(batch)
|
1750
1736
|
end
|
1751
1737
|
Certificate::Collection.new(batches)
|
1752
1738
|
end
|
@@ -1779,8 +1765,6 @@ module Aws::RDS
|
|
1779
1765
|
# values: ["String"], # required
|
1780
1766
|
# },
|
1781
1767
|
# ],
|
1782
|
-
# max_records: 1,
|
1783
|
-
# marker: "String",
|
1784
1768
|
# })
|
1785
1769
|
# @param [Hash] options ({})
|
1786
1770
|
# @option options [String] :db_cluster_parameter_group_name
|
@@ -1795,33 +1779,21 @@ module Aws::RDS
|
|
1795
1779
|
# ^
|
1796
1780
|
# @option options [Array<Types::Filter>] :filters
|
1797
1781
|
# This parameter isn't currently supported.
|
1798
|
-
# @option options [Integer] :max_records
|
1799
|
-
# The maximum number of records to include in the response. If more
|
1800
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
1801
|
-
# token called a marker is included in the response so you can retrieve
|
1802
|
-
# the remaining results.
|
1803
|
-
#
|
1804
|
-
# Default: 100
|
1805
|
-
#
|
1806
|
-
# Constraints: Minimum 20, maximum 100.
|
1807
|
-
# @option options [String] :marker
|
1808
|
-
# An optional pagination token provided by a previous
|
1809
|
-
# `DescribeDBClusterParameterGroups` request. If this parameter is
|
1810
|
-
# specified, the response includes only records beyond the marker, up to
|
1811
|
-
# the value specified by `MaxRecords`.
|
1812
1782
|
# @return [DBClusterParameterGroup::Collection]
|
1813
1783
|
def db_cluster_parameter_groups(options = {})
|
1814
1784
|
batches = Enumerator.new do |y|
|
1815
|
-
batch = []
|
1816
1785
|
resp = @client.describe_db_cluster_parameter_groups(options)
|
1817
|
-
resp.
|
1818
|
-
batch
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1786
|
+
resp.each_page do |page|
|
1787
|
+
batch = []
|
1788
|
+
page.data.db_cluster_parameter_groups.each do |d|
|
1789
|
+
batch << DBClusterParameterGroup.new(
|
1790
|
+
name: d.db_cluster_parameter_group_name,
|
1791
|
+
data: d,
|
1792
|
+
client: @client
|
1793
|
+
)
|
1794
|
+
end
|
1795
|
+
y.yield(batch)
|
1823
1796
|
end
|
1824
|
-
y.yield(batch)
|
1825
1797
|
end
|
1826
1798
|
DBClusterParameterGroup::Collection.new(batches)
|
1827
1799
|
end
|
@@ -2754,8 +2726,6 @@ module Aws::RDS
|
|
2754
2726
|
# values: ["String"], # required
|
2755
2727
|
# },
|
2756
2728
|
# ],
|
2757
|
-
# marker: "String",
|
2758
|
-
# max_records: 1,
|
2759
2729
|
# })
|
2760
2730
|
# @param [Hash] options ({})
|
2761
2731
|
# @option options [String] :resource_identifier
|
@@ -2774,33 +2744,21 @@ module Aws::RDS
|
|
2774
2744
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
2775
2745
|
# ARNs. The results list will only include pending maintenance actions
|
2776
2746
|
# for the DB instances identified by these ARNs.
|
2777
|
-
# @option options [String] :marker
|
2778
|
-
# An optional pagination token provided by a previous
|
2779
|
-
# `DescribePendingMaintenanceActions` request. If this parameter is
|
2780
|
-
# specified, the response includes only records beyond the marker, up to
|
2781
|
-
# a number of records specified by `MaxRecords`.
|
2782
|
-
# @option options [Integer] :max_records
|
2783
|
-
# The maximum number of records to include in the response. If more
|
2784
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
2785
|
-
# token called a marker is included in the response so that you can
|
2786
|
-
# retrieve the remaining results.
|
2787
|
-
#
|
2788
|
-
# Default: 100
|
2789
|
-
#
|
2790
|
-
# Constraints: Minimum 20, maximum 100.
|
2791
2747
|
# @return [ResourcePendingMaintenanceActionList::Collection]
|
2792
2748
|
def resources_with_pending_maintenance_actions(options = {})
|
2793
2749
|
batches = Enumerator.new do |y|
|
2794
|
-
batch = []
|
2795
2750
|
resp = @client.describe_pending_maintenance_actions(options)
|
2796
|
-
resp.
|
2797
|
-
batch
|
2798
|
-
|
2799
|
-
|
2800
|
-
|
2801
|
-
|
2751
|
+
resp.each_page do |page|
|
2752
|
+
batch = []
|
2753
|
+
page.data.pending_maintenance_actions.each do |p|
|
2754
|
+
batch << ResourcePendingMaintenanceActionList.new(
|
2755
|
+
arn: p.resource_identifier,
|
2756
|
+
data: p,
|
2757
|
+
client: @client
|
2758
|
+
)
|
2759
|
+
end
|
2760
|
+
y.yield(batch)
|
2802
2761
|
end
|
2803
|
-
y.yield(batch)
|
2804
2762
|
end
|
2805
2763
|
ResourcePendingMaintenanceActionList::Collection.new(batches)
|
2806
2764
|
end
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -22,6 +22,7 @@ module Aws::RDS
|
|
22
22
|
#
|
23
23
|
class AccountAttributesMessage < Struct.new(
|
24
24
|
:account_quotas)
|
25
|
+
SENSITIVE = []
|
25
26
|
include Aws::Structure
|
26
27
|
end
|
27
28
|
|
@@ -133,6 +134,7 @@ module Aws::RDS
|
|
133
134
|
:account_quota_name,
|
134
135
|
:used,
|
135
136
|
:max)
|
137
|
+
SENSITIVE = []
|
136
138
|
include Aws::Structure
|
137
139
|
end
|
138
140
|
|
@@ -167,6 +169,7 @@ module Aws::RDS
|
|
167
169
|
:db_cluster_identifier,
|
168
170
|
:role_arn,
|
169
171
|
:feature_name)
|
172
|
+
SENSITIVE = []
|
170
173
|
include Aws::Structure
|
171
174
|
end
|
172
175
|
|
@@ -201,6 +204,7 @@ module Aws::RDS
|
|
201
204
|
:db_instance_identifier,
|
202
205
|
:role_arn,
|
203
206
|
:feature_name)
|
207
|
+
SENSITIVE = []
|
204
208
|
include Aws::Structure
|
205
209
|
end
|
206
210
|
|
@@ -240,6 +244,7 @@ module Aws::RDS
|
|
240
244
|
class AddSourceIdentifierToSubscriptionMessage < Struct.new(
|
241
245
|
:subscription_name,
|
242
246
|
:source_identifier)
|
247
|
+
SENSITIVE = []
|
243
248
|
include Aws::Structure
|
244
249
|
end
|
245
250
|
|
@@ -252,6 +257,7 @@ module Aws::RDS
|
|
252
257
|
#
|
253
258
|
class AddSourceIdentifierToSubscriptionResult < Struct.new(
|
254
259
|
:event_subscription)
|
260
|
+
SENSITIVE = []
|
255
261
|
include Aws::Structure
|
256
262
|
end
|
257
263
|
|
@@ -287,6 +293,7 @@ module Aws::RDS
|
|
287
293
|
class AddTagsToResourceMessage < Struct.new(
|
288
294
|
:resource_name,
|
289
295
|
:tags)
|
296
|
+
SENSITIVE = []
|
290
297
|
include Aws::Structure
|
291
298
|
end
|
292
299
|
|
@@ -338,6 +345,7 @@ module Aws::RDS
|
|
338
345
|
:resource_identifier,
|
339
346
|
:apply_action,
|
340
347
|
:opt_in_type)
|
348
|
+
SENSITIVE = []
|
341
349
|
include Aws::Structure
|
342
350
|
end
|
343
351
|
|
@@ -349,6 +357,7 @@ module Aws::RDS
|
|
349
357
|
#
|
350
358
|
class ApplyPendingMaintenanceActionResult < Struct.new(
|
351
359
|
:resource_pending_maintenance_actions)
|
360
|
+
SENSITIVE = []
|
352
361
|
include Aws::Structure
|
353
362
|
end
|
354
363
|
|
@@ -425,6 +434,7 @@ module Aws::RDS
|
|
425
434
|
:ec2_security_group_name,
|
426
435
|
:ec2_security_group_id,
|
427
436
|
:ec2_security_group_owner_id)
|
437
|
+
SENSITIVE = []
|
428
438
|
include Aws::Structure
|
429
439
|
end
|
430
440
|
|
@@ -439,6 +449,7 @@ module Aws::RDS
|
|
439
449
|
#
|
440
450
|
class AuthorizeDBSecurityGroupIngressResult < Struct.new(
|
441
451
|
:db_security_group)
|
452
|
+
SENSITIVE = []
|
442
453
|
include Aws::Structure
|
443
454
|
end
|
444
455
|
|
@@ -455,6 +466,7 @@ module Aws::RDS
|
|
455
466
|
#
|
456
467
|
class AvailabilityZone < Struct.new(
|
457
468
|
:name)
|
469
|
+
SENSITIVE = []
|
458
470
|
include Aws::Structure
|
459
471
|
end
|
460
472
|
|
@@ -489,6 +501,7 @@ module Aws::RDS
|
|
489
501
|
:name,
|
490
502
|
:default_value,
|
491
503
|
:allowed_values)
|
504
|
+
SENSITIVE = []
|
492
505
|
include Aws::Structure
|
493
506
|
end
|
494
507
|
|
@@ -562,6 +575,7 @@ module Aws::RDS
|
|
562
575
|
:backtrack_to,
|
563
576
|
:force,
|
564
577
|
:use_earliest_time_on_point_in_time_unavailable)
|
578
|
+
SENSITIVE = []
|
565
579
|
include Aws::Structure
|
566
580
|
end
|
567
581
|
|
@@ -584,6 +598,7 @@ module Aws::RDS
|
|
584
598
|
#
|
585
599
|
class CancelExportTaskMessage < Struct.new(
|
586
600
|
:export_task_identifier)
|
601
|
+
SENSITIVE = []
|
587
602
|
include Aws::Structure
|
588
603
|
end
|
589
604
|
|
@@ -633,6 +648,7 @@ module Aws::RDS
|
|
633
648
|
:certificate_arn,
|
634
649
|
:customer_override,
|
635
650
|
:customer_override_valid_till)
|
651
|
+
SENSITIVE = []
|
636
652
|
include Aws::Structure
|
637
653
|
end
|
638
654
|
|
@@ -654,6 +670,7 @@ module Aws::RDS
|
|
654
670
|
class CertificateMessage < Struct.new(
|
655
671
|
:certificates,
|
656
672
|
:marker)
|
673
|
+
SENSITIVE = []
|
657
674
|
include Aws::Structure
|
658
675
|
end
|
659
676
|
|
@@ -679,6 +696,7 @@ module Aws::RDS
|
|
679
696
|
class CharacterSet < Struct.new(
|
680
697
|
:character_set_name,
|
681
698
|
:character_set_description)
|
699
|
+
SENSITIVE = []
|
682
700
|
include Aws::Structure
|
683
701
|
end
|
684
702
|
|
@@ -716,14 +734,10 @@ module Aws::RDS
|
|
716
734
|
class CloudwatchLogsExportConfiguration < Struct.new(
|
717
735
|
:enable_log_types,
|
718
736
|
:disable_log_types)
|
737
|
+
SENSITIVE = []
|
719
738
|
include Aws::Structure
|
720
739
|
end
|
721
740
|
|
722
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
723
|
-
# preview release. It is subject to change.
|
724
|
-
#
|
725
|
-
# </note>
|
726
|
-
#
|
727
741
|
# Specifies the settings that control the size and behavior of the
|
728
742
|
# connection pool associated with a `DBProxyTargetGroup`.
|
729
743
|
#
|
@@ -792,8 +806,6 @@ module Aws::RDS
|
|
792
806
|
# the separator. You can also include multiple variables in a single
|
793
807
|
# `SET` statement, such as `SET x=1, y=2`.
|
794
808
|
#
|
795
|
-
# `InitQuery` is not currently supported for PostgreSQL.
|
796
|
-
#
|
797
809
|
# Default: no initialization query
|
798
810
|
# @return [String]
|
799
811
|
#
|
@@ -805,14 +817,10 @@ module Aws::RDS
|
|
805
817
|
:connection_borrow_timeout,
|
806
818
|
:session_pinning_filters,
|
807
819
|
:init_query)
|
820
|
+
SENSITIVE = []
|
808
821
|
include Aws::Structure
|
809
822
|
end
|
810
823
|
|
811
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
812
|
-
# preview release. It is subject to change.
|
813
|
-
#
|
814
|
-
# </note>
|
815
|
-
#
|
816
824
|
# Displays the settings that control the size and behavior of the
|
817
825
|
# connection pool associated with a `DBProxyTarget`.
|
818
826
|
#
|
@@ -857,8 +865,6 @@ module Aws::RDS
|
|
857
865
|
# multiple statements, use semicolons as the separator. You can also
|
858
866
|
# include multiple variables in a single `SET` statement, such as `SET
|
859
867
|
# x=1, y=2`.
|
860
|
-
#
|
861
|
-
# `InitQuery` is not currently supported for PostgreSQL.
|
862
868
|
# @return [String]
|
863
869
|
#
|
864
870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfigurationInfo AWS API Documentation
|
@@ -869,6 +875,7 @@ module Aws::RDS
|
|
869
875
|
:connection_borrow_timeout,
|
870
876
|
:session_pinning_filters,
|
871
877
|
:init_query)
|
878
|
+
SENSITIVE = []
|
872
879
|
include Aws::Structure
|
873
880
|
end
|
874
881
|
|
@@ -947,6 +954,7 @@ module Aws::RDS
|
|
947
954
|
:target_db_cluster_parameter_group_identifier,
|
948
955
|
:target_db_cluster_parameter_group_description,
|
949
956
|
:tags)
|
957
|
+
SENSITIVE = []
|
950
958
|
include Aws::Structure
|
951
959
|
end
|
952
960
|
|
@@ -961,6 +969,7 @@ module Aws::RDS
|
|
961
969
|
#
|
962
970
|
class CopyDBClusterParameterGroupResult < Struct.new(
|
963
971
|
:db_cluster_parameter_group)
|
972
|
+
SENSITIVE = []
|
964
973
|
include Aws::Structure
|
965
974
|
end
|
966
975
|
|
@@ -1132,6 +1141,7 @@ module Aws::RDS
|
|
1132
1141
|
:tags,
|
1133
1142
|
:destination_region,
|
1134
1143
|
:source_region)
|
1144
|
+
SENSITIVE = []
|
1135
1145
|
include Aws::Structure
|
1136
1146
|
end
|
1137
1147
|
|
@@ -1146,6 +1156,7 @@ module Aws::RDS
|
|
1146
1156
|
#
|
1147
1157
|
class CopyDBClusterSnapshotResult < Struct.new(
|
1148
1158
|
:db_cluster_snapshot)
|
1159
|
+
SENSITIVE = []
|
1149
1160
|
include Aws::Structure
|
1150
1161
|
end
|
1151
1162
|
|
@@ -1217,6 +1228,7 @@ module Aws::RDS
|
|
1217
1228
|
:target_db_parameter_group_identifier,
|
1218
1229
|
:target_db_parameter_group_description,
|
1219
1230
|
:tags)
|
1231
|
+
SENSITIVE = []
|
1220
1232
|
include Aws::Structure
|
1221
1233
|
end
|
1222
1234
|
|
@@ -1231,6 +1243,7 @@ module Aws::RDS
|
|
1231
1243
|
#
|
1232
1244
|
class CopyDBParameterGroupResult < Struct.new(
|
1233
1245
|
:db_parameter_group)
|
1246
|
+
SENSITIVE = []
|
1234
1247
|
include Aws::Structure
|
1235
1248
|
end
|
1236
1249
|
|
@@ -1433,6 +1446,7 @@ module Aws::RDS
|
|
1433
1446
|
:option_group_name,
|
1434
1447
|
:destination_region,
|
1435
1448
|
:source_region)
|
1449
|
+
SENSITIVE = []
|
1436
1450
|
include Aws::Structure
|
1437
1451
|
end
|
1438
1452
|
|
@@ -1447,6 +1461,7 @@ module Aws::RDS
|
|
1447
1461
|
#
|
1448
1462
|
class CopyDBSnapshotResult < Struct.new(
|
1449
1463
|
:db_snapshot)
|
1464
|
+
SENSITIVE = []
|
1450
1465
|
include Aws::Structure
|
1451
1466
|
end
|
1452
1467
|
|
@@ -1523,6 +1538,7 @@ module Aws::RDS
|
|
1523
1538
|
:target_option_group_identifier,
|
1524
1539
|
:target_option_group_description,
|
1525
1540
|
:tags)
|
1541
|
+
SENSITIVE = []
|
1526
1542
|
include Aws::Structure
|
1527
1543
|
end
|
1528
1544
|
|
@@ -1533,6 +1549,7 @@ module Aws::RDS
|
|
1533
1549
|
#
|
1534
1550
|
class CopyOptionGroupResult < Struct.new(
|
1535
1551
|
:option_group)
|
1552
|
+
SENSITIVE = []
|
1536
1553
|
include Aws::Structure
|
1537
1554
|
end
|
1538
1555
|
|
@@ -1576,6 +1593,7 @@ module Aws::RDS
|
|
1576
1593
|
:existing_vpn_id,
|
1577
1594
|
:new_vpn_tunnel_name,
|
1578
1595
|
:vpn_tunnel_originator_ip)
|
1596
|
+
SENSITIVE = []
|
1579
1597
|
include Aws::Structure
|
1580
1598
|
end
|
1581
1599
|
|
@@ -1595,6 +1613,7 @@ module Aws::RDS
|
|
1595
1613
|
#
|
1596
1614
|
class CreateCustomAvailabilityZoneResult < Struct.new(
|
1597
1615
|
:custom_availability_zone)
|
1616
|
+
SENSITIVE = []
|
1598
1617
|
include Aws::Structure
|
1599
1618
|
end
|
1600
1619
|
|
@@ -1654,6 +1673,7 @@ module Aws::RDS
|
|
1654
1673
|
:static_members,
|
1655
1674
|
:excluded_members,
|
1656
1675
|
:tags)
|
1676
|
+
SENSITIVE = []
|
1657
1677
|
include Aws::Structure
|
1658
1678
|
end
|
1659
1679
|
|
@@ -2181,6 +2201,7 @@ module Aws::RDS
|
|
2181
2201
|
:enable_global_write_forwarding,
|
2182
2202
|
:destination_region,
|
2183
2203
|
:source_region)
|
2204
|
+
SENSITIVE = []
|
2184
2205
|
include Aws::Structure
|
2185
2206
|
end
|
2186
2207
|
|
@@ -2244,6 +2265,7 @@ module Aws::RDS
|
|
2244
2265
|
:db_parameter_group_family,
|
2245
2266
|
:description,
|
2246
2267
|
:tags)
|
2268
|
+
SENSITIVE = []
|
2247
2269
|
include Aws::Structure
|
2248
2270
|
end
|
2249
2271
|
|
@@ -2258,6 +2280,7 @@ module Aws::RDS
|
|
2258
2280
|
#
|
2259
2281
|
class CreateDBClusterParameterGroupResult < Struct.new(
|
2260
2282
|
:db_cluster_parameter_group)
|
2283
|
+
SENSITIVE = []
|
2261
2284
|
include Aws::Structure
|
2262
2285
|
end
|
2263
2286
|
|
@@ -2272,6 +2295,7 @@ module Aws::RDS
|
|
2272
2295
|
#
|
2273
2296
|
class CreateDBClusterResult < Struct.new(
|
2274
2297
|
:db_cluster)
|
2298
|
+
SENSITIVE = []
|
2275
2299
|
include Aws::Structure
|
2276
2300
|
end
|
2277
2301
|
|
@@ -2327,6 +2351,7 @@ module Aws::RDS
|
|
2327
2351
|
:db_cluster_snapshot_identifier,
|
2328
2352
|
:db_cluster_identifier,
|
2329
2353
|
:tags)
|
2354
|
+
SENSITIVE = []
|
2330
2355
|
include Aws::Structure
|
2331
2356
|
end
|
2332
2357
|
|
@@ -2341,6 +2366,7 @@ module Aws::RDS
|
|
2341
2366
|
#
|
2342
2367
|
class CreateDBClusterSnapshotResult < Struct.new(
|
2343
2368
|
:db_cluster_snapshot)
|
2369
|
+
SENSITIVE = []
|
2344
2370
|
include Aws::Structure
|
2345
2371
|
end
|
2346
2372
|
|
@@ -3361,6 +3387,7 @@ module Aws::RDS
|
|
3361
3387
|
:processor_features,
|
3362
3388
|
:deletion_protection,
|
3363
3389
|
:max_allocated_storage)
|
3390
|
+
SENSITIVE = []
|
3364
3391
|
include Aws::Structure
|
3365
3392
|
end
|
3366
3393
|
|
@@ -3879,6 +3906,7 @@ module Aws::RDS
|
|
3879
3906
|
:domain_iam_role_name,
|
3880
3907
|
:destination_region,
|
3881
3908
|
:source_region)
|
3909
|
+
SENSITIVE = []
|
3882
3910
|
include Aws::Structure
|
3883
3911
|
end
|
3884
3912
|
|
@@ -3893,6 +3921,7 @@ module Aws::RDS
|
|
3893
3921
|
#
|
3894
3922
|
class CreateDBInstanceReadReplicaResult < Struct.new(
|
3895
3923
|
:db_instance)
|
3924
|
+
SENSITIVE = []
|
3896
3925
|
include Aws::Structure
|
3897
3926
|
end
|
3898
3927
|
|
@@ -3907,6 +3936,7 @@ module Aws::RDS
|
|
3907
3936
|
#
|
3908
3937
|
class CreateDBInstanceResult < Struct.new(
|
3909
3938
|
:db_instance)
|
3939
|
+
SENSITIVE = []
|
3910
3940
|
include Aws::Structure
|
3911
3941
|
end
|
3912
3942
|
|
@@ -3973,6 +4003,7 @@ module Aws::RDS
|
|
3973
4003
|
:db_parameter_group_family,
|
3974
4004
|
:description,
|
3975
4005
|
:tags)
|
4006
|
+
SENSITIVE = []
|
3976
4007
|
include Aws::Structure
|
3977
4008
|
end
|
3978
4009
|
|
@@ -3987,6 +4018,7 @@ module Aws::RDS
|
|
3987
4018
|
#
|
3988
4019
|
class CreateDBParameterGroupResult < Struct.new(
|
3989
4020
|
:db_parameter_group)
|
4021
|
+
SENSITIVE = []
|
3990
4022
|
include Aws::Structure
|
3991
4023
|
end
|
3992
4024
|
|
@@ -4093,6 +4125,7 @@ module Aws::RDS
|
|
4093
4125
|
:idle_client_timeout,
|
4094
4126
|
:debug_logging,
|
4095
4127
|
:tags)
|
4128
|
+
SENSITIVE = []
|
4096
4129
|
include Aws::Structure
|
4097
4130
|
end
|
4098
4131
|
|
@@ -4104,6 +4137,7 @@ module Aws::RDS
|
|
4104
4137
|
#
|
4105
4138
|
class CreateDBProxyResponse < Struct.new(
|
4106
4139
|
:db_proxy)
|
4140
|
+
SENSITIVE = []
|
4107
4141
|
include Aws::Structure
|
4108
4142
|
end
|
4109
4143
|
|
@@ -4152,6 +4186,7 @@ module Aws::RDS
|
|
4152
4186
|
:db_security_group_name,
|
4153
4187
|
:db_security_group_description,
|
4154
4188
|
:tags)
|
4189
|
+
SENSITIVE = []
|
4155
4190
|
include Aws::Structure
|
4156
4191
|
end
|
4157
4192
|
|
@@ -4166,6 +4201,7 @@ module Aws::RDS
|
|
4166
4201
|
#
|
4167
4202
|
class CreateDBSecurityGroupResult < Struct.new(
|
4168
4203
|
:db_security_group)
|
4204
|
+
SENSITIVE = []
|
4169
4205
|
include Aws::Structure
|
4170
4206
|
end
|
4171
4207
|
|
@@ -4225,6 +4261,7 @@ module Aws::RDS
|
|
4225
4261
|
:db_snapshot_identifier,
|
4226
4262
|
:db_instance_identifier,
|
4227
4263
|
:tags)
|
4264
|
+
SENSITIVE = []
|
4228
4265
|
include Aws::Structure
|
4229
4266
|
end
|
4230
4267
|
|
@@ -4239,6 +4276,7 @@ module Aws::RDS
|
|
4239
4276
|
#
|
4240
4277
|
class CreateDBSnapshotResult < Struct.new(
|
4241
4278
|
:db_snapshot)
|
4279
|
+
SENSITIVE = []
|
4242
4280
|
include Aws::Structure
|
4243
4281
|
end
|
4244
4282
|
|
@@ -4286,6 +4324,7 @@ module Aws::RDS
|
|
4286
4324
|
:db_subnet_group_description,
|
4287
4325
|
:subnet_ids,
|
4288
4326
|
:tags)
|
4327
|
+
SENSITIVE = []
|
4289
4328
|
include Aws::Structure
|
4290
4329
|
end
|
4291
4330
|
|
@@ -4300,6 +4339,7 @@ module Aws::RDS
|
|
4300
4339
|
#
|
4301
4340
|
class CreateDBSubnetGroupResult < Struct.new(
|
4302
4341
|
:db_subnet_group)
|
4342
|
+
SENSITIVE = []
|
4303
4343
|
include Aws::Structure
|
4304
4344
|
end
|
4305
4345
|
|
@@ -4403,6 +4443,7 @@ module Aws::RDS
|
|
4403
4443
|
:source_ids,
|
4404
4444
|
:enabled,
|
4405
4445
|
:tags)
|
4446
|
+
SENSITIVE = []
|
4406
4447
|
include Aws::Structure
|
4407
4448
|
end
|
4408
4449
|
|
@@ -4415,6 +4456,7 @@ module Aws::RDS
|
|
4415
4456
|
#
|
4416
4457
|
class CreateEventSubscriptionResult < Struct.new(
|
4417
4458
|
:event_subscription)
|
4459
|
+
SENSITIVE = []
|
4418
4460
|
include Aws::Structure
|
4419
4461
|
end
|
4420
4462
|
|
@@ -4475,6 +4517,7 @@ module Aws::RDS
|
|
4475
4517
|
:deletion_protection,
|
4476
4518
|
:database_name,
|
4477
4519
|
:storage_encrypted)
|
4520
|
+
SENSITIVE = []
|
4478
4521
|
include Aws::Structure
|
4479
4522
|
end
|
4480
4523
|
|
@@ -4486,6 +4529,7 @@ module Aws::RDS
|
|
4486
4529
|
#
|
4487
4530
|
class CreateGlobalClusterResult < Struct.new(
|
4488
4531
|
:global_cluster)
|
4532
|
+
SENSITIVE = []
|
4489
4533
|
include Aws::Structure
|
4490
4534
|
end
|
4491
4535
|
|
@@ -4545,6 +4589,7 @@ module Aws::RDS
|
|
4545
4589
|
:major_engine_version,
|
4546
4590
|
:option_group_description,
|
4547
4591
|
:tags)
|
4592
|
+
SENSITIVE = []
|
4548
4593
|
include Aws::Structure
|
4549
4594
|
end
|
4550
4595
|
|
@@ -4555,6 +4600,7 @@ module Aws::RDS
|
|
4555
4600
|
#
|
4556
4601
|
class CreateOptionGroupResult < Struct.new(
|
4557
4602
|
:option_group)
|
4603
|
+
SENSITIVE = []
|
4558
4604
|
include Aws::Structure
|
4559
4605
|
end
|
4560
4606
|
|
@@ -4595,6 +4641,7 @@ module Aws::RDS
|
|
4595
4641
|
:custom_availability_zone_name,
|
4596
4642
|
:custom_availability_zone_status,
|
4597
4643
|
:vpn_details)
|
4644
|
+
SENSITIVE = []
|
4598
4645
|
include Aws::Structure
|
4599
4646
|
end
|
4600
4647
|
|
@@ -4621,6 +4668,7 @@ module Aws::RDS
|
|
4621
4668
|
class CustomAvailabilityZoneMessage < Struct.new(
|
4622
4669
|
:marker,
|
4623
4670
|
:custom_availability_zones)
|
4671
|
+
SENSITIVE = []
|
4624
4672
|
include Aws::Structure
|
4625
4673
|
end
|
4626
4674
|
|
@@ -5027,6 +5075,7 @@ module Aws::RDS
|
|
5027
5075
|
:domain_memberships,
|
5028
5076
|
:global_write_forwarding_status,
|
5029
5077
|
:global_write_forwarding_requested)
|
5078
|
+
SENSITIVE = []
|
5030
5079
|
include Aws::Structure
|
5031
5080
|
end
|
5032
5081
|
|
@@ -5086,6 +5135,7 @@ module Aws::RDS
|
|
5086
5135
|
:backtracked_from,
|
5087
5136
|
:backtrack_request_creation_time,
|
5088
5137
|
:status)
|
5138
|
+
SENSITIVE = []
|
5089
5139
|
include Aws::Structure
|
5090
5140
|
end
|
5091
5141
|
|
@@ -5106,6 +5156,7 @@ module Aws::RDS
|
|
5106
5156
|
class DBClusterBacktrackMessage < Struct.new(
|
5107
5157
|
:marker,
|
5108
5158
|
:db_cluster_backtracks)
|
5159
|
+
SENSITIVE = []
|
5109
5160
|
include Aws::Structure
|
5110
5161
|
end
|
5111
5162
|
|
@@ -5147,6 +5198,7 @@ module Aws::RDS
|
|
5147
5198
|
:current_capacity,
|
5148
5199
|
:seconds_before_timeout,
|
5149
5200
|
:timeout_action)
|
5201
|
+
SENSITIVE = []
|
5150
5202
|
include Aws::Structure
|
5151
5203
|
end
|
5152
5204
|
|
@@ -5227,6 +5279,7 @@ module Aws::RDS
|
|
5227
5279
|
:static_members,
|
5228
5280
|
:excluded_members,
|
5229
5281
|
:db_cluster_endpoint_arn)
|
5282
|
+
SENSITIVE = []
|
5230
5283
|
include Aws::Structure
|
5231
5284
|
end
|
5232
5285
|
|
@@ -5254,6 +5307,7 @@ module Aws::RDS
|
|
5254
5307
|
class DBClusterEndpointMessage < Struct.new(
|
5255
5308
|
:marker,
|
5256
5309
|
:db_cluster_endpoints)
|
5310
|
+
SENSITIVE = []
|
5257
5311
|
include Aws::Structure
|
5258
5312
|
end
|
5259
5313
|
|
@@ -5303,6 +5357,7 @@ module Aws::RDS
|
|
5303
5357
|
:is_cluster_writer,
|
5304
5358
|
:db_cluster_parameter_group_status,
|
5305
5359
|
:promotion_tier)
|
5360
|
+
SENSITIVE = []
|
5306
5361
|
include Aws::Structure
|
5307
5362
|
end
|
5308
5363
|
|
@@ -5323,6 +5378,7 @@ module Aws::RDS
|
|
5323
5378
|
class DBClusterMessage < Struct.new(
|
5324
5379
|
:marker,
|
5325
5380
|
:db_clusters)
|
5381
|
+
SENSITIVE = []
|
5326
5382
|
include Aws::Structure
|
5327
5383
|
end
|
5328
5384
|
|
@@ -5347,6 +5403,7 @@ module Aws::RDS
|
|
5347
5403
|
class DBClusterOptionGroupStatus < Struct.new(
|
5348
5404
|
:db_cluster_option_group_name,
|
5349
5405
|
:status)
|
5406
|
+
SENSITIVE = []
|
5350
5407
|
include Aws::Structure
|
5351
5408
|
end
|
5352
5409
|
|
@@ -5380,6 +5437,7 @@ module Aws::RDS
|
|
5380
5437
|
:db_parameter_group_family,
|
5381
5438
|
:description,
|
5382
5439
|
:db_cluster_parameter_group_arn)
|
5440
|
+
SENSITIVE = []
|
5383
5441
|
include Aws::Structure
|
5384
5442
|
end
|
5385
5443
|
|
@@ -5402,6 +5460,7 @@ module Aws::RDS
|
|
5402
5460
|
class DBClusterParameterGroupDetails < Struct.new(
|
5403
5461
|
:parameters,
|
5404
5462
|
:marker)
|
5463
|
+
SENSITIVE = []
|
5405
5464
|
include Aws::Structure
|
5406
5465
|
end
|
5407
5466
|
|
@@ -5425,6 +5484,7 @@ module Aws::RDS
|
|
5425
5484
|
#
|
5426
5485
|
class DBClusterParameterGroupNameMessage < Struct.new(
|
5427
5486
|
:db_cluster_parameter_group_name)
|
5487
|
+
SENSITIVE = []
|
5428
5488
|
include Aws::Structure
|
5429
5489
|
end
|
5430
5490
|
|
@@ -5451,6 +5511,7 @@ module Aws::RDS
|
|
5451
5511
|
class DBClusterParameterGroupsMessage < Struct.new(
|
5452
5512
|
:marker,
|
5453
5513
|
:db_cluster_parameter_groups)
|
5514
|
+
SENSITIVE = []
|
5454
5515
|
include Aws::Structure
|
5455
5516
|
end
|
5456
5517
|
|
@@ -5496,6 +5557,7 @@ module Aws::RDS
|
|
5496
5557
|
:role_arn,
|
5497
5558
|
:status,
|
5498
5559
|
:feature_name)
|
5560
|
+
SENSITIVE = []
|
5499
5561
|
include Aws::Structure
|
5500
5562
|
end
|
5501
5563
|
|
@@ -5639,6 +5701,7 @@ module Aws::RDS
|
|
5639
5701
|
:db_cluster_snapshot_arn,
|
5640
5702
|
:source_db_cluster_snapshot_arn,
|
5641
5703
|
:iam_database_authentication_enabled)
|
5704
|
+
SENSITIVE = []
|
5642
5705
|
include Aws::Structure
|
5643
5706
|
end
|
5644
5707
|
|
@@ -5679,6 +5742,7 @@ module Aws::RDS
|
|
5679
5742
|
class DBClusterSnapshotAttribute < Struct.new(
|
5680
5743
|
:attribute_name,
|
5681
5744
|
:attribute_values)
|
5745
|
+
SENSITIVE = []
|
5682
5746
|
include Aws::Structure
|
5683
5747
|
end
|
5684
5748
|
|
@@ -5704,6 +5768,7 @@ module Aws::RDS
|
|
5704
5768
|
class DBClusterSnapshotAttributesResult < Struct.new(
|
5705
5769
|
:db_cluster_snapshot_identifier,
|
5706
5770
|
:db_cluster_snapshot_attributes)
|
5771
|
+
SENSITIVE = []
|
5707
5772
|
include Aws::Structure
|
5708
5773
|
end
|
5709
5774
|
|
@@ -5726,6 +5791,7 @@ module Aws::RDS
|
|
5726
5791
|
class DBClusterSnapshotMessage < Struct.new(
|
5727
5792
|
:marker,
|
5728
5793
|
:db_cluster_snapshots)
|
5794
|
+
SENSITIVE = []
|
5729
5795
|
include Aws::Structure
|
5730
5796
|
end
|
5731
5797
|
|
@@ -5838,6 +5904,7 @@ module Aws::RDS
|
|
5838
5904
|
:supported_engine_modes,
|
5839
5905
|
:supported_feature_names,
|
5840
5906
|
:status)
|
5907
|
+
SENSITIVE = []
|
5841
5908
|
include Aws::Structure
|
5842
5909
|
end
|
5843
5910
|
|
@@ -5859,6 +5926,7 @@ module Aws::RDS
|
|
5859
5926
|
class DBEngineVersionMessage < Struct.new(
|
5860
5927
|
:marker,
|
5861
5928
|
:db_engine_versions)
|
5929
|
+
SENSITIVE = []
|
5862
5930
|
include Aws::Structure
|
5863
5931
|
end
|
5864
5932
|
|
@@ -6287,6 +6355,7 @@ module Aws::RDS
|
|
6287
6355
|
:associated_roles,
|
6288
6356
|
:listener_endpoint,
|
6289
6357
|
:max_allocated_storage)
|
6358
|
+
SENSITIVE = []
|
6290
6359
|
include Aws::Structure
|
6291
6360
|
end
|
6292
6361
|
|
@@ -6444,6 +6513,7 @@ module Aws::RDS
|
|
6444
6513
|
:kms_key_id,
|
6445
6514
|
:timezone,
|
6446
6515
|
:iam_database_authentication_enabled)
|
6516
|
+
SENSITIVE = []
|
6447
6517
|
include Aws::Structure
|
6448
6518
|
end
|
6449
6519
|
|
@@ -6465,6 +6535,7 @@ module Aws::RDS
|
|
6465
6535
|
class DBInstanceAutomatedBackupMessage < Struct.new(
|
6466
6536
|
:marker,
|
6467
6537
|
:db_instance_automated_backups)
|
6538
|
+
SENSITIVE = []
|
6468
6539
|
include Aws::Structure
|
6469
6540
|
end
|
6470
6541
|
|
@@ -6500,6 +6571,7 @@ module Aws::RDS
|
|
6500
6571
|
class DBInstanceMessage < Struct.new(
|
6501
6572
|
:marker,
|
6502
6573
|
:db_instances)
|
6574
|
+
SENSITIVE = []
|
6503
6575
|
include Aws::Structure
|
6504
6576
|
end
|
6505
6577
|
|
@@ -6544,6 +6616,7 @@ module Aws::RDS
|
|
6544
6616
|
:role_arn,
|
6545
6617
|
:feature_name,
|
6546
6618
|
:status)
|
6619
|
+
SENSITIVE = []
|
6547
6620
|
include Aws::Structure
|
6548
6621
|
end
|
6549
6622
|
|
@@ -6597,6 +6670,7 @@ module Aws::RDS
|
|
6597
6670
|
:normal,
|
6598
6671
|
:status,
|
6599
6672
|
:message)
|
6673
|
+
SENSITIVE = []
|
6600
6674
|
include Aws::Structure
|
6601
6675
|
end
|
6602
6676
|
|
@@ -6636,6 +6710,7 @@ module Aws::RDS
|
|
6636
6710
|
:db_parameter_group_family,
|
6637
6711
|
:description,
|
6638
6712
|
:db_parameter_group_arn)
|
6713
|
+
SENSITIVE = []
|
6639
6714
|
include Aws::Structure
|
6640
6715
|
end
|
6641
6716
|
|
@@ -6663,6 +6738,7 @@ module Aws::RDS
|
|
6663
6738
|
class DBParameterGroupDetails < Struct.new(
|
6664
6739
|
:parameters,
|
6665
6740
|
:marker)
|
6741
|
+
SENSITIVE = []
|
6666
6742
|
include Aws::Structure
|
6667
6743
|
end
|
6668
6744
|
|
@@ -6677,6 +6753,7 @@ module Aws::RDS
|
|
6677
6753
|
#
|
6678
6754
|
class DBParameterGroupNameMessage < Struct.new(
|
6679
6755
|
:db_parameter_group_name)
|
6756
|
+
SENSITIVE = []
|
6680
6757
|
include Aws::Structure
|
6681
6758
|
end
|
6682
6759
|
|
@@ -6723,6 +6800,7 @@ module Aws::RDS
|
|
6723
6800
|
class DBParameterGroupStatus < Struct.new(
|
6724
6801
|
:db_parameter_group_name,
|
6725
6802
|
:parameter_apply_status)
|
6803
|
+
SENSITIVE = []
|
6726
6804
|
include Aws::Structure
|
6727
6805
|
end
|
6728
6806
|
|
@@ -6744,14 +6822,10 @@ module Aws::RDS
|
|
6744
6822
|
class DBParameterGroupsMessage < Struct.new(
|
6745
6823
|
:marker,
|
6746
6824
|
:db_parameter_groups)
|
6825
|
+
SENSITIVE = []
|
6747
6826
|
include Aws::Structure
|
6748
6827
|
end
|
6749
6828
|
|
6750
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
6751
|
-
# preview release. It is subject to change.
|
6752
|
-
#
|
6753
|
-
# </note>
|
6754
|
-
#
|
6755
6829
|
# The data structure representing a proxy managed by the RDS Proxy.
|
6756
6830
|
#
|
6757
6831
|
# This data type is used as a response element in the
|
@@ -6854,6 +6928,7 @@ module Aws::RDS
|
|
6854
6928
|
:debug_logging,
|
6855
6929
|
:created_date,
|
6856
6930
|
:updated_date)
|
6931
|
+
SENSITIVE = []
|
6857
6932
|
include Aws::Structure
|
6858
6933
|
end
|
6859
6934
|
|
@@ -6878,11 +6953,6 @@ module Aws::RDS
|
|
6878
6953
|
#
|
6879
6954
|
class DBProxyQuotaExceededFault < Aws::EmptyStructure; end
|
6880
6955
|
|
6881
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
6882
|
-
# preview release. It is subject to change.
|
6883
|
-
#
|
6884
|
-
# </note>
|
6885
|
-
#
|
6886
6956
|
# Contains the details for an RDS Proxy target. It represents an RDS DB
|
6887
6957
|
# instance or Aurora DB cluster that the proxy can connect to. One or
|
6888
6958
|
# more targets are associated with an RDS Proxy target group.
|
@@ -6935,6 +7005,7 @@ module Aws::RDS
|
|
6935
7005
|
:port,
|
6936
7006
|
:type,
|
6937
7007
|
:target_health)
|
7008
|
+
SENSITIVE = []
|
6938
7009
|
include Aws::Structure
|
6939
7010
|
end
|
6940
7011
|
|
@@ -6945,11 +7016,6 @@ module Aws::RDS
|
|
6945
7016
|
#
|
6946
7017
|
class DBProxyTargetAlreadyRegisteredFault < Aws::EmptyStructure; end
|
6947
7018
|
|
6948
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
6949
|
-
# preview release. It is subject to change.
|
6950
|
-
#
|
6951
|
-
# </note>
|
6952
|
-
#
|
6953
7019
|
# Represents a set of RDS DB instances, Aurora DB clusters, or both that
|
6954
7020
|
# a proxy can connect to. Currently, each target group is associated
|
6955
7021
|
# with exactly one RDS DB instance or Aurora DB cluster.
|
@@ -7009,6 +7075,7 @@ module Aws::RDS
|
|
7009
7075
|
:connection_pool_config,
|
7010
7076
|
:created_date,
|
7011
7077
|
:updated_date)
|
7078
|
+
SENSITIVE = []
|
7012
7079
|
include Aws::Structure
|
7013
7080
|
end
|
7014
7081
|
|
@@ -7069,6 +7136,7 @@ module Aws::RDS
|
|
7069
7136
|
:ec2_security_groups,
|
7070
7137
|
:ip_ranges,
|
7071
7138
|
:db_security_group_arn)
|
7139
|
+
SENSITIVE = []
|
7072
7140
|
include Aws::Structure
|
7073
7141
|
end
|
7074
7142
|
|
@@ -7102,6 +7170,7 @@ module Aws::RDS
|
|
7102
7170
|
class DBSecurityGroupMembership < Struct.new(
|
7103
7171
|
:db_security_group_name,
|
7104
7172
|
:status)
|
7173
|
+
SENSITIVE = []
|
7105
7174
|
include Aws::Structure
|
7106
7175
|
end
|
7107
7176
|
|
@@ -7123,6 +7192,7 @@ module Aws::RDS
|
|
7123
7192
|
class DBSecurityGroupMessage < Struct.new(
|
7124
7193
|
:marker,
|
7125
7194
|
:db_security_groups)
|
7195
|
+
SENSITIVE = []
|
7126
7196
|
include Aws::Structure
|
7127
7197
|
end
|
7128
7198
|
|
@@ -7310,6 +7380,7 @@ module Aws::RDS
|
|
7310
7380
|
:iam_database_authentication_enabled,
|
7311
7381
|
:processor_features,
|
7312
7382
|
:dbi_resource_id)
|
7383
|
+
SENSITIVE = []
|
7313
7384
|
include Aws::Structure
|
7314
7385
|
end
|
7315
7386
|
|
@@ -7349,6 +7420,7 @@ module Aws::RDS
|
|
7349
7420
|
class DBSnapshotAttribute < Struct.new(
|
7350
7421
|
:attribute_name,
|
7351
7422
|
:attribute_values)
|
7423
|
+
SENSITIVE = []
|
7352
7424
|
include Aws::Structure
|
7353
7425
|
end
|
7354
7426
|
|
@@ -7373,6 +7445,7 @@ module Aws::RDS
|
|
7373
7445
|
class DBSnapshotAttributesResult < Struct.new(
|
7374
7446
|
:db_snapshot_identifier,
|
7375
7447
|
:db_snapshot_attributes)
|
7448
|
+
SENSITIVE = []
|
7376
7449
|
include Aws::Structure
|
7377
7450
|
end
|
7378
7451
|
|
@@ -7394,6 +7467,7 @@ module Aws::RDS
|
|
7394
7467
|
class DBSnapshotMessage < Struct.new(
|
7395
7468
|
:marker,
|
7396
7469
|
:db_snapshots)
|
7470
|
+
SENSITIVE = []
|
7397
7471
|
include Aws::Structure
|
7398
7472
|
end
|
7399
7473
|
|
@@ -7441,6 +7515,7 @@ module Aws::RDS
|
|
7441
7515
|
:subnet_group_status,
|
7442
7516
|
:subnets,
|
7443
7517
|
:db_subnet_group_arn)
|
7518
|
+
SENSITIVE = []
|
7444
7519
|
include Aws::Structure
|
7445
7520
|
end
|
7446
7521
|
|
@@ -7475,6 +7550,7 @@ module Aws::RDS
|
|
7475
7550
|
class DBSubnetGroupMessage < Struct.new(
|
7476
7551
|
:marker,
|
7477
7552
|
:db_subnet_groups)
|
7553
|
+
SENSITIVE = []
|
7478
7554
|
include Aws::Structure
|
7479
7555
|
end
|
7480
7556
|
|
@@ -7527,6 +7603,7 @@ module Aws::RDS
|
|
7527
7603
|
#
|
7528
7604
|
class DeleteCustomAvailabilityZoneMessage < Struct.new(
|
7529
7605
|
:custom_availability_zone_id)
|
7606
|
+
SENSITIVE = []
|
7530
7607
|
include Aws::Structure
|
7531
7608
|
end
|
7532
7609
|
|
@@ -7546,6 +7623,7 @@ module Aws::RDS
|
|
7546
7623
|
#
|
7547
7624
|
class DeleteCustomAvailabilityZoneResult < Struct.new(
|
7548
7625
|
:custom_availability_zone)
|
7626
|
+
SENSITIVE = []
|
7549
7627
|
include Aws::Structure
|
7550
7628
|
end
|
7551
7629
|
|
@@ -7565,6 +7643,7 @@ module Aws::RDS
|
|
7565
7643
|
#
|
7566
7644
|
class DeleteDBClusterEndpointMessage < Struct.new(
|
7567
7645
|
:db_cluster_endpoint_identifier)
|
7646
|
+
SENSITIVE = []
|
7568
7647
|
include Aws::Structure
|
7569
7648
|
end
|
7570
7649
|
|
@@ -7627,6 +7706,7 @@ module Aws::RDS
|
|
7627
7706
|
:db_cluster_identifier,
|
7628
7707
|
:skip_final_snapshot,
|
7629
7708
|
:final_db_snapshot_identifier)
|
7709
|
+
SENSITIVE = []
|
7630
7710
|
include Aws::Structure
|
7631
7711
|
end
|
7632
7712
|
|
@@ -7653,6 +7733,7 @@ module Aws::RDS
|
|
7653
7733
|
#
|
7654
7734
|
class DeleteDBClusterParameterGroupMessage < Struct.new(
|
7655
7735
|
:db_cluster_parameter_group_name)
|
7736
|
+
SENSITIVE = []
|
7656
7737
|
include Aws::Structure
|
7657
7738
|
end
|
7658
7739
|
|
@@ -7667,6 +7748,7 @@ module Aws::RDS
|
|
7667
7748
|
#
|
7668
7749
|
class DeleteDBClusterResult < Struct.new(
|
7669
7750
|
:db_cluster)
|
7751
|
+
SENSITIVE = []
|
7670
7752
|
include Aws::Structure
|
7671
7753
|
end
|
7672
7754
|
|
@@ -7688,6 +7770,7 @@ module Aws::RDS
|
|
7688
7770
|
#
|
7689
7771
|
class DeleteDBClusterSnapshotMessage < Struct.new(
|
7690
7772
|
:db_cluster_snapshot_identifier)
|
7773
|
+
SENSITIVE = []
|
7691
7774
|
include Aws::Structure
|
7692
7775
|
end
|
7693
7776
|
|
@@ -7702,6 +7785,7 @@ module Aws::RDS
|
|
7702
7785
|
#
|
7703
7786
|
class DeleteDBClusterSnapshotResult < Struct.new(
|
7704
7787
|
:db_cluster_snapshot)
|
7788
|
+
SENSITIVE = []
|
7705
7789
|
include Aws::Structure
|
7706
7790
|
end
|
7707
7791
|
|
@@ -7723,6 +7807,7 @@ module Aws::RDS
|
|
7723
7807
|
#
|
7724
7808
|
class DeleteDBInstanceAutomatedBackupMessage < Struct.new(
|
7725
7809
|
:dbi_resource_id)
|
7810
|
+
SENSITIVE = []
|
7726
7811
|
include Aws::Structure
|
7727
7812
|
end
|
7728
7813
|
|
@@ -7736,6 +7821,7 @@ module Aws::RDS
|
|
7736
7821
|
#
|
7737
7822
|
class DeleteDBInstanceAutomatedBackupResult < Struct.new(
|
7738
7823
|
:db_instance_automated_backup)
|
7824
|
+
SENSITIVE = []
|
7739
7825
|
include Aws::Structure
|
7740
7826
|
end
|
7741
7827
|
|
@@ -7813,6 +7899,7 @@ module Aws::RDS
|
|
7813
7899
|
:skip_final_snapshot,
|
7814
7900
|
:final_db_snapshot_identifier,
|
7815
7901
|
:delete_automated_backups)
|
7902
|
+
SENSITIVE = []
|
7816
7903
|
include Aws::Structure
|
7817
7904
|
end
|
7818
7905
|
|
@@ -7827,6 +7914,7 @@ module Aws::RDS
|
|
7827
7914
|
#
|
7828
7915
|
class DeleteDBInstanceResult < Struct.new(
|
7829
7916
|
:db_instance)
|
7917
|
+
SENSITIVE = []
|
7830
7918
|
include Aws::Structure
|
7831
7919
|
end
|
7832
7920
|
|
@@ -7853,6 +7941,7 @@ module Aws::RDS
|
|
7853
7941
|
#
|
7854
7942
|
class DeleteDBParameterGroupMessage < Struct.new(
|
7855
7943
|
:db_parameter_group_name)
|
7944
|
+
SENSITIVE = []
|
7856
7945
|
include Aws::Structure
|
7857
7946
|
end
|
7858
7947
|
|
@@ -7871,6 +7960,7 @@ module Aws::RDS
|
|
7871
7960
|
#
|
7872
7961
|
class DeleteDBProxyRequest < Struct.new(
|
7873
7962
|
:db_proxy_name)
|
7963
|
+
SENSITIVE = []
|
7874
7964
|
include Aws::Structure
|
7875
7965
|
end
|
7876
7966
|
|
@@ -7883,6 +7973,7 @@ module Aws::RDS
|
|
7883
7973
|
#
|
7884
7974
|
class DeleteDBProxyResponse < Struct.new(
|
7885
7975
|
:db_proxy)
|
7976
|
+
SENSITIVE = []
|
7886
7977
|
include Aws::Structure
|
7887
7978
|
end
|
7888
7979
|
|
@@ -7915,6 +8006,7 @@ module Aws::RDS
|
|
7915
8006
|
#
|
7916
8007
|
class DeleteDBSecurityGroupMessage < Struct.new(
|
7917
8008
|
:db_security_group_name)
|
8009
|
+
SENSITIVE = []
|
7918
8010
|
include Aws::Structure
|
7919
8011
|
end
|
7920
8012
|
|
@@ -7936,6 +8028,7 @@ module Aws::RDS
|
|
7936
8028
|
#
|
7937
8029
|
class DeleteDBSnapshotMessage < Struct.new(
|
7938
8030
|
:db_snapshot_identifier)
|
8031
|
+
SENSITIVE = []
|
7939
8032
|
include Aws::Structure
|
7940
8033
|
end
|
7941
8034
|
|
@@ -7950,6 +8043,7 @@ module Aws::RDS
|
|
7950
8043
|
#
|
7951
8044
|
class DeleteDBSnapshotResult < Struct.new(
|
7952
8045
|
:db_snapshot)
|
8046
|
+
SENSITIVE = []
|
7953
8047
|
include Aws::Structure
|
7954
8048
|
end
|
7955
8049
|
|
@@ -7979,6 +8073,7 @@ module Aws::RDS
|
|
7979
8073
|
#
|
7980
8074
|
class DeleteDBSubnetGroupMessage < Struct.new(
|
7981
8075
|
:db_subnet_group_name)
|
8076
|
+
SENSITIVE = []
|
7982
8077
|
include Aws::Structure
|
7983
8078
|
end
|
7984
8079
|
|
@@ -7998,6 +8093,7 @@ module Aws::RDS
|
|
7998
8093
|
#
|
7999
8094
|
class DeleteEventSubscriptionMessage < Struct.new(
|
8000
8095
|
:subscription_name)
|
8096
|
+
SENSITIVE = []
|
8001
8097
|
include Aws::Structure
|
8002
8098
|
end
|
8003
8099
|
|
@@ -8010,6 +8106,7 @@ module Aws::RDS
|
|
8010
8106
|
#
|
8011
8107
|
class DeleteEventSubscriptionResult < Struct.new(
|
8012
8108
|
:event_subscription)
|
8109
|
+
SENSITIVE = []
|
8013
8110
|
include Aws::Structure
|
8014
8111
|
end
|
8015
8112
|
|
@@ -8028,6 +8125,7 @@ module Aws::RDS
|
|
8028
8125
|
#
|
8029
8126
|
class DeleteGlobalClusterMessage < Struct.new(
|
8030
8127
|
:global_cluster_identifier)
|
8128
|
+
SENSITIVE = []
|
8031
8129
|
include Aws::Structure
|
8032
8130
|
end
|
8033
8131
|
|
@@ -8039,6 +8137,7 @@ module Aws::RDS
|
|
8039
8137
|
#
|
8040
8138
|
class DeleteGlobalClusterResult < Struct.new(
|
8041
8139
|
:global_cluster)
|
8140
|
+
SENSITIVE = []
|
8042
8141
|
include Aws::Structure
|
8043
8142
|
end
|
8044
8143
|
|
@@ -8057,6 +8156,7 @@ module Aws::RDS
|
|
8057
8156
|
#
|
8058
8157
|
class DeleteInstallationMediaMessage < Struct.new(
|
8059
8158
|
:installation_media_id)
|
8159
|
+
SENSITIVE = []
|
8060
8160
|
include Aws::Structure
|
8061
8161
|
end
|
8062
8162
|
|
@@ -8079,6 +8179,7 @@ module Aws::RDS
|
|
8079
8179
|
#
|
8080
8180
|
class DeleteOptionGroupMessage < Struct.new(
|
8081
8181
|
:option_group_name)
|
8182
|
+
SENSITIVE = []
|
8082
8183
|
include Aws::Structure
|
8083
8184
|
end
|
8084
8185
|
|
@@ -8116,6 +8217,7 @@ module Aws::RDS
|
|
8116
8217
|
:target_group_name,
|
8117
8218
|
:db_instance_identifiers,
|
8118
8219
|
:db_cluster_identifiers)
|
8220
|
+
SENSITIVE = []
|
8119
8221
|
include Aws::Structure
|
8120
8222
|
end
|
8121
8223
|
|
@@ -8185,6 +8287,7 @@ module Aws::RDS
|
|
8185
8287
|
:filters,
|
8186
8288
|
:max_records,
|
8187
8289
|
:marker)
|
8290
|
+
SENSITIVE = []
|
8188
8291
|
include Aws::Structure
|
8189
8292
|
end
|
8190
8293
|
|
@@ -8237,6 +8340,7 @@ module Aws::RDS
|
|
8237
8340
|
:filters,
|
8238
8341
|
:max_records,
|
8239
8342
|
:marker)
|
8343
|
+
SENSITIVE = []
|
8240
8344
|
include Aws::Structure
|
8241
8345
|
end
|
8242
8346
|
|
@@ -8339,6 +8443,7 @@ module Aws::RDS
|
|
8339
8443
|
:filters,
|
8340
8444
|
:max_records,
|
8341
8445
|
:marker)
|
8446
|
+
SENSITIVE = []
|
8342
8447
|
include Aws::Structure
|
8343
8448
|
end
|
8344
8449
|
|
@@ -8410,6 +8515,7 @@ module Aws::RDS
|
|
8410
8515
|
:filters,
|
8411
8516
|
:max_records,
|
8412
8517
|
:marker)
|
8518
|
+
SENSITIVE = []
|
8413
8519
|
include Aws::Structure
|
8414
8520
|
end
|
8415
8521
|
|
@@ -8469,6 +8575,7 @@ module Aws::RDS
|
|
8469
8575
|
:filters,
|
8470
8576
|
:max_records,
|
8471
8577
|
:marker)
|
8578
|
+
SENSITIVE = []
|
8472
8579
|
include Aws::Structure
|
8473
8580
|
end
|
8474
8581
|
|
@@ -8535,6 +8642,7 @@ module Aws::RDS
|
|
8535
8642
|
:filters,
|
8536
8643
|
:max_records,
|
8537
8644
|
:marker)
|
8645
|
+
SENSITIVE = []
|
8538
8646
|
include Aws::Structure
|
8539
8647
|
end
|
8540
8648
|
|
@@ -8554,6 +8662,7 @@ module Aws::RDS
|
|
8554
8662
|
#
|
8555
8663
|
class DescribeDBClusterSnapshotAttributesMessage < Struct.new(
|
8556
8664
|
:db_cluster_snapshot_identifier)
|
8665
|
+
SENSITIVE = []
|
8557
8666
|
include Aws::Structure
|
8558
8667
|
end
|
8559
8668
|
|
@@ -8571,6 +8680,7 @@ module Aws::RDS
|
|
8571
8680
|
#
|
8572
8681
|
class DescribeDBClusterSnapshotAttributesResult < Struct.new(
|
8573
8682
|
:db_cluster_snapshot_attributes_result)
|
8683
|
+
SENSITIVE = []
|
8574
8684
|
include Aws::Structure
|
8575
8685
|
end
|
8576
8686
|
|
@@ -8717,6 +8827,7 @@ module Aws::RDS
|
|
8717
8827
|
:marker,
|
8718
8828
|
:include_shared,
|
8719
8829
|
:include_public)
|
8830
|
+
SENSITIVE = []
|
8720
8831
|
include Aws::Structure
|
8721
8832
|
end
|
8722
8833
|
|
@@ -8791,6 +8902,7 @@ module Aws::RDS
|
|
8791
8902
|
:max_records,
|
8792
8903
|
:marker,
|
8793
8904
|
:include_shared)
|
8905
|
+
SENSITIVE = []
|
8794
8906
|
include Aws::Structure
|
8795
8907
|
end
|
8796
8908
|
|
@@ -8900,6 +9012,7 @@ module Aws::RDS
|
|
8900
9012
|
:list_supported_character_sets,
|
8901
9013
|
:list_supported_timezones,
|
8902
9014
|
:include_all)
|
9015
|
+
SENSITIVE = []
|
8903
9016
|
include Aws::Structure
|
8904
9017
|
end
|
8905
9018
|
|
@@ -8982,6 +9095,7 @@ module Aws::RDS
|
|
8982
9095
|
:filters,
|
8983
9096
|
:max_records,
|
8984
9097
|
:marker)
|
9098
|
+
SENSITIVE = []
|
8985
9099
|
include Aws::Structure
|
8986
9100
|
end
|
8987
9101
|
|
@@ -9063,6 +9177,7 @@ module Aws::RDS
|
|
9063
9177
|
:filters,
|
9064
9178
|
:max_records,
|
9065
9179
|
:marker)
|
9180
|
+
SENSITIVE = []
|
9066
9181
|
include Aws::Structure
|
9067
9182
|
end
|
9068
9183
|
|
@@ -9086,6 +9201,7 @@ module Aws::RDS
|
|
9086
9201
|
:log_file_name,
|
9087
9202
|
:last_written,
|
9088
9203
|
:size)
|
9204
|
+
SENSITIVE = []
|
9089
9205
|
include Aws::Structure
|
9090
9206
|
end
|
9091
9207
|
|
@@ -9160,6 +9276,7 @@ module Aws::RDS
|
|
9160
9276
|
:filters,
|
9161
9277
|
:max_records,
|
9162
9278
|
:marker)
|
9279
|
+
SENSITIVE = []
|
9163
9280
|
include Aws::Structure
|
9164
9281
|
end
|
9165
9282
|
|
@@ -9179,6 +9296,7 @@ module Aws::RDS
|
|
9179
9296
|
class DescribeDBLogFilesResponse < Struct.new(
|
9180
9297
|
:describe_db_log_files,
|
9181
9298
|
:marker)
|
9299
|
+
SENSITIVE = []
|
9182
9300
|
include Aws::Structure
|
9183
9301
|
end
|
9184
9302
|
|
@@ -9237,6 +9355,7 @@ module Aws::RDS
|
|
9237
9355
|
:filters,
|
9238
9356
|
:max_records,
|
9239
9357
|
:marker)
|
9358
|
+
SENSITIVE = []
|
9240
9359
|
include Aws::Structure
|
9241
9360
|
end
|
9242
9361
|
|
@@ -9304,6 +9423,7 @@ module Aws::RDS
|
|
9304
9423
|
:filters,
|
9305
9424
|
:max_records,
|
9306
9425
|
:marker)
|
9426
|
+
SENSITIVE = []
|
9307
9427
|
include Aws::Structure
|
9308
9428
|
end
|
9309
9429
|
|
@@ -9354,6 +9474,7 @@ module Aws::RDS
|
|
9354
9474
|
:filters,
|
9355
9475
|
:marker,
|
9356
9476
|
:max_records)
|
9477
|
+
SENSITIVE = []
|
9357
9478
|
include Aws::Structure
|
9358
9479
|
end
|
9359
9480
|
|
@@ -9373,6 +9494,7 @@ module Aws::RDS
|
|
9373
9494
|
class DescribeDBProxiesResponse < Struct.new(
|
9374
9495
|
:db_proxies,
|
9375
9496
|
:marker)
|
9497
|
+
SENSITIVE = []
|
9376
9498
|
include Aws::Structure
|
9377
9499
|
end
|
9378
9500
|
|
@@ -9429,6 +9551,7 @@ module Aws::RDS
|
|
9429
9551
|
:filters,
|
9430
9552
|
:marker,
|
9431
9553
|
:max_records)
|
9554
|
+
SENSITIVE = []
|
9432
9555
|
include Aws::Structure
|
9433
9556
|
end
|
9434
9557
|
|
@@ -9448,6 +9571,7 @@ module Aws::RDS
|
|
9448
9571
|
class DescribeDBProxyTargetGroupsResponse < Struct.new(
|
9449
9572
|
:target_groups,
|
9450
9573
|
:marker)
|
9574
|
+
SENSITIVE = []
|
9451
9575
|
include Aws::Structure
|
9452
9576
|
end
|
9453
9577
|
|
@@ -9504,6 +9628,7 @@ module Aws::RDS
|
|
9504
9628
|
:filters,
|
9505
9629
|
:marker,
|
9506
9630
|
:max_records)
|
9631
|
+
SENSITIVE = []
|
9507
9632
|
include Aws::Structure
|
9508
9633
|
end
|
9509
9634
|
|
@@ -9523,6 +9648,7 @@ module Aws::RDS
|
|
9523
9648
|
class DescribeDBProxyTargetsResponse < Struct.new(
|
9524
9649
|
:targets,
|
9525
9650
|
:marker)
|
9651
|
+
SENSITIVE = []
|
9526
9652
|
include Aws::Structure
|
9527
9653
|
end
|
9528
9654
|
|
@@ -9574,6 +9700,7 @@ module Aws::RDS
|
|
9574
9700
|
:filters,
|
9575
9701
|
:max_records,
|
9576
9702
|
:marker)
|
9703
|
+
SENSITIVE = []
|
9577
9704
|
include Aws::Structure
|
9578
9705
|
end
|
9579
9706
|
|
@@ -9592,6 +9719,7 @@ module Aws::RDS
|
|
9592
9719
|
#
|
9593
9720
|
class DescribeDBSnapshotAttributesMessage < Struct.new(
|
9594
9721
|
:db_snapshot_identifier)
|
9722
|
+
SENSITIVE = []
|
9595
9723
|
include Aws::Structure
|
9596
9724
|
end
|
9597
9725
|
|
@@ -9608,6 +9736,7 @@ module Aws::RDS
|
|
9608
9736
|
#
|
9609
9737
|
class DescribeDBSnapshotAttributesResult < Struct.new(
|
9610
9738
|
:db_snapshot_attributes_result)
|
9739
|
+
SENSITIVE = []
|
9611
9740
|
include Aws::Structure
|
9612
9741
|
end
|
9613
9742
|
|
@@ -9769,6 +9898,7 @@ module Aws::RDS
|
|
9769
9898
|
:include_shared,
|
9770
9899
|
:include_public,
|
9771
9900
|
:dbi_resource_id)
|
9901
|
+
SENSITIVE = []
|
9772
9902
|
include Aws::Structure
|
9773
9903
|
end
|
9774
9904
|
|
@@ -9820,6 +9950,7 @@ module Aws::RDS
|
|
9820
9950
|
:filters,
|
9821
9951
|
:max_records,
|
9822
9952
|
:marker)
|
9953
|
+
SENSITIVE = []
|
9823
9954
|
include Aws::Structure
|
9824
9955
|
end
|
9825
9956
|
|
@@ -9872,6 +10003,7 @@ module Aws::RDS
|
|
9872
10003
|
:filters,
|
9873
10004
|
:max_records,
|
9874
10005
|
:marker)
|
10006
|
+
SENSITIVE = []
|
9875
10007
|
include Aws::Structure
|
9876
10008
|
end
|
9877
10009
|
|
@@ -9884,6 +10016,7 @@ module Aws::RDS
|
|
9884
10016
|
#
|
9885
10017
|
class DescribeEngineDefaultClusterParametersResult < Struct.new(
|
9886
10018
|
:engine_defaults)
|
10019
|
+
SENSITIVE = []
|
9887
10020
|
include Aws::Structure
|
9888
10021
|
end
|
9889
10022
|
|
@@ -9935,6 +10068,7 @@ module Aws::RDS
|
|
9935
10068
|
:filters,
|
9936
10069
|
:max_records,
|
9937
10070
|
:marker)
|
10071
|
+
SENSITIVE = []
|
9938
10072
|
include Aws::Structure
|
9939
10073
|
end
|
9940
10074
|
|
@@ -9947,6 +10081,7 @@ module Aws::RDS
|
|
9947
10081
|
#
|
9948
10082
|
class DescribeEngineDefaultParametersResult < Struct.new(
|
9949
10083
|
:engine_defaults)
|
10084
|
+
SENSITIVE = []
|
9950
10085
|
include Aws::Structure
|
9951
10086
|
end
|
9952
10087
|
|
@@ -9979,6 +10114,7 @@ module Aws::RDS
|
|
9979
10114
|
class DescribeEventCategoriesMessage < Struct.new(
|
9980
10115
|
:source_type,
|
9981
10116
|
:filters)
|
10117
|
+
SENSITIVE = []
|
9982
10118
|
include Aws::Structure
|
9983
10119
|
end
|
9984
10120
|
|
@@ -10031,6 +10167,7 @@ module Aws::RDS
|
|
10031
10167
|
:filters,
|
10032
10168
|
:max_records,
|
10033
10169
|
:marker)
|
10170
|
+
SENSITIVE = []
|
10034
10171
|
include Aws::Structure
|
10035
10172
|
end
|
10036
10173
|
|
@@ -10151,6 +10288,7 @@ module Aws::RDS
|
|
10151
10288
|
:filters,
|
10152
10289
|
:max_records,
|
10153
10290
|
:marker)
|
10291
|
+
SENSITIVE = []
|
10154
10292
|
include Aws::Structure
|
10155
10293
|
end
|
10156
10294
|
|
@@ -10224,6 +10362,7 @@ module Aws::RDS
|
|
10224
10362
|
:filters,
|
10225
10363
|
:marker,
|
10226
10364
|
:max_records)
|
10365
|
+
SENSITIVE = []
|
10227
10366
|
include Aws::Structure
|
10228
10367
|
end
|
10229
10368
|
|
@@ -10291,6 +10430,7 @@ module Aws::RDS
|
|
10291
10430
|
:filters,
|
10292
10431
|
:max_records,
|
10293
10432
|
:marker)
|
10433
|
+
SENSITIVE = []
|
10294
10434
|
include Aws::Structure
|
10295
10435
|
end
|
10296
10436
|
|
@@ -10349,6 +10489,7 @@ module Aws::RDS
|
|
10349
10489
|
:filters,
|
10350
10490
|
:max_records,
|
10351
10491
|
:marker)
|
10492
|
+
SENSITIVE = []
|
10352
10493
|
include Aws::Structure
|
10353
10494
|
end
|
10354
10495
|
|
@@ -10407,6 +10548,7 @@ module Aws::RDS
|
|
10407
10548
|
:filters,
|
10408
10549
|
:max_records,
|
10409
10550
|
:marker)
|
10551
|
+
SENSITIVE = []
|
10410
10552
|
include Aws::Structure
|
10411
10553
|
end
|
10412
10554
|
|
@@ -10474,6 +10616,7 @@ module Aws::RDS
|
|
10474
10616
|
:max_records,
|
10475
10617
|
:engine_name,
|
10476
10618
|
:major_engine_version)
|
10619
|
+
SENSITIVE = []
|
10477
10620
|
include Aws::Structure
|
10478
10621
|
end
|
10479
10622
|
|
@@ -10565,6 +10708,7 @@ module Aws::RDS
|
|
10565
10708
|
:filters,
|
10566
10709
|
:max_records,
|
10567
10710
|
:marker)
|
10711
|
+
SENSITIVE = []
|
10568
10712
|
include Aws::Structure
|
10569
10713
|
end
|
10570
10714
|
|
@@ -10628,6 +10772,7 @@ module Aws::RDS
|
|
10628
10772
|
:filters,
|
10629
10773
|
:marker,
|
10630
10774
|
:max_records)
|
10775
|
+
SENSITIVE = []
|
10631
10776
|
include Aws::Structure
|
10632
10777
|
end
|
10633
10778
|
|
@@ -10739,6 +10884,7 @@ module Aws::RDS
|
|
10739
10884
|
:filters,
|
10740
10885
|
:max_records,
|
10741
10886
|
:marker)
|
10887
|
+
SENSITIVE = []
|
10742
10888
|
include Aws::Structure
|
10743
10889
|
end
|
10744
10890
|
|
@@ -10838,6 +10984,7 @@ module Aws::RDS
|
|
10838
10984
|
:filters,
|
10839
10985
|
:max_records,
|
10840
10986
|
:marker)
|
10987
|
+
SENSITIVE = []
|
10841
10988
|
include Aws::Structure
|
10842
10989
|
end
|
10843
10990
|
|
@@ -10895,6 +11042,7 @@ module Aws::RDS
|
|
10895
11042
|
:max_records,
|
10896
11043
|
:marker,
|
10897
11044
|
:filters)
|
11045
|
+
SENSITIVE = []
|
10898
11046
|
include Aws::Structure
|
10899
11047
|
end
|
10900
11048
|
|
@@ -10913,6 +11061,7 @@ module Aws::RDS
|
|
10913
11061
|
#
|
10914
11062
|
class DescribeValidDBInstanceModificationsMessage < Struct.new(
|
10915
11063
|
:db_instance_identifier)
|
11064
|
+
SENSITIVE = []
|
10916
11065
|
include Aws::Structure
|
10917
11066
|
end
|
10918
11067
|
|
@@ -10927,6 +11076,7 @@ module Aws::RDS
|
|
10927
11076
|
#
|
10928
11077
|
class DescribeValidDBInstanceModificationsResult < Struct.new(
|
10929
11078
|
:valid_db_instance_modifications_message)
|
11079
|
+
SENSITIVE = []
|
10930
11080
|
include Aws::Structure
|
10931
11081
|
end
|
10932
11082
|
|
@@ -10959,6 +11109,7 @@ module Aws::RDS
|
|
10959
11109
|
:status,
|
10960
11110
|
:fqdn,
|
10961
11111
|
:iam_role_name)
|
11112
|
+
SENSITIVE = []
|
10962
11113
|
include Aws::Structure
|
10963
11114
|
end
|
10964
11115
|
|
@@ -10983,6 +11134,7 @@ module Aws::RDS
|
|
10983
11134
|
class DoubleRange < Struct.new(
|
10984
11135
|
:from,
|
10985
11136
|
:to)
|
11137
|
+
SENSITIVE = []
|
10986
11138
|
include Aws::Structure
|
10987
11139
|
end
|
10988
11140
|
|
@@ -11009,6 +11161,7 @@ module Aws::RDS
|
|
11009
11161
|
:log_file_data,
|
11010
11162
|
:marker,
|
11011
11163
|
:additional_data_pending)
|
11164
|
+
SENSITIVE = []
|
11012
11165
|
include Aws::Structure
|
11013
11166
|
end
|
11014
11167
|
|
@@ -11077,6 +11230,7 @@ module Aws::RDS
|
|
11077
11230
|
:log_file_name,
|
11078
11231
|
:marker,
|
11079
11232
|
:number_of_lines)
|
11233
|
+
SENSITIVE = []
|
11080
11234
|
include Aws::Structure
|
11081
11235
|
end
|
11082
11236
|
|
@@ -11113,6 +11267,7 @@ module Aws::RDS
|
|
11113
11267
|
:ec2_security_group_name,
|
11114
11268
|
:ec2_security_group_id,
|
11115
11269
|
:ec2_security_group_owner_id)
|
11270
|
+
SENSITIVE = []
|
11116
11271
|
include Aws::Structure
|
11117
11272
|
end
|
11118
11273
|
|
@@ -11148,6 +11303,7 @@ module Aws::RDS
|
|
11148
11303
|
:address,
|
11149
11304
|
:port,
|
11150
11305
|
:hosted_zone_id)
|
11306
|
+
SENSITIVE = []
|
11151
11307
|
include Aws::Structure
|
11152
11308
|
end
|
11153
11309
|
|
@@ -11176,6 +11332,7 @@ module Aws::RDS
|
|
11176
11332
|
:db_parameter_group_family,
|
11177
11333
|
:marker,
|
11178
11334
|
:parameters)
|
11335
|
+
SENSITIVE = []
|
11179
11336
|
include Aws::Structure
|
11180
11337
|
end
|
11181
11338
|
|
@@ -11215,6 +11372,7 @@ module Aws::RDS
|
|
11215
11372
|
:event_categories,
|
11216
11373
|
:date,
|
11217
11374
|
:source_arn)
|
11375
|
+
SENSITIVE = []
|
11218
11376
|
include Aws::Structure
|
11219
11377
|
end
|
11220
11378
|
|
@@ -11234,6 +11392,7 @@ module Aws::RDS
|
|
11234
11392
|
class EventCategoriesMap < Struct.new(
|
11235
11393
|
:source_type,
|
11236
11394
|
:event_categories)
|
11395
|
+
SENSITIVE = []
|
11237
11396
|
include Aws::Structure
|
11238
11397
|
end
|
11239
11398
|
|
@@ -11247,6 +11406,7 @@ module Aws::RDS
|
|
11247
11406
|
#
|
11248
11407
|
class EventCategoriesMessage < Struct.new(
|
11249
11408
|
:event_categories_map_list)
|
11409
|
+
SENSITIVE = []
|
11250
11410
|
include Aws::Structure
|
11251
11411
|
end
|
11252
11412
|
|
@@ -11319,6 +11479,7 @@ module Aws::RDS
|
|
11319
11479
|
:event_categories_list,
|
11320
11480
|
:enabled,
|
11321
11481
|
:event_subscription_arn)
|
11482
|
+
SENSITIVE = []
|
11322
11483
|
include Aws::Structure
|
11323
11484
|
end
|
11324
11485
|
|
@@ -11346,6 +11507,7 @@ module Aws::RDS
|
|
11346
11507
|
class EventSubscriptionsMessage < Struct.new(
|
11347
11508
|
:marker,
|
11348
11509
|
:event_subscriptions_list)
|
11510
|
+
SENSITIVE = []
|
11349
11511
|
include Aws::Structure
|
11350
11512
|
end
|
11351
11513
|
|
@@ -11367,6 +11529,7 @@ module Aws::RDS
|
|
11367
11529
|
class EventsMessage < Struct.new(
|
11368
11530
|
:marker,
|
11369
11531
|
:events)
|
11532
|
+
SENSITIVE = []
|
11370
11533
|
include Aws::Structure
|
11371
11534
|
end
|
11372
11535
|
|
@@ -11476,6 +11639,7 @@ module Aws::RDS
|
|
11476
11639
|
:total_extracted_data_in_gb,
|
11477
11640
|
:failure_cause,
|
11478
11641
|
:warning_message)
|
11642
|
+
SENSITIVE = []
|
11479
11643
|
include Aws::Structure
|
11480
11644
|
end
|
11481
11645
|
|
@@ -11506,6 +11670,7 @@ module Aws::RDS
|
|
11506
11670
|
class ExportTasksMessage < Struct.new(
|
11507
11671
|
:marker,
|
11508
11672
|
:export_tasks)
|
11673
|
+
SENSITIVE = []
|
11509
11674
|
include Aws::Structure
|
11510
11675
|
end
|
11511
11676
|
|
@@ -11540,6 +11705,7 @@ module Aws::RDS
|
|
11540
11705
|
class FailoverDBClusterMessage < Struct.new(
|
11541
11706
|
:db_cluster_identifier,
|
11542
11707
|
:target_db_instance_identifier)
|
11708
|
+
SENSITIVE = []
|
11543
11709
|
include Aws::Structure
|
11544
11710
|
end
|
11545
11711
|
|
@@ -11554,6 +11720,7 @@ module Aws::RDS
|
|
11554
11720
|
#
|
11555
11721
|
class FailoverDBClusterResult < Struct.new(
|
11556
11722
|
:db_cluster)
|
11723
|
+
SENSITIVE = []
|
11557
11724
|
include Aws::Structure
|
11558
11725
|
end
|
11559
11726
|
|
@@ -11600,6 +11767,7 @@ module Aws::RDS
|
|
11600
11767
|
class Filter < Struct.new(
|
11601
11768
|
:name,
|
11602
11769
|
:values)
|
11770
|
+
SENSITIVE = []
|
11603
11771
|
include Aws::Structure
|
11604
11772
|
end
|
11605
11773
|
|
@@ -11663,6 +11831,7 @@ module Aws::RDS
|
|
11663
11831
|
:storage_encrypted,
|
11664
11832
|
:deletion_protection,
|
11665
11833
|
:global_cluster_members)
|
11834
|
+
SENSITIVE = []
|
11666
11835
|
include Aws::Structure
|
11667
11836
|
end
|
11668
11837
|
|
@@ -11701,6 +11870,7 @@ module Aws::RDS
|
|
11701
11870
|
:readers,
|
11702
11871
|
:is_writer,
|
11703
11872
|
:global_write_forwarding_status)
|
11873
|
+
SENSITIVE = []
|
11704
11874
|
include Aws::Structure
|
11705
11875
|
end
|
11706
11876
|
|
@@ -11728,6 +11898,7 @@ module Aws::RDS
|
|
11728
11898
|
class GlobalClustersMessage < Struct.new(
|
11729
11899
|
:marker,
|
11730
11900
|
:global_clusters)
|
11901
|
+
SENSITIVE = []
|
11731
11902
|
include Aws::Structure
|
11732
11903
|
end
|
11733
11904
|
|
@@ -11748,6 +11919,7 @@ module Aws::RDS
|
|
11748
11919
|
class IPRange < Struct.new(
|
11749
11920
|
:status,
|
11750
11921
|
:cidrip)
|
11922
|
+
SENSITIVE = []
|
11751
11923
|
include Aws::Structure
|
11752
11924
|
end
|
11753
11925
|
|
@@ -11838,6 +12010,7 @@ module Aws::RDS
|
|
11838
12010
|
:engine_version,
|
11839
12011
|
:engine_installation_media_path,
|
11840
12012
|
:os_installation_media_path)
|
12013
|
+
SENSITIVE = []
|
11841
12014
|
include Aws::Structure
|
11842
12015
|
end
|
11843
12016
|
|
@@ -11889,6 +12062,7 @@ module Aws::RDS
|
|
11889
12062
|
:os_installation_media_path,
|
11890
12063
|
:status,
|
11891
12064
|
:failure_cause)
|
12065
|
+
SENSITIVE = []
|
11892
12066
|
include Aws::Structure
|
11893
12067
|
end
|
11894
12068
|
|
@@ -11910,6 +12084,7 @@ module Aws::RDS
|
|
11910
12084
|
#
|
11911
12085
|
class InstallationMediaFailureCause < Struct.new(
|
11912
12086
|
:message)
|
12087
|
+
SENSITIVE = []
|
11913
12088
|
include Aws::Structure
|
11914
12089
|
end
|
11915
12090
|
|
@@ -11929,6 +12104,7 @@ module Aws::RDS
|
|
11929
12104
|
class InstallationMediaMessage < Struct.new(
|
11930
12105
|
:marker,
|
11931
12106
|
:installation_media)
|
12107
|
+
SENSITIVE = []
|
11932
12108
|
include Aws::Structure
|
11933
12109
|
end
|
11934
12110
|
|
@@ -12158,6 +12334,7 @@ module Aws::RDS
|
|
12158
12334
|
class ListTagsForResourceMessage < Struct.new(
|
12159
12335
|
:resource_name,
|
12160
12336
|
:filters)
|
12337
|
+
SENSITIVE = []
|
12161
12338
|
include Aws::Structure
|
12162
12339
|
end
|
12163
12340
|
|
@@ -12177,6 +12354,7 @@ module Aws::RDS
|
|
12177
12354
|
class MinimumEngineVersionPerAllowedValue < Struct.new(
|
12178
12355
|
:allowed_value,
|
12179
12356
|
:minimum_engine_version)
|
12357
|
+
SENSITIVE = []
|
12180
12358
|
include Aws::Structure
|
12181
12359
|
end
|
12182
12360
|
|
@@ -12207,6 +12385,7 @@ module Aws::RDS
|
|
12207
12385
|
class ModifyCertificatesMessage < Struct.new(
|
12208
12386
|
:certificate_identifier,
|
12209
12387
|
:remove_customer_override)
|
12388
|
+
SENSITIVE = []
|
12210
12389
|
include Aws::Structure
|
12211
12390
|
end
|
12212
12391
|
|
@@ -12218,6 +12397,7 @@ module Aws::RDS
|
|
12218
12397
|
#
|
12219
12398
|
class ModifyCertificatesResult < Struct.new(
|
12220
12399
|
:certificate)
|
12400
|
+
SENSITIVE = []
|
12221
12401
|
include Aws::Structure
|
12222
12402
|
end
|
12223
12403
|
|
@@ -12285,6 +12465,7 @@ module Aws::RDS
|
|
12285
12465
|
:capacity,
|
12286
12466
|
:seconds_before_timeout,
|
12287
12467
|
:timeout_action)
|
12468
|
+
SENSITIVE = []
|
12288
12469
|
include Aws::Structure
|
12289
12470
|
end
|
12290
12471
|
|
@@ -12326,6 +12507,7 @@ module Aws::RDS
|
|
12326
12507
|
:endpoint_type,
|
12327
12508
|
:static_members,
|
12328
12509
|
:excluded_members)
|
12510
|
+
SENSITIVE = []
|
12329
12511
|
include Aws::Structure
|
12330
12512
|
end
|
12331
12513
|
|
@@ -12682,6 +12864,7 @@ module Aws::RDS
|
|
12682
12864
|
:enable_http_endpoint,
|
12683
12865
|
:copy_tags_to_snapshot,
|
12684
12866
|
:enable_global_write_forwarding)
|
12867
|
+
SENSITIVE = []
|
12685
12868
|
include Aws::Structure
|
12686
12869
|
end
|
12687
12870
|
|
@@ -12720,6 +12903,7 @@ module Aws::RDS
|
|
12720
12903
|
class ModifyDBClusterParameterGroupMessage < Struct.new(
|
12721
12904
|
:db_cluster_parameter_group_name,
|
12722
12905
|
:parameters)
|
12906
|
+
SENSITIVE = []
|
12723
12907
|
include Aws::Structure
|
12724
12908
|
end
|
12725
12909
|
|
@@ -12734,6 +12918,7 @@ module Aws::RDS
|
|
12734
12918
|
#
|
12735
12919
|
class ModifyDBClusterResult < Struct.new(
|
12736
12920
|
:db_cluster)
|
12921
|
+
SENSITIVE = []
|
12737
12922
|
include Aws::Structure
|
12738
12923
|
end
|
12739
12924
|
|
@@ -12796,6 +12981,7 @@ module Aws::RDS
|
|
12796
12981
|
:attribute_name,
|
12797
12982
|
:values_to_add,
|
12798
12983
|
:values_to_remove)
|
12984
|
+
SENSITIVE = []
|
12799
12985
|
include Aws::Structure
|
12800
12986
|
end
|
12801
12987
|
|
@@ -12813,6 +12999,7 @@ module Aws::RDS
|
|
12813
12999
|
#
|
12814
13000
|
class ModifyDBClusterSnapshotAttributeResult < Struct.new(
|
12815
13001
|
:db_cluster_snapshot_attributes_result)
|
13002
|
+
SENSITIVE = []
|
12816
13003
|
include Aws::Structure
|
12817
13004
|
end
|
12818
13005
|
|
@@ -13589,6 +13776,7 @@ module Aws::RDS
|
|
13589
13776
|
:deletion_protection,
|
13590
13777
|
:max_allocated_storage,
|
13591
13778
|
:certificate_rotation_restart)
|
13779
|
+
SENSITIVE = []
|
13592
13780
|
include Aws::Structure
|
13593
13781
|
end
|
13594
13782
|
|
@@ -13603,6 +13791,7 @@ module Aws::RDS
|
|
13603
13791
|
#
|
13604
13792
|
class ModifyDBInstanceResult < Struct.new(
|
13605
13793
|
:db_instance)
|
13794
|
+
SENSITIVE = []
|
13606
13795
|
include Aws::Structure
|
13607
13796
|
end
|
13608
13797
|
|
@@ -13661,6 +13850,7 @@ module Aws::RDS
|
|
13661
13850
|
class ModifyDBParameterGroupMessage < Struct.new(
|
13662
13851
|
:db_parameter_group_name,
|
13663
13852
|
:parameters)
|
13853
|
+
SENSITIVE = []
|
13664
13854
|
include Aws::Structure
|
13665
13855
|
end
|
13666
13856
|
|
@@ -13744,6 +13934,7 @@ module Aws::RDS
|
|
13744
13934
|
:debug_logging,
|
13745
13935
|
:role_arn,
|
13746
13936
|
:security_groups)
|
13937
|
+
SENSITIVE = []
|
13747
13938
|
include Aws::Structure
|
13748
13939
|
end
|
13749
13940
|
|
@@ -13755,6 +13946,7 @@ module Aws::RDS
|
|
13755
13946
|
#
|
13756
13947
|
class ModifyDBProxyResponse < Struct.new(
|
13757
13948
|
:db_proxy)
|
13949
|
+
SENSITIVE = []
|
13758
13950
|
include Aws::Structure
|
13759
13951
|
end
|
13760
13952
|
|
@@ -13801,6 +13993,7 @@ module Aws::RDS
|
|
13801
13993
|
:db_proxy_name,
|
13802
13994
|
:connection_pool_config,
|
13803
13995
|
:new_name)
|
13996
|
+
SENSITIVE = []
|
13804
13997
|
include Aws::Structure
|
13805
13998
|
end
|
13806
13999
|
|
@@ -13812,6 +14005,7 @@ module Aws::RDS
|
|
13812
14005
|
#
|
13813
14006
|
class ModifyDBProxyTargetGroupResponse < Struct.new(
|
13814
14007
|
:db_proxy_target_group)
|
14008
|
+
SENSITIVE = []
|
13815
14009
|
include Aws::Structure
|
13816
14010
|
end
|
13817
14011
|
|
@@ -13872,6 +14066,7 @@ module Aws::RDS
|
|
13872
14066
|
:attribute_name,
|
13873
14067
|
:values_to_add,
|
13874
14068
|
:values_to_remove)
|
14069
|
+
SENSITIVE = []
|
13875
14070
|
include Aws::Structure
|
13876
14071
|
end
|
13877
14072
|
|
@@ -13888,6 +14083,7 @@ module Aws::RDS
|
|
13888
14083
|
#
|
13889
14084
|
class ModifyDBSnapshotAttributeResult < Struct.new(
|
13890
14085
|
:db_snapshot_attributes_result)
|
14086
|
+
SENSITIVE = []
|
13891
14087
|
include Aws::Structure
|
13892
14088
|
end
|
13893
14089
|
|
@@ -13954,6 +14150,7 @@ module Aws::RDS
|
|
13954
14150
|
:db_snapshot_identifier,
|
13955
14151
|
:engine_version,
|
13956
14152
|
:option_group_name)
|
14153
|
+
SENSITIVE = []
|
13957
14154
|
include Aws::Structure
|
13958
14155
|
end
|
13959
14156
|
|
@@ -13968,6 +14165,7 @@ module Aws::RDS
|
|
13968
14165
|
#
|
13969
14166
|
class ModifyDBSnapshotResult < Struct.new(
|
13970
14167
|
:db_snapshot)
|
14168
|
+
SENSITIVE = []
|
13971
14169
|
include Aws::Structure
|
13972
14170
|
end
|
13973
14171
|
|
@@ -14004,6 +14202,7 @@ module Aws::RDS
|
|
14004
14202
|
:db_subnet_group_name,
|
14005
14203
|
:db_subnet_group_description,
|
14006
14204
|
:subnet_ids)
|
14205
|
+
SENSITIVE = []
|
14007
14206
|
include Aws::Structure
|
14008
14207
|
end
|
14009
14208
|
|
@@ -14018,6 +14217,7 @@ module Aws::RDS
|
|
14018
14217
|
#
|
14019
14218
|
class ModifyDBSubnetGroupResult < Struct.new(
|
14020
14219
|
:db_subnet_group)
|
14220
|
+
SENSITIVE = []
|
14021
14221
|
include Aws::Structure
|
14022
14222
|
end
|
14023
14223
|
|
@@ -14075,6 +14275,7 @@ module Aws::RDS
|
|
14075
14275
|
:source_type,
|
14076
14276
|
:event_categories,
|
14077
14277
|
:enabled)
|
14278
|
+
SENSITIVE = []
|
14078
14279
|
include Aws::Structure
|
14079
14280
|
end
|
14080
14281
|
|
@@ -14087,6 +14288,7 @@ module Aws::RDS
|
|
14087
14288
|
#
|
14088
14289
|
class ModifyEventSubscriptionResult < Struct.new(
|
14089
14290
|
:event_subscription)
|
14291
|
+
SENSITIVE = []
|
14090
14292
|
include Aws::Structure
|
14091
14293
|
end
|
14092
14294
|
|
@@ -14138,6 +14340,7 @@ module Aws::RDS
|
|
14138
14340
|
:global_cluster_identifier,
|
14139
14341
|
:new_global_cluster_identifier,
|
14140
14342
|
:deletion_protection)
|
14343
|
+
SENSITIVE = []
|
14141
14344
|
include Aws::Structure
|
14142
14345
|
end
|
14143
14346
|
|
@@ -14149,6 +14352,7 @@ module Aws::RDS
|
|
14149
14352
|
#
|
14150
14353
|
class ModifyGlobalClusterResult < Struct.new(
|
14151
14354
|
:global_cluster)
|
14355
|
+
SENSITIVE = []
|
14152
14356
|
include Aws::Structure
|
14153
14357
|
end
|
14154
14358
|
|
@@ -14215,6 +14419,7 @@ module Aws::RDS
|
|
14215
14419
|
:options_to_include,
|
14216
14420
|
:options_to_remove,
|
14217
14421
|
:apply_immediately)
|
14422
|
+
SENSITIVE = []
|
14218
14423
|
include Aws::Structure
|
14219
14424
|
end
|
14220
14425
|
|
@@ -14225,6 +14430,7 @@ module Aws::RDS
|
|
14225
14430
|
#
|
14226
14431
|
class ModifyOptionGroupResult < Struct.new(
|
14227
14432
|
:option_group)
|
14433
|
+
SENSITIVE = []
|
14228
14434
|
include Aws::Structure
|
14229
14435
|
end
|
14230
14436
|
|
@@ -14280,6 +14486,7 @@ module Aws::RDS
|
|
14280
14486
|
:option_settings,
|
14281
14487
|
:db_security_group_memberships,
|
14282
14488
|
:vpc_security_group_memberships)
|
14489
|
+
SENSITIVE = []
|
14283
14490
|
include Aws::Structure
|
14284
14491
|
end
|
14285
14492
|
|
@@ -14344,6 +14551,7 @@ module Aws::RDS
|
|
14344
14551
|
:db_security_group_memberships,
|
14345
14552
|
:vpc_security_group_memberships,
|
14346
14553
|
:option_settings)
|
14554
|
+
SENSITIVE = []
|
14347
14555
|
include Aws::Structure
|
14348
14556
|
end
|
14349
14557
|
|
@@ -14399,6 +14607,7 @@ module Aws::RDS
|
|
14399
14607
|
:allows_vpc_and_non_vpc_instance_memberships,
|
14400
14608
|
:vpc_id,
|
14401
14609
|
:option_group_arn)
|
14610
|
+
SENSITIVE = []
|
14402
14611
|
include Aws::Structure
|
14403
14612
|
end
|
14404
14613
|
|
@@ -14427,6 +14636,7 @@ module Aws::RDS
|
|
14427
14636
|
class OptionGroupMembership < Struct.new(
|
14428
14637
|
:option_group_name,
|
14429
14638
|
:status)
|
14639
|
+
SENSITIVE = []
|
14430
14640
|
include Aws::Structure
|
14431
14641
|
end
|
14432
14642
|
|
@@ -14534,6 +14744,7 @@ module Aws::RDS
|
|
14534
14744
|
:supports_option_version_downgrade,
|
14535
14745
|
:option_group_option_settings,
|
14536
14746
|
:option_group_option_versions)
|
14747
|
+
SENSITIVE = []
|
14537
14748
|
include Aws::Structure
|
14538
14749
|
end
|
14539
14750
|
|
@@ -14587,6 +14798,7 @@ module Aws::RDS
|
|
14587
14798
|
:is_modifiable,
|
14588
14799
|
:is_required,
|
14589
14800
|
:minimum_engine_version_per_allowed_value)
|
14801
|
+
SENSITIVE = []
|
14590
14802
|
include Aws::Structure
|
14591
14803
|
end
|
14592
14804
|
|
@@ -14605,6 +14817,7 @@ module Aws::RDS
|
|
14605
14817
|
class OptionGroupOptionsMessage < Struct.new(
|
14606
14818
|
:option_group_options,
|
14607
14819
|
:marker)
|
14820
|
+
SENSITIVE = []
|
14608
14821
|
include Aws::Structure
|
14609
14822
|
end
|
14610
14823
|
|
@@ -14631,6 +14844,7 @@ module Aws::RDS
|
|
14631
14844
|
class OptionGroups < Struct.new(
|
14632
14845
|
:option_groups_list,
|
14633
14846
|
:marker)
|
14847
|
+
SENSITIVE = []
|
14634
14848
|
include Aws::Structure
|
14635
14849
|
end
|
14636
14850
|
|
@@ -14704,6 +14918,7 @@ module Aws::RDS
|
|
14704
14918
|
:allowed_values,
|
14705
14919
|
:is_modifiable,
|
14706
14920
|
:is_collection)
|
14921
|
+
SENSITIVE = []
|
14707
14922
|
include Aws::Structure
|
14708
14923
|
end
|
14709
14924
|
|
@@ -14724,6 +14939,7 @@ module Aws::RDS
|
|
14724
14939
|
class OptionVersion < Struct.new(
|
14725
14940
|
:version,
|
14726
14941
|
:is_default)
|
14942
|
+
SENSITIVE = []
|
14727
14943
|
include Aws::Structure
|
14728
14944
|
end
|
14729
14945
|
|
@@ -14872,6 +15088,7 @@ module Aws::RDS
|
|
14872
15088
|
:supported_engine_modes,
|
14873
15089
|
:supports_storage_autoscaling,
|
14874
15090
|
:supports_kerberos_authentication)
|
15091
|
+
SENSITIVE = []
|
14875
15092
|
include Aws::Structure
|
14876
15093
|
end
|
14877
15094
|
|
@@ -14895,6 +15112,7 @@ module Aws::RDS
|
|
14895
15112
|
class OrderableDBInstanceOptionsMessage < Struct.new(
|
14896
15113
|
:orderable_db_instance_options,
|
14897
15114
|
:marker)
|
15115
|
+
SENSITIVE = []
|
14898
15116
|
include Aws::Structure
|
14899
15117
|
end
|
14900
15118
|
|
@@ -14981,6 +15199,7 @@ module Aws::RDS
|
|
14981
15199
|
:minimum_engine_version,
|
14982
15200
|
:apply_method,
|
14983
15201
|
:supported_engine_modes)
|
15202
|
+
SENSITIVE = []
|
14984
15203
|
include Aws::Structure
|
14985
15204
|
end
|
14986
15205
|
|
@@ -15004,6 +15223,7 @@ module Aws::RDS
|
|
15004
15223
|
class PendingCloudwatchLogsExports < Struct.new(
|
15005
15224
|
:log_types_to_enable,
|
15006
15225
|
:log_types_to_disable)
|
15226
|
+
SENSITIVE = []
|
15007
15227
|
include Aws::Structure
|
15008
15228
|
end
|
15009
15229
|
|
@@ -15055,6 +15275,7 @@ module Aws::RDS
|
|
15055
15275
|
:opt_in_status,
|
15056
15276
|
:current_apply_date,
|
15057
15277
|
:description)
|
15278
|
+
SENSITIVE = []
|
15058
15279
|
include Aws::Structure
|
15059
15280
|
end
|
15060
15281
|
|
@@ -15076,6 +15297,7 @@ module Aws::RDS
|
|
15076
15297
|
class PendingMaintenanceActionsMessage < Struct.new(
|
15077
15298
|
:pending_maintenance_actions,
|
15078
15299
|
:marker)
|
15300
|
+
SENSITIVE = []
|
15079
15301
|
include Aws::Structure
|
15080
15302
|
end
|
15081
15303
|
|
@@ -15173,6 +15395,7 @@ module Aws::RDS
|
|
15173
15395
|
:db_subnet_group_name,
|
15174
15396
|
:pending_cloudwatch_logs_exports,
|
15175
15397
|
:processor_features)
|
15398
|
+
SENSITIVE = []
|
15176
15399
|
include Aws::Structure
|
15177
15400
|
end
|
15178
15401
|
|
@@ -15244,6 +15467,7 @@ module Aws::RDS
|
|
15244
15467
|
class ProcessorFeature < Struct.new(
|
15245
15468
|
:name,
|
15246
15469
|
:value)
|
15470
|
+
SENSITIVE = []
|
15247
15471
|
include Aws::Structure
|
15248
15472
|
end
|
15249
15473
|
|
@@ -15271,6 +15495,7 @@ module Aws::RDS
|
|
15271
15495
|
#
|
15272
15496
|
class PromoteReadReplicaDBClusterMessage < Struct.new(
|
15273
15497
|
:db_cluster_identifier)
|
15498
|
+
SENSITIVE = []
|
15274
15499
|
include Aws::Structure
|
15275
15500
|
end
|
15276
15501
|
|
@@ -15285,6 +15510,7 @@ module Aws::RDS
|
|
15285
15510
|
#
|
15286
15511
|
class PromoteReadReplicaDBClusterResult < Struct.new(
|
15287
15512
|
:db_cluster)
|
15513
|
+
SENSITIVE = []
|
15288
15514
|
include Aws::Structure
|
15289
15515
|
end
|
15290
15516
|
|
@@ -15356,6 +15582,7 @@ module Aws::RDS
|
|
15356
15582
|
:db_instance_identifier,
|
15357
15583
|
:backup_retention_period,
|
15358
15584
|
:preferred_backup_window)
|
15585
|
+
SENSITIVE = []
|
15359
15586
|
include Aws::Structure
|
15360
15587
|
end
|
15361
15588
|
|
@@ -15370,6 +15597,7 @@ module Aws::RDS
|
|
15370
15597
|
#
|
15371
15598
|
class PromoteReadReplicaResult < Struct.new(
|
15372
15599
|
:db_instance)
|
15600
|
+
SENSITIVE = []
|
15373
15601
|
include Aws::Structure
|
15374
15602
|
end
|
15375
15603
|
|
@@ -15428,6 +15656,7 @@ module Aws::RDS
|
|
15428
15656
|
:reserved_db_instance_id,
|
15429
15657
|
:db_instance_count,
|
15430
15658
|
:tags)
|
15659
|
+
SENSITIVE = []
|
15431
15660
|
include Aws::Structure
|
15432
15661
|
end
|
15433
15662
|
|
@@ -15441,6 +15670,7 @@ module Aws::RDS
|
|
15441
15670
|
#
|
15442
15671
|
class PurchaseReservedDBInstancesOfferingResult < Struct.new(
|
15443
15672
|
:reserved_db_instance)
|
15673
|
+
SENSITIVE = []
|
15444
15674
|
include Aws::Structure
|
15445
15675
|
end
|
15446
15676
|
|
@@ -15468,6 +15698,7 @@ module Aws::RDS
|
|
15468
15698
|
:from,
|
15469
15699
|
:to,
|
15470
15700
|
:step)
|
15701
|
+
SENSITIVE = []
|
15471
15702
|
include Aws::Structure
|
15472
15703
|
end
|
15473
15704
|
|
@@ -15503,6 +15734,7 @@ module Aws::RDS
|
|
15503
15734
|
class RebootDBInstanceMessage < Struct.new(
|
15504
15735
|
:db_instance_identifier,
|
15505
15736
|
:force_failover)
|
15737
|
+
SENSITIVE = []
|
15506
15738
|
include Aws::Structure
|
15507
15739
|
end
|
15508
15740
|
|
@@ -15517,6 +15749,7 @@ module Aws::RDS
|
|
15517
15749
|
#
|
15518
15750
|
class RebootDBInstanceResult < Struct.new(
|
15519
15751
|
:db_instance)
|
15752
|
+
SENSITIVE = []
|
15520
15753
|
include Aws::Structure
|
15521
15754
|
end
|
15522
15755
|
|
@@ -15537,6 +15770,7 @@ module Aws::RDS
|
|
15537
15770
|
class RecurringCharge < Struct.new(
|
15538
15771
|
:recurring_charge_amount,
|
15539
15772
|
:recurring_charge_frequency)
|
15773
|
+
SENSITIVE = []
|
15540
15774
|
include Aws::Structure
|
15541
15775
|
end
|
15542
15776
|
|
@@ -15574,6 +15808,7 @@ module Aws::RDS
|
|
15574
15808
|
:target_group_name,
|
15575
15809
|
:db_instance_identifiers,
|
15576
15810
|
:db_cluster_identifiers)
|
15811
|
+
SENSITIVE = []
|
15577
15812
|
include Aws::Structure
|
15578
15813
|
end
|
15579
15814
|
|
@@ -15586,6 +15821,7 @@ module Aws::RDS
|
|
15586
15821
|
#
|
15587
15822
|
class RegisterDBProxyTargetsResponse < Struct.new(
|
15588
15823
|
:db_proxy_targets)
|
15824
|
+
SENSITIVE = []
|
15589
15825
|
include Aws::Structure
|
15590
15826
|
end
|
15591
15827
|
|
@@ -15612,6 +15848,7 @@ module Aws::RDS
|
|
15612
15848
|
class RemoveFromGlobalClusterMessage < Struct.new(
|
15613
15849
|
:global_cluster_identifier,
|
15614
15850
|
:db_cluster_identifier)
|
15851
|
+
SENSITIVE = []
|
15615
15852
|
include Aws::Structure
|
15616
15853
|
end
|
15617
15854
|
|
@@ -15623,6 +15860,7 @@ module Aws::RDS
|
|
15623
15860
|
#
|
15624
15861
|
class RemoveFromGlobalClusterResult < Struct.new(
|
15625
15862
|
:global_cluster)
|
15863
|
+
SENSITIVE = []
|
15626
15864
|
include Aws::Structure
|
15627
15865
|
end
|
15628
15866
|
|
@@ -15657,6 +15895,7 @@ module Aws::RDS
|
|
15657
15895
|
:db_cluster_identifier,
|
15658
15896
|
:role_arn,
|
15659
15897
|
:feature_name)
|
15898
|
+
SENSITIVE = []
|
15660
15899
|
include Aws::Structure
|
15661
15900
|
end
|
15662
15901
|
|
@@ -15691,6 +15930,7 @@ module Aws::RDS
|
|
15691
15930
|
:db_instance_identifier,
|
15692
15931
|
:role_arn,
|
15693
15932
|
:feature_name)
|
15933
|
+
SENSITIVE = []
|
15694
15934
|
include Aws::Structure
|
15695
15935
|
end
|
15696
15936
|
|
@@ -15718,6 +15958,7 @@ module Aws::RDS
|
|
15718
15958
|
class RemoveSourceIdentifierFromSubscriptionMessage < Struct.new(
|
15719
15959
|
:subscription_name,
|
15720
15960
|
:source_identifier)
|
15961
|
+
SENSITIVE = []
|
15721
15962
|
include Aws::Structure
|
15722
15963
|
end
|
15723
15964
|
|
@@ -15730,6 +15971,7 @@ module Aws::RDS
|
|
15730
15971
|
#
|
15731
15972
|
class RemoveSourceIdentifierFromSubscriptionResult < Struct.new(
|
15732
15973
|
:event_subscription)
|
15974
|
+
SENSITIVE = []
|
15733
15975
|
include Aws::Structure
|
15734
15976
|
end
|
15735
15977
|
|
@@ -15761,6 +16003,7 @@ module Aws::RDS
|
|
15761
16003
|
class RemoveTagsFromResourceMessage < Struct.new(
|
15762
16004
|
:resource_name,
|
15763
16005
|
:tag_keys)
|
16006
|
+
SENSITIVE = []
|
15764
16007
|
include Aws::Structure
|
15765
16008
|
end
|
15766
16009
|
|
@@ -15857,6 +16100,7 @@ module Aws::RDS
|
|
15857
16100
|
:recurring_charges,
|
15858
16101
|
:reserved_db_instance_arn,
|
15859
16102
|
:lease_id)
|
16103
|
+
SENSITIVE = []
|
15860
16104
|
include Aws::Structure
|
15861
16105
|
end
|
15862
16106
|
|
@@ -15884,6 +16128,7 @@ module Aws::RDS
|
|
15884
16128
|
class ReservedDBInstanceMessage < Struct.new(
|
15885
16129
|
:marker,
|
15886
16130
|
:reserved_db_instances)
|
16131
|
+
SENSITIVE = []
|
15887
16132
|
include Aws::Structure
|
15888
16133
|
end
|
15889
16134
|
|
@@ -15955,6 +16200,7 @@ module Aws::RDS
|
|
15955
16200
|
:offering_type,
|
15956
16201
|
:multi_az,
|
15957
16202
|
:recurring_charges)
|
16203
|
+
SENSITIVE = []
|
15958
16204
|
include Aws::Structure
|
15959
16205
|
end
|
15960
16206
|
|
@@ -15976,6 +16222,7 @@ module Aws::RDS
|
|
15976
16222
|
class ReservedDBInstancesOfferingMessage < Struct.new(
|
15977
16223
|
:marker,
|
15978
16224
|
:reserved_db_instances_offerings)
|
16225
|
+
SENSITIVE = []
|
15979
16226
|
include Aws::Structure
|
15980
16227
|
end
|
15981
16228
|
|
@@ -16031,6 +16278,7 @@ module Aws::RDS
|
|
16031
16278
|
:db_cluster_parameter_group_name,
|
16032
16279
|
:reset_all_parameters,
|
16033
16280
|
:parameters)
|
16281
|
+
SENSITIVE = []
|
16034
16282
|
include Aws::Structure
|
16035
16283
|
end
|
16036
16284
|
|
@@ -16107,6 +16355,7 @@ module Aws::RDS
|
|
16107
16355
|
:db_parameter_group_name,
|
16108
16356
|
:reset_all_parameters,
|
16109
16357
|
:parameters)
|
16358
|
+
SENSITIVE = []
|
16110
16359
|
include Aws::Structure
|
16111
16360
|
end
|
16112
16361
|
|
@@ -16132,6 +16381,7 @@ module Aws::RDS
|
|
16132
16381
|
class ResourcePendingMaintenanceActions < Struct.new(
|
16133
16382
|
:resource_identifier,
|
16134
16383
|
:pending_maintenance_action_details)
|
16384
|
+
SENSITIVE = []
|
16135
16385
|
include Aws::Structure
|
16136
16386
|
end
|
16137
16387
|
|
@@ -16206,7 +16456,7 @@ module Aws::RDS
|
|
16206
16456
|
#
|
16207
16457
|
# @!attribute [rw] db_cluster_identifier
|
16208
16458
|
# The name of the DB cluster to create from the source data in the
|
16209
|
-
# Amazon S3 bucket. This parameter
|
16459
|
+
# Amazon S3 bucket. This parameter isn't case-sensitive.
|
16210
16460
|
#
|
16211
16461
|
# Constraints:
|
16212
16462
|
#
|
@@ -16416,9 +16666,9 @@ module Aws::RDS
|
|
16416
16666
|
# @!attribute [rw] source_engine_version
|
16417
16667
|
# The version of the database that the backup files were created from.
|
16418
16668
|
#
|
16419
|
-
# MySQL
|
16669
|
+
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
16420
16670
|
#
|
16421
|
-
# Example: `5.6.
|
16671
|
+
# Example: `5.6.40`
|
16422
16672
|
# @return [String]
|
16423
16673
|
#
|
16424
16674
|
# @!attribute [rw] s3_bucket_name
|
@@ -16533,6 +16783,7 @@ module Aws::RDS
|
|
16533
16783
|
:copy_tags_to_snapshot,
|
16534
16784
|
:domain,
|
16535
16785
|
:domain_iam_role_name)
|
16786
|
+
SENSITIVE = []
|
16536
16787
|
include Aws::Structure
|
16537
16788
|
end
|
16538
16789
|
|
@@ -16547,6 +16798,7 @@ module Aws::RDS
|
|
16547
16798
|
#
|
16548
16799
|
class RestoreDBClusterFromS3Result < Struct.new(
|
16549
16800
|
:db_cluster)
|
16801
|
+
SENSITIVE = []
|
16550
16802
|
include Aws::Structure
|
16551
16803
|
end
|
16552
16804
|
|
@@ -16840,6 +17092,7 @@ module Aws::RDS
|
|
16840
17092
|
:copy_tags_to_snapshot,
|
16841
17093
|
:domain,
|
16842
17094
|
:domain_iam_role_name)
|
17095
|
+
SENSITIVE = []
|
16843
17096
|
include Aws::Structure
|
16844
17097
|
end
|
16845
17098
|
|
@@ -16854,6 +17107,7 @@ module Aws::RDS
|
|
16854
17107
|
#
|
16855
17108
|
class RestoreDBClusterFromSnapshotResult < Struct.new(
|
16856
17109
|
:db_cluster)
|
17110
|
+
SENSITIVE = []
|
16857
17111
|
include Aws::Structure
|
16858
17112
|
end
|
16859
17113
|
|
@@ -17132,6 +17386,7 @@ module Aws::RDS
|
|
17132
17386
|
:copy_tags_to_snapshot,
|
17133
17387
|
:domain,
|
17134
17388
|
:domain_iam_role_name)
|
17389
|
+
SENSITIVE = []
|
17135
17390
|
include Aws::Structure
|
17136
17391
|
end
|
17137
17392
|
|
@@ -17146,6 +17401,7 @@ module Aws::RDS
|
|
17146
17401
|
#
|
17147
17402
|
class RestoreDBClusterToPointInTimeResult < Struct.new(
|
17148
17403
|
:db_cluster)
|
17404
|
+
SENSITIVE = []
|
17149
17405
|
include Aws::Structure
|
17150
17406
|
end
|
17151
17407
|
|
@@ -17541,6 +17797,7 @@ module Aws::RDS
|
|
17541
17797
|
:use_default_processor_features,
|
17542
17798
|
:db_parameter_group_name,
|
17543
17799
|
:deletion_protection)
|
17800
|
+
SENSITIVE = []
|
17544
17801
|
include Aws::Structure
|
17545
17802
|
end
|
17546
17803
|
|
@@ -17555,6 +17812,7 @@ module Aws::RDS
|
|
17555
17812
|
#
|
17556
17813
|
class RestoreDBInstanceFromDBSnapshotResult < Struct.new(
|
17557
17814
|
:db_instance)
|
17815
|
+
SENSITIVE = []
|
17558
17816
|
include Aws::Structure
|
17559
17817
|
end
|
17560
17818
|
|
@@ -17943,9 +18201,11 @@ module Aws::RDS
|
|
17943
18201
|
# @return [String]
|
17944
18202
|
#
|
17945
18203
|
# @!attribute [rw] source_engine_version
|
17946
|
-
# The
|
18204
|
+
# The version of the database that the backup files were created from.
|
17947
18205
|
#
|
17948
|
-
#
|
18206
|
+
# MySQL versions 5.6 and 5.7 are supported.
|
18207
|
+
#
|
18208
|
+
# Example: `5.6.40`
|
17949
18209
|
# @return [String]
|
17950
18210
|
#
|
17951
18211
|
# @!attribute [rw] s3_bucket_name
|
@@ -18068,6 +18328,7 @@ module Aws::RDS
|
|
18068
18328
|
:processor_features,
|
18069
18329
|
:use_default_processor_features,
|
18070
18330
|
:deletion_protection)
|
18331
|
+
SENSITIVE = []
|
18071
18332
|
include Aws::Structure
|
18072
18333
|
end
|
18073
18334
|
|
@@ -18082,6 +18343,7 @@ module Aws::RDS
|
|
18082
18343
|
#
|
18083
18344
|
class RestoreDBInstanceFromS3Result < Struct.new(
|
18084
18345
|
:db_instance)
|
18346
|
+
SENSITIVE = []
|
18085
18347
|
include Aws::Structure
|
18086
18348
|
end
|
18087
18349
|
|
@@ -18497,6 +18759,7 @@ module Aws::RDS
|
|
18497
18759
|
:db_parameter_group_name,
|
18498
18760
|
:deletion_protection,
|
18499
18761
|
:source_dbi_resource_id)
|
18762
|
+
SENSITIVE = []
|
18500
18763
|
include Aws::Structure
|
18501
18764
|
end
|
18502
18765
|
|
@@ -18511,6 +18774,7 @@ module Aws::RDS
|
|
18511
18774
|
#
|
18512
18775
|
class RestoreDBInstanceToPointInTimeResult < Struct.new(
|
18513
18776
|
:db_instance)
|
18777
|
+
SENSITIVE = []
|
18514
18778
|
include Aws::Structure
|
18515
18779
|
end
|
18516
18780
|
|
@@ -18529,6 +18793,7 @@ module Aws::RDS
|
|
18529
18793
|
class RestoreWindow < Struct.new(
|
18530
18794
|
:earliest_time,
|
18531
18795
|
:latest_time)
|
18796
|
+
SENSITIVE = []
|
18532
18797
|
include Aws::Structure
|
18533
18798
|
end
|
18534
18799
|
|
@@ -18584,6 +18849,7 @@ module Aws::RDS
|
|
18584
18849
|
:ec2_security_group_name,
|
18585
18850
|
:ec2_security_group_id,
|
18586
18851
|
:ec2_security_group_owner_id)
|
18852
|
+
SENSITIVE = []
|
18587
18853
|
include Aws::Structure
|
18588
18854
|
end
|
18589
18855
|
|
@@ -18598,6 +18864,7 @@ module Aws::RDS
|
|
18598
18864
|
#
|
18599
18865
|
class RevokeDBSecurityGroupIngressResult < Struct.new(
|
18600
18866
|
:db_security_group)
|
18867
|
+
SENSITIVE = []
|
18601
18868
|
include Aws::Structure
|
18602
18869
|
end
|
18603
18870
|
|
@@ -18714,6 +18981,7 @@ module Aws::RDS
|
|
18714
18981
|
:auto_pause,
|
18715
18982
|
:seconds_until_auto_pause,
|
18716
18983
|
:timeout_action)
|
18984
|
+
SENSITIVE = []
|
18717
18985
|
include Aws::Structure
|
18718
18986
|
end
|
18719
18987
|
|
@@ -18764,6 +19032,7 @@ module Aws::RDS
|
|
18764
19032
|
:auto_pause,
|
18765
19033
|
:seconds_until_auto_pause,
|
18766
19034
|
:timeout_action)
|
19035
|
+
SENSITIVE = []
|
18767
19036
|
include Aws::Structure
|
18768
19037
|
end
|
18769
19038
|
|
@@ -18808,6 +19077,7 @@ module Aws::RDS
|
|
18808
19077
|
:region_name,
|
18809
19078
|
:endpoint,
|
18810
19079
|
:status)
|
19080
|
+
SENSITIVE = []
|
18811
19081
|
include Aws::Structure
|
18812
19082
|
end
|
18813
19083
|
|
@@ -18831,6 +19101,7 @@ module Aws::RDS
|
|
18831
19101
|
class SourceRegionMessage < Struct.new(
|
18832
19102
|
:marker,
|
18833
19103
|
:source_regions)
|
19104
|
+
SENSITIVE = []
|
18834
19105
|
include Aws::Structure
|
18835
19106
|
end
|
18836
19107
|
|
@@ -18875,6 +19146,7 @@ module Aws::RDS
|
|
18875
19146
|
:mode,
|
18876
19147
|
:kms_key_id,
|
18877
19148
|
:apply_immediately)
|
19149
|
+
SENSITIVE = []
|
18878
19150
|
include Aws::Structure
|
18879
19151
|
end
|
18880
19152
|
|
@@ -18910,6 +19182,7 @@ module Aws::RDS
|
|
18910
19182
|
:status,
|
18911
19183
|
:mode,
|
18912
19184
|
:apply_immediately)
|
19185
|
+
SENSITIVE = []
|
18913
19186
|
include Aws::Structure
|
18914
19187
|
end
|
18915
19188
|
|
@@ -18929,6 +19202,7 @@ module Aws::RDS
|
|
18929
19202
|
#
|
18930
19203
|
class StartDBClusterMessage < Struct.new(
|
18931
19204
|
:db_cluster_identifier)
|
19205
|
+
SENSITIVE = []
|
18932
19206
|
include Aws::Structure
|
18933
19207
|
end
|
18934
19208
|
|
@@ -18943,6 +19217,7 @@ module Aws::RDS
|
|
18943
19217
|
#
|
18944
19218
|
class StartDBClusterResult < Struct.new(
|
18945
19219
|
:db_cluster)
|
19220
|
+
SENSITIVE = []
|
18946
19221
|
include Aws::Structure
|
18947
19222
|
end
|
18948
19223
|
|
@@ -18961,6 +19236,7 @@ module Aws::RDS
|
|
18961
19236
|
#
|
18962
19237
|
class StartDBInstanceMessage < Struct.new(
|
18963
19238
|
:db_instance_identifier)
|
19239
|
+
SENSITIVE = []
|
18964
19240
|
include Aws::Structure
|
18965
19241
|
end
|
18966
19242
|
|
@@ -18975,6 +19251,7 @@ module Aws::RDS
|
|
18975
19251
|
#
|
18976
19252
|
class StartDBInstanceResult < Struct.new(
|
18977
19253
|
:db_instance)
|
19254
|
+
SENSITIVE = []
|
18978
19255
|
include Aws::Structure
|
18979
19256
|
end
|
18980
19257
|
|
@@ -19054,6 +19331,7 @@ module Aws::RDS
|
|
19054
19331
|
:kms_key_id,
|
19055
19332
|
:s3_prefix,
|
19056
19333
|
:export_only)
|
19334
|
+
SENSITIVE = []
|
19057
19335
|
include Aws::Structure
|
19058
19336
|
end
|
19059
19337
|
|
@@ -19082,6 +19360,7 @@ module Aws::RDS
|
|
19082
19360
|
class StopActivityStreamRequest < Struct.new(
|
19083
19361
|
:resource_arn,
|
19084
19362
|
:apply_immediately)
|
19363
|
+
SENSITIVE = []
|
19085
19364
|
include Aws::Structure
|
19086
19365
|
end
|
19087
19366
|
|
@@ -19105,6 +19384,7 @@ module Aws::RDS
|
|
19105
19384
|
:kms_key_id,
|
19106
19385
|
:kinesis_stream_name,
|
19107
19386
|
:status)
|
19387
|
+
SENSITIVE = []
|
19108
19388
|
include Aws::Structure
|
19109
19389
|
end
|
19110
19390
|
|
@@ -19124,6 +19404,7 @@ module Aws::RDS
|
|
19124
19404
|
#
|
19125
19405
|
class StopDBClusterMessage < Struct.new(
|
19126
19406
|
:db_cluster_identifier)
|
19407
|
+
SENSITIVE = []
|
19127
19408
|
include Aws::Structure
|
19128
19409
|
end
|
19129
19410
|
|
@@ -19138,6 +19419,7 @@ module Aws::RDS
|
|
19138
19419
|
#
|
19139
19420
|
class StopDBClusterResult < Struct.new(
|
19140
19421
|
:db_cluster)
|
19422
|
+
SENSITIVE = []
|
19141
19423
|
include Aws::Structure
|
19142
19424
|
end
|
19143
19425
|
|
@@ -19163,6 +19445,7 @@ module Aws::RDS
|
|
19163
19445
|
class StopDBInstanceMessage < Struct.new(
|
19164
19446
|
:db_instance_identifier,
|
19165
19447
|
:db_snapshot_identifier)
|
19448
|
+
SENSITIVE = []
|
19166
19449
|
include Aws::Structure
|
19167
19450
|
end
|
19168
19451
|
|
@@ -19177,6 +19460,7 @@ module Aws::RDS
|
|
19177
19460
|
#
|
19178
19461
|
class StopDBInstanceResult < Struct.new(
|
19179
19462
|
:db_instance)
|
19463
|
+
SENSITIVE = []
|
19180
19464
|
include Aws::Structure
|
19181
19465
|
end
|
19182
19466
|
|
@@ -19218,6 +19502,7 @@ module Aws::RDS
|
|
19218
19502
|
:subnet_identifier,
|
19219
19503
|
:subnet_availability_zone,
|
19220
19504
|
:subnet_status)
|
19505
|
+
SENSITIVE = []
|
19221
19506
|
include Aws::Structure
|
19222
19507
|
end
|
19223
19508
|
|
@@ -19279,6 +19564,7 @@ module Aws::RDS
|
|
19279
19564
|
class Tag < Struct.new(
|
19280
19565
|
:key,
|
19281
19566
|
:value)
|
19567
|
+
SENSITIVE = []
|
19282
19568
|
include Aws::Structure
|
19283
19569
|
end
|
19284
19570
|
|
@@ -19290,14 +19576,10 @@ module Aws::RDS
|
|
19290
19576
|
#
|
19291
19577
|
class TagListMessage < Struct.new(
|
19292
19578
|
:tag_list)
|
19579
|
+
SENSITIVE = []
|
19293
19580
|
include Aws::Structure
|
19294
19581
|
end
|
19295
19582
|
|
19296
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
19297
|
-
# preview release. It is subject to change.
|
19298
|
-
#
|
19299
|
-
# </note>
|
19300
|
-
#
|
19301
19583
|
# Information about the connection health of an RDS Proxy target.
|
19302
19584
|
#
|
19303
19585
|
# @!attribute [rw] state
|
@@ -19324,6 +19606,7 @@ module Aws::RDS
|
|
19324
19606
|
:state,
|
19325
19607
|
:reason,
|
19326
19608
|
:description)
|
19609
|
+
SENSITIVE = []
|
19327
19610
|
include Aws::Structure
|
19328
19611
|
end
|
19329
19612
|
|
@@ -19339,6 +19622,7 @@ module Aws::RDS
|
|
19339
19622
|
#
|
19340
19623
|
class Timezone < Struct.new(
|
19341
19624
|
:timezone_name)
|
19625
|
+
SENSITIVE = []
|
19342
19626
|
include Aws::Structure
|
19343
19627
|
end
|
19344
19628
|
|
@@ -19376,14 +19660,10 @@ module Aws::RDS
|
|
19376
19660
|
:description,
|
19377
19661
|
:auto_upgrade,
|
19378
19662
|
:is_major_version_upgrade)
|
19663
|
+
SENSITIVE = []
|
19379
19664
|
include Aws::Structure
|
19380
19665
|
end
|
19381
19666
|
|
19382
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
19383
|
-
# preview release. It is subject to change.
|
19384
|
-
#
|
19385
|
-
# </note>
|
19386
|
-
#
|
19387
19667
|
# Specifies the details of authentication used by a proxy to log in as a
|
19388
19668
|
# specific database user.
|
19389
19669
|
#
|
@@ -19431,14 +19711,10 @@ module Aws::RDS
|
|
19431
19711
|
:auth_scheme,
|
19432
19712
|
:secret_arn,
|
19433
19713
|
:iam_auth)
|
19714
|
+
SENSITIVE = []
|
19434
19715
|
include Aws::Structure
|
19435
19716
|
end
|
19436
19717
|
|
19437
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
19438
|
-
# preview release. It is subject to change.
|
19439
|
-
#
|
19440
|
-
# </note>
|
19441
|
-
#
|
19442
19718
|
# Returns the details of authentication used by a proxy to log in as a
|
19443
19719
|
# specific database user.
|
19444
19720
|
#
|
@@ -19475,6 +19751,7 @@ module Aws::RDS
|
|
19475
19751
|
:auth_scheme,
|
19476
19752
|
:secret_arn,
|
19477
19753
|
:iam_auth)
|
19754
|
+
SENSITIVE = []
|
19478
19755
|
include Aws::Structure
|
19479
19756
|
end
|
19480
19757
|
|
@@ -19496,6 +19773,7 @@ module Aws::RDS
|
|
19496
19773
|
class ValidDBInstanceModificationsMessage < Struct.new(
|
19497
19774
|
:storage,
|
19498
19775
|
:valid_processor_features)
|
19776
|
+
SENSITIVE = []
|
19499
19777
|
include Aws::Structure
|
19500
19778
|
end
|
19501
19779
|
|
@@ -19534,6 +19812,7 @@ module Aws::RDS
|
|
19534
19812
|
:provisioned_iops,
|
19535
19813
|
:iops_to_storage_ratio,
|
19536
19814
|
:supports_storage_autoscaling)
|
19815
|
+
SENSITIVE = []
|
19537
19816
|
include Aws::Structure
|
19538
19817
|
end
|
19539
19818
|
|
@@ -19553,6 +19832,7 @@ module Aws::RDS
|
|
19553
19832
|
class VpcSecurityGroupMembership < Struct.new(
|
19554
19833
|
:vpc_security_group_id,
|
19555
19834
|
:status)
|
19835
|
+
SENSITIVE = []
|
19556
19836
|
include Aws::Structure
|
19557
19837
|
end
|
19558
19838
|
|
@@ -19601,6 +19881,7 @@ module Aws::RDS
|
|
19601
19881
|
:vpn_psk,
|
19602
19882
|
:vpn_name,
|
19603
19883
|
:vpn_state)
|
19884
|
+
SENSITIVE = [:vpn_psk]
|
19604
19885
|
include Aws::Structure
|
19605
19886
|
end
|
19606
19887
|
|