aws-sdk-rds 1.85.0 → 1.90.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/lib/aws-sdk-rds.rb +3 -1
  3. data/lib/aws-sdk-rds/account_quota.rb +2 -0
  4. data/lib/aws-sdk-rds/certificate.rb +2 -0
  5. data/lib/aws-sdk-rds/client.rb +203 -99
  6. data/lib/aws-sdk-rds/client_api.rb +56 -0
  7. data/lib/aws-sdk-rds/customizations.rb +2 -0
  8. data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +2 -0
  9. data/lib/aws-sdk-rds/db_cluster.rb +59 -25
  10. data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -0
  11. data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
  12. data/lib/aws-sdk-rds/db_engine.rb +2 -0
  13. data/lib/aws-sdk-rds/db_engine_version.rb +2 -0
  14. data/lib/aws-sdk-rds/db_instance.rb +70 -50
  15. data/lib/aws-sdk-rds/db_log_file.rb +2 -0
  16. data/lib/aws-sdk-rds/db_parameter_group.rb +2 -0
  17. data/lib/aws-sdk-rds/db_parameter_group_family.rb +2 -0
  18. data/lib/aws-sdk-rds/db_security_group.rb +2 -0
  19. data/lib/aws-sdk-rds/db_snapshot.rb +18 -9
  20. data/lib/aws-sdk-rds/db_snapshot_attribute.rb +2 -0
  21. data/lib/aws-sdk-rds/db_subnet_group.rb +2 -0
  22. data/lib/aws-sdk-rds/errors.rb +2 -0
  23. data/lib/aws-sdk-rds/event.rb +2 -0
  24. data/lib/aws-sdk-rds/event_category_map.rb +2 -0
  25. data/lib/aws-sdk-rds/event_subscription.rb +2 -0
  26. data/lib/aws-sdk-rds/option_group.rb +2 -0
  27. data/lib/aws-sdk-rds/option_group_option.rb +2 -0
  28. data/lib/aws-sdk-rds/parameter.rb +2 -0
  29. data/lib/aws-sdk-rds/pending_maintenance_action.rb +2 -0
  30. data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +2 -0
  31. data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -0
  32. data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +2 -0
  33. data/lib/aws-sdk-rds/resource.rb +54 -77
  34. data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
  35. data/lib/aws-sdk-rds/types.rb +502 -95
  36. data/lib/aws-sdk-rds/waiters.rb +2 -0
  37. metadata +4 -4
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -42,8 +44,8 @@ module Aws::RDS
42
44
  end
43
45
  alias :db_snapshot_identifier :snapshot_id
44
46
 
45
- # Provides the time when the snapshot was taken, in Universal
46
- # Coordinated Time (UTC).
47
+ # Specifies when the snapshot was taken in Coodinated Universal Time
48
+ # (UTC).
47
49
  # @return [Time]
48
50
  def snapshot_create_time
49
51
  data[:snapshot_create_time]
@@ -87,8 +89,8 @@ module Aws::RDS
87
89
  data[:vpc_id]
88
90
  end
89
91
 
90
- # Specifies the time when the snapshot was taken, in Universal
91
- # Coordinated Time (UTC).
92
+ # Specifies the time in Coordinated Universal Time (UTC) when the DB
93
+ # instance, from which the snapshot was taken, was created.
92
94
  # @return [Time]
93
95
  def instance_create_time
94
96
  data[:instance_create_time]
@@ -641,11 +643,18 @@ module Aws::RDS
641
643
  # DB instance is a Multi-AZ deployment.
642
644
  # @option options [Boolean] :publicly_accessible
643
645
  # A value that indicates whether the DB instance is publicly accessible.
644
- # When the DB instance is publicly accessible, it is an Internet-facing
645
- # instance with a publicly resolvable DNS name, which resolves to a
646
- # public IP address. When the DB instance isn't publicly accessible, it
647
- # is an internal instance with a DNS name that resolves to a private IP
648
- # address. For more information, see CreateDBInstance.
646
+ #
647
+ # When the DB instance is publicly accessible, its DNS endpoint resolves
648
+ # to the private IP address from within the DB instance's VPC, and to
649
+ # the public IP address from outside of the DB instance's VPC. Access
650
+ # to the DB instance is ultimately controlled by the security group it
651
+ # uses, and that public access is not permitted if the security group
652
+ # assigned to the DB instance doesn't permit it.
653
+ #
654
+ # When the DB instance isn't publicly accessible, it is an internal DB
655
+ # instance with a DNS name that resolves to a private IP address.
656
+ #
657
+ # For more information, see CreateDBInstance.
649
658
  # @option options [Boolean] :auto_minor_version_upgrade
650
659
  # A value that indicates whether minor version upgrades are applied
651
660
  # automatically to the DB instance during the maintenance window.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'aws-sigv4'
2
4
 
3
5
  module Aws
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -79,6 +81,7 @@ module Aws::RDS
79
81
  # copy_tags_to_snapshot: false,
80
82
  # domain: "String",
81
83
  # domain_iam_role_name: "String",
84
+ # enable_global_write_forwarding: false,
82
85
  # source_region: "String",
83
86
  # })
84
87
  # @param [Hash] options ({})
@@ -341,6 +344,10 @@ module Aws::RDS
341
344
  # The target backtrack window, in seconds. To disable backtracking, set
342
345
  # this value to 0.
343
346
  #
347
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
348
+ #
349
+ # </note>
350
+ #
344
351
  # Default: 0
345
352
  #
346
353
  # Constraints:
@@ -429,6 +436,13 @@ module Aws::RDS
429
436
  # @option options [String] :domain_iam_role_name
430
437
  # Specify the name of the IAM role to be used when making API calls to
431
438
  # the Directory Service.
439
+ # @option options [Boolean] :enable_global_write_forwarding
440
+ # A value that indicates whether to enable write operations to be
441
+ # forwarded from this cluster to the primary cluster in an Aurora global
442
+ # database. The resulting changes are replicated back to this cluster.
443
+ # This parameter only applies to DB clusters that are secondary clusters
444
+ # in an Aurora global database. By default, Aurora disallows write
445
+ # operations for secondary clusters.
432
446
  # @option options [String] :destination_region
433
447
  # @option options [String] :source_region
434
448
  # The source region of the snapshot. This is only needed when the
@@ -1129,11 +1143,16 @@ module Aws::RDS
1129
1143
  # more information, see `CreateDBCluster`.
1130
1144
  # @option options [Boolean] :publicly_accessible
1131
1145
  # A value that indicates whether the DB instance is publicly accessible.
1132
- # When the DB instance is publicly accessible, it is an Internet-facing
1133
- # instance with a publicly resolvable DNS name, which resolves to a
1134
- # public IP address. When the DB instance isn't publicly accessible, it
1135
- # is an internal instance with a DNS name that resolves to a private IP
1136
- # address.
1146
+ #
1147
+ # When the DB instance is publicly accessible, its DNS endpoint resolves
1148
+ # to the private IP address from within the DB instance's VPC, and to
1149
+ # the public IP address from outside of the DB instance's VPC. Access
1150
+ # to the DB instance is ultimately controlled by the security group it
1151
+ # uses, and that public access is not permitted if the security group
1152
+ # assigned to the DB instance doesn't permit it.
1153
+ #
1154
+ # When the DB instance isn't publicly accessible, it is an internal DB
1155
+ # instance with a DNS name that resolves to a private IP address.
1137
1156
  #
1138
1157
  # Default: The default behavior varies depending on whether
1139
1158
  # `DBSubnetGroupName` is specified.
@@ -1685,8 +1704,6 @@ module Aws::RDS
1685
1704
  # values: ["String"], # required
1686
1705
  # },
1687
1706
  # ],
1688
- # max_records: 1,
1689
- # marker: "String",
1690
1707
  # })
1691
1708
  # @param [Hash] options ({})
1692
1709
  # @option options [String] :certificate_identifier
@@ -1701,33 +1718,21 @@ module Aws::RDS
1701
1718
  # ^
1702
1719
  # @option options [Array<Types::Filter>] :filters
1703
1720
  # This parameter isn't currently supported.
1704
- # @option options [Integer] :max_records
1705
- # The maximum number of records to include in the response. If more
1706
- # records exist than the specified `MaxRecords` value, a pagination
1707
- # token called a marker is included in the response so you can retrieve
1708
- # the remaining results.
1709
- #
1710
- # Default: 100
1711
- #
1712
- # Constraints: Minimum 20, maximum 100.
1713
- # @option options [String] :marker
1714
- # An optional pagination token provided by a previous
1715
- # `DescribeCertificates` request. If this parameter is specified, the
1716
- # response includes only records beyond the marker, up to the value
1717
- # specified by `MaxRecords`.
1718
1721
  # @return [Certificate::Collection]
1719
1722
  def certificates(options = {})
1720
1723
  batches = Enumerator.new do |y|
1721
- batch = []
1722
1724
  resp = @client.describe_certificates(options)
1723
- resp.data.certificates.each do |c|
1724
- batch << Certificate.new(
1725
- id: c.certificate_identifier,
1726
- data: c,
1727
- client: @client
1728
- )
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)
1729
1735
  end
1730
- y.yield(batch)
1731
1736
  end
1732
1737
  Certificate::Collection.new(batches)
1733
1738
  end
@@ -1760,8 +1765,6 @@ module Aws::RDS
1760
1765
  # values: ["String"], # required
1761
1766
  # },
1762
1767
  # ],
1763
- # max_records: 1,
1764
- # marker: "String",
1765
1768
  # })
1766
1769
  # @param [Hash] options ({})
1767
1770
  # @option options [String] :db_cluster_parameter_group_name
@@ -1776,33 +1779,21 @@ module Aws::RDS
1776
1779
  # ^
1777
1780
  # @option options [Array<Types::Filter>] :filters
1778
1781
  # This parameter isn't currently supported.
1779
- # @option options [Integer] :max_records
1780
- # The maximum number of records to include in the response. If more
1781
- # records exist than the specified `MaxRecords` value, a pagination
1782
- # token called a marker is included in the response so you can retrieve
1783
- # the remaining results.
1784
- #
1785
- # Default: 100
1786
- #
1787
- # Constraints: Minimum 20, maximum 100.
1788
- # @option options [String] :marker
1789
- # An optional pagination token provided by a previous
1790
- # `DescribeDBClusterParameterGroups` request. If this parameter is
1791
- # specified, the response includes only records beyond the marker, up to
1792
- # the value specified by `MaxRecords`.
1793
1782
  # @return [DBClusterParameterGroup::Collection]
1794
1783
  def db_cluster_parameter_groups(options = {})
1795
1784
  batches = Enumerator.new do |y|
1796
- batch = []
1797
1785
  resp = @client.describe_db_cluster_parameter_groups(options)
1798
- resp.data.db_cluster_parameter_groups.each do |d|
1799
- batch << DBClusterParameterGroup.new(
1800
- name: d.db_cluster_parameter_group_name,
1801
- data: d,
1802
- client: @client
1803
- )
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)
1804
1796
  end
1805
- y.yield(batch)
1806
1797
  end
1807
1798
  DBClusterParameterGroup::Collection.new(batches)
1808
1799
  end
@@ -2735,8 +2726,6 @@ module Aws::RDS
2735
2726
  # values: ["String"], # required
2736
2727
  # },
2737
2728
  # ],
2738
- # marker: "String",
2739
- # max_records: 1,
2740
2729
  # })
2741
2730
  # @param [Hash] options ({})
2742
2731
  # @option options [String] :resource_identifier
@@ -2755,33 +2744,21 @@ module Aws::RDS
2755
2744
  # * `db-instance-id` - Accepts DB instance identifiers and DB instance
2756
2745
  # ARNs. The results list will only include pending maintenance actions
2757
2746
  # for the DB instances identified by these ARNs.
2758
- # @option options [String] :marker
2759
- # An optional pagination token provided by a previous
2760
- # `DescribePendingMaintenanceActions` request. If this parameter is
2761
- # specified, the response includes only records beyond the marker, up to
2762
- # a number of records specified by `MaxRecords`.
2763
- # @option options [Integer] :max_records
2764
- # The maximum number of records to include in the response. If more
2765
- # records exist than the specified `MaxRecords` value, a pagination
2766
- # token called a marker is included in the response so that you can
2767
- # retrieve the remaining results.
2768
- #
2769
- # Default: 100
2770
- #
2771
- # Constraints: Minimum 20, maximum 100.
2772
2747
  # @return [ResourcePendingMaintenanceActionList::Collection]
2773
2748
  def resources_with_pending_maintenance_actions(options = {})
2774
2749
  batches = Enumerator.new do |y|
2775
- batch = []
2776
2750
  resp = @client.describe_pending_maintenance_actions(options)
2777
- resp.data.pending_maintenance_actions.each do |p|
2778
- batch << ResourcePendingMaintenanceActionList.new(
2779
- arn: p.resource_identifier,
2780
- data: p,
2781
- client: @client
2782
- )
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)
2783
2761
  end
2784
- y.yield(batch)
2785
2762
  end
2786
2763
  ResourcePendingMaintenanceActionList::Collection.new(batches)
2787
2764
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -20,6 +22,7 @@ module Aws::RDS
20
22
  #
21
23
  class AccountAttributesMessage < Struct.new(
22
24
  :account_quotas)
25
+ SENSITIVE = []
23
26
  include Aws::Structure
24
27
  end
25
28
 
@@ -131,6 +134,7 @@ module Aws::RDS
131
134
  :account_quota_name,
132
135
  :used,
133
136
  :max)
137
+ SENSITIVE = []
134
138
  include Aws::Structure
135
139
  end
136
140
 
@@ -165,6 +169,7 @@ module Aws::RDS
165
169
  :db_cluster_identifier,
166
170
  :role_arn,
167
171
  :feature_name)
172
+ SENSITIVE = []
168
173
  include Aws::Structure
169
174
  end
170
175
 
@@ -199,6 +204,7 @@ module Aws::RDS
199
204
  :db_instance_identifier,
200
205
  :role_arn,
201
206
  :feature_name)
207
+ SENSITIVE = []
202
208
  include Aws::Structure
203
209
  end
204
210
 
@@ -238,6 +244,7 @@ module Aws::RDS
238
244
  class AddSourceIdentifierToSubscriptionMessage < Struct.new(
239
245
  :subscription_name,
240
246
  :source_identifier)
247
+ SENSITIVE = []
241
248
  include Aws::Structure
242
249
  end
243
250
 
@@ -250,6 +257,7 @@ module Aws::RDS
250
257
  #
251
258
  class AddSourceIdentifierToSubscriptionResult < Struct.new(
252
259
  :event_subscription)
260
+ SENSITIVE = []
253
261
  include Aws::Structure
254
262
  end
255
263
 
@@ -285,6 +293,7 @@ module Aws::RDS
285
293
  class AddTagsToResourceMessage < Struct.new(
286
294
  :resource_name,
287
295
  :tags)
296
+ SENSITIVE = []
288
297
  include Aws::Structure
289
298
  end
290
299
 
@@ -336,6 +345,7 @@ module Aws::RDS
336
345
  :resource_identifier,
337
346
  :apply_action,
338
347
  :opt_in_type)
348
+ SENSITIVE = []
339
349
  include Aws::Structure
340
350
  end
341
351
 
@@ -347,6 +357,7 @@ module Aws::RDS
347
357
  #
348
358
  class ApplyPendingMaintenanceActionResult < Struct.new(
349
359
  :resource_pending_maintenance_actions)
360
+ SENSITIVE = []
350
361
  include Aws::Structure
351
362
  end
352
363
 
@@ -423,6 +434,7 @@ module Aws::RDS
423
434
  :ec2_security_group_name,
424
435
  :ec2_security_group_id,
425
436
  :ec2_security_group_owner_id)
437
+ SENSITIVE = []
426
438
  include Aws::Structure
427
439
  end
428
440
 
@@ -437,6 +449,7 @@ module Aws::RDS
437
449
  #
438
450
  class AuthorizeDBSecurityGroupIngressResult < Struct.new(
439
451
  :db_security_group)
452
+ SENSITIVE = []
440
453
  include Aws::Structure
441
454
  end
442
455
 
@@ -453,6 +466,7 @@ module Aws::RDS
453
466
  #
454
467
  class AvailabilityZone < Struct.new(
455
468
  :name)
469
+ SENSITIVE = []
456
470
  include Aws::Structure
457
471
  end
458
472
 
@@ -487,6 +501,7 @@ module Aws::RDS
487
501
  :name,
488
502
  :default_value,
489
503
  :allowed_values)
504
+ SENSITIVE = []
490
505
  include Aws::Structure
491
506
  end
492
507
 
@@ -560,6 +575,7 @@ module Aws::RDS
560
575
  :backtrack_to,
561
576
  :force,
562
577
  :use_earliest_time_on_point_in_time_unavailable)
578
+ SENSITIVE = []
563
579
  include Aws::Structure
564
580
  end
565
581
 
@@ -582,6 +598,7 @@ module Aws::RDS
582
598
  #
583
599
  class CancelExportTaskMessage < Struct.new(
584
600
  :export_task_identifier)
601
+ SENSITIVE = []
585
602
  include Aws::Structure
586
603
  end
587
604
 
@@ -631,6 +648,7 @@ module Aws::RDS
631
648
  :certificate_arn,
632
649
  :customer_override,
633
650
  :customer_override_valid_till)
651
+ SENSITIVE = []
634
652
  include Aws::Structure
635
653
  end
636
654
 
@@ -652,6 +670,7 @@ module Aws::RDS
652
670
  class CertificateMessage < Struct.new(
653
671
  :certificates,
654
672
  :marker)
673
+ SENSITIVE = []
655
674
  include Aws::Structure
656
675
  end
657
676
 
@@ -677,6 +696,7 @@ module Aws::RDS
677
696
  class CharacterSet < Struct.new(
678
697
  :character_set_name,
679
698
  :character_set_description)
699
+ SENSITIVE = []
680
700
  include Aws::Structure
681
701
  end
682
702
 
@@ -714,14 +734,10 @@ module Aws::RDS
714
734
  class CloudwatchLogsExportConfiguration < Struct.new(
715
735
  :enable_log_types,
716
736
  :disable_log_types)
737
+ SENSITIVE = []
717
738
  include Aws::Structure
718
739
  end
719
740
 
720
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
721
- # preview release. It is subject to change.
722
- #
723
- # </note>
724
- #
725
741
  # Specifies the settings that control the size and behavior of the
726
742
  # connection pool associated with a `DBProxyTargetGroup`.
727
743
  #
@@ -790,8 +806,6 @@ module Aws::RDS
790
806
  # the separator. You can also include multiple variables in a single
791
807
  # `SET` statement, such as `SET x=1, y=2`.
792
808
  #
793
- # `InitQuery` is not currently supported for PostgreSQL.
794
- #
795
809
  # Default: no initialization query
796
810
  # @return [String]
797
811
  #
@@ -803,14 +817,10 @@ module Aws::RDS
803
817
  :connection_borrow_timeout,
804
818
  :session_pinning_filters,
805
819
  :init_query)
820
+ SENSITIVE = []
806
821
  include Aws::Structure
807
822
  end
808
823
 
809
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
810
- # preview release. It is subject to change.
811
- #
812
- # </note>
813
- #
814
824
  # Displays the settings that control the size and behavior of the
815
825
  # connection pool associated with a `DBProxyTarget`.
816
826
  #
@@ -855,8 +865,6 @@ module Aws::RDS
855
865
  # multiple statements, use semicolons as the separator. You can also
856
866
  # include multiple variables in a single `SET` statement, such as `SET
857
867
  # x=1, y=2`.
858
- #
859
- # `InitQuery` is not currently supported for PostgreSQL.
860
868
  # @return [String]
861
869
  #
862
870
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfigurationInfo AWS API Documentation
@@ -867,6 +875,7 @@ module Aws::RDS
867
875
  :connection_borrow_timeout,
868
876
  :session_pinning_filters,
869
877
  :init_query)
878
+ SENSITIVE = []
870
879
  include Aws::Structure
871
880
  end
872
881
 
@@ -945,6 +954,7 @@ module Aws::RDS
945
954
  :target_db_cluster_parameter_group_identifier,
946
955
  :target_db_cluster_parameter_group_description,
947
956
  :tags)
957
+ SENSITIVE = []
948
958
  include Aws::Structure
949
959
  end
950
960
 
@@ -959,6 +969,7 @@ module Aws::RDS
959
969
  #
960
970
  class CopyDBClusterParameterGroupResult < Struct.new(
961
971
  :db_cluster_parameter_group)
972
+ SENSITIVE = []
962
973
  include Aws::Structure
963
974
  end
964
975
 
@@ -1130,6 +1141,7 @@ module Aws::RDS
1130
1141
  :tags,
1131
1142
  :destination_region,
1132
1143
  :source_region)
1144
+ SENSITIVE = []
1133
1145
  include Aws::Structure
1134
1146
  end
1135
1147
 
@@ -1144,6 +1156,7 @@ module Aws::RDS
1144
1156
  #
1145
1157
  class CopyDBClusterSnapshotResult < Struct.new(
1146
1158
  :db_cluster_snapshot)
1159
+ SENSITIVE = []
1147
1160
  include Aws::Structure
1148
1161
  end
1149
1162
 
@@ -1215,6 +1228,7 @@ module Aws::RDS
1215
1228
  :target_db_parameter_group_identifier,
1216
1229
  :target_db_parameter_group_description,
1217
1230
  :tags)
1231
+ SENSITIVE = []
1218
1232
  include Aws::Structure
1219
1233
  end
1220
1234
 
@@ -1229,6 +1243,7 @@ module Aws::RDS
1229
1243
  #
1230
1244
  class CopyDBParameterGroupResult < Struct.new(
1231
1245
  :db_parameter_group)
1246
+ SENSITIVE = []
1232
1247
  include Aws::Structure
1233
1248
  end
1234
1249
 
@@ -1431,6 +1446,7 @@ module Aws::RDS
1431
1446
  :option_group_name,
1432
1447
  :destination_region,
1433
1448
  :source_region)
1449
+ SENSITIVE = []
1434
1450
  include Aws::Structure
1435
1451
  end
1436
1452
 
@@ -1445,6 +1461,7 @@ module Aws::RDS
1445
1461
  #
1446
1462
  class CopyDBSnapshotResult < Struct.new(
1447
1463
  :db_snapshot)
1464
+ SENSITIVE = []
1448
1465
  include Aws::Structure
1449
1466
  end
1450
1467
 
@@ -1521,6 +1538,7 @@ module Aws::RDS
1521
1538
  :target_option_group_identifier,
1522
1539
  :target_option_group_description,
1523
1540
  :tags)
1541
+ SENSITIVE = []
1524
1542
  include Aws::Structure
1525
1543
  end
1526
1544
 
@@ -1531,6 +1549,7 @@ module Aws::RDS
1531
1549
  #
1532
1550
  class CopyOptionGroupResult < Struct.new(
1533
1551
  :option_group)
1552
+ SENSITIVE = []
1534
1553
  include Aws::Structure
1535
1554
  end
1536
1555
 
@@ -1574,6 +1593,7 @@ module Aws::RDS
1574
1593
  :existing_vpn_id,
1575
1594
  :new_vpn_tunnel_name,
1576
1595
  :vpn_tunnel_originator_ip)
1596
+ SENSITIVE = []
1577
1597
  include Aws::Structure
1578
1598
  end
1579
1599
 
@@ -1593,6 +1613,7 @@ module Aws::RDS
1593
1613
  #
1594
1614
  class CreateCustomAvailabilityZoneResult < Struct.new(
1595
1615
  :custom_availability_zone)
1616
+ SENSITIVE = []
1596
1617
  include Aws::Structure
1597
1618
  end
1598
1619
 
@@ -1652,6 +1673,7 @@ module Aws::RDS
1652
1673
  :static_members,
1653
1674
  :excluded_members,
1654
1675
  :tags)
1676
+ SENSITIVE = []
1655
1677
  include Aws::Structure
1656
1678
  end
1657
1679
 
@@ -1702,6 +1724,7 @@ module Aws::RDS
1702
1724
  # copy_tags_to_snapshot: false,
1703
1725
  # domain: "String",
1704
1726
  # domain_iam_role_name: "String",
1727
+ # enable_global_write_forwarding: false,
1705
1728
  # source_region: "String",
1706
1729
  # }
1707
1730
  #
@@ -2010,6 +2033,10 @@ module Aws::RDS
2010
2033
  # The target backtrack window, in seconds. To disable backtracking,
2011
2034
  # set this value to 0.
2012
2035
  #
2036
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
2037
+ #
2038
+ # </note>
2039
+ #
2013
2040
  # Default: 0
2014
2041
  #
2015
2042
  # Constraints:
@@ -2119,6 +2146,15 @@ module Aws::RDS
2119
2146
  # the Directory Service.
2120
2147
  # @return [String]
2121
2148
  #
2149
+ # @!attribute [rw] enable_global_write_forwarding
2150
+ # A value that indicates whether to enable write operations to be
2151
+ # forwarded from this cluster to the primary cluster in an Aurora
2152
+ # global database. The resulting changes are replicated back to this
2153
+ # cluster. This parameter only applies to DB clusters that are
2154
+ # secondary clusters in an Aurora global database. By default, Aurora
2155
+ # disallows write operations for secondary clusters.
2156
+ # @return [Boolean]
2157
+ #
2122
2158
  # @!attribute [rw] destination_region
2123
2159
  # @return [String]
2124
2160
  #
@@ -2162,8 +2198,10 @@ module Aws::RDS
2162
2198
  :copy_tags_to_snapshot,
2163
2199
  :domain,
2164
2200
  :domain_iam_role_name,
2201
+ :enable_global_write_forwarding,
2165
2202
  :destination_region,
2166
2203
  :source_region)
2204
+ SENSITIVE = []
2167
2205
  include Aws::Structure
2168
2206
  end
2169
2207
 
@@ -2227,6 +2265,7 @@ module Aws::RDS
2227
2265
  :db_parameter_group_family,
2228
2266
  :description,
2229
2267
  :tags)
2268
+ SENSITIVE = []
2230
2269
  include Aws::Structure
2231
2270
  end
2232
2271
 
@@ -2241,6 +2280,7 @@ module Aws::RDS
2241
2280
  #
2242
2281
  class CreateDBClusterParameterGroupResult < Struct.new(
2243
2282
  :db_cluster_parameter_group)
2283
+ SENSITIVE = []
2244
2284
  include Aws::Structure
2245
2285
  end
2246
2286
 
@@ -2255,6 +2295,7 @@ module Aws::RDS
2255
2295
  #
2256
2296
  class CreateDBClusterResult < Struct.new(
2257
2297
  :db_cluster)
2298
+ SENSITIVE = []
2258
2299
  include Aws::Structure
2259
2300
  end
2260
2301
 
@@ -2310,6 +2351,7 @@ module Aws::RDS
2310
2351
  :db_cluster_snapshot_identifier,
2311
2352
  :db_cluster_identifier,
2312
2353
  :tags)
2354
+ SENSITIVE = []
2313
2355
  include Aws::Structure
2314
2356
  end
2315
2357
 
@@ -2324,6 +2366,7 @@ module Aws::RDS
2324
2366
  #
2325
2367
  class CreateDBClusterSnapshotResult < Struct.new(
2326
2368
  :db_cluster_snapshot)
2369
+ SENSITIVE = []
2327
2370
  include Aws::Structure
2328
2371
  end
2329
2372
 
@@ -3008,11 +3051,17 @@ module Aws::RDS
3008
3051
  #
3009
3052
  # @!attribute [rw] publicly_accessible
3010
3053
  # A value that indicates whether the DB instance is publicly
3011
- # accessible. When the DB instance is publicly accessible, it is an
3012
- # Internet-facing instance with a publicly resolvable DNS name, which
3013
- # resolves to a public IP address. When the DB instance isn't
3014
- # publicly accessible, it is an internal instance with a DNS name that
3015
- # resolves to a private IP address.
3054
+ # accessible.
3055
+ #
3056
+ # When the DB instance is publicly accessible, its DNS endpoint
3057
+ # resolves to the private IP address from within the DB instance's
3058
+ # VPC, and to the public IP address from outside of the DB instance's
3059
+ # VPC. Access to the DB instance is ultimately controlled by the
3060
+ # security group it uses, and that public access is not permitted if
3061
+ # the security group assigned to the DB instance doesn't permit it.
3062
+ #
3063
+ # When the DB instance isn't publicly accessible, it is an internal
3064
+ # DB instance with a DNS name that resolves to a private IP address.
3016
3065
  #
3017
3066
  # Default: The default behavior varies depending on whether
3018
3067
  # `DBSubnetGroupName` is specified.
@@ -3338,6 +3387,7 @@ module Aws::RDS
3338
3387
  :processor_features,
3339
3388
  :deletion_protection,
3340
3389
  :max_allocated_storage)
3390
+ SENSITIVE = []
3341
3391
  include Aws::Structure
3342
3392
  end
3343
3393
 
@@ -3526,12 +3576,19 @@ module Aws::RDS
3526
3576
  #
3527
3577
  # @!attribute [rw] publicly_accessible
3528
3578
  # A value that indicates whether the DB instance is publicly
3529
- # accessible. When the DB instance is publicly accessible, it is an
3530
- # Internet-facing instance with a publicly resolvable DNS name, which
3531
- # resolves to a public IP address. When the DB instance isn't
3532
- # publicly accessible, it is an internal instance with a DNS name that
3533
- # resolves to a private IP address. For more information, see
3534
- # CreateDBInstance.
3579
+ # accessible.
3580
+ #
3581
+ # When the DB instance is publicly accessible, its DNS endpoint
3582
+ # resolves to the private IP address from within the DB instance's
3583
+ # VPC, and to the public IP address from outside of the DB instance's
3584
+ # VPC. Access to the DB instance is ultimately controlled by the
3585
+ # security group it uses, and that public access is not permitted if
3586
+ # the security group assigned to the DB instance doesn't permit it.
3587
+ #
3588
+ # When the DB instance isn't publicly accessible, it is an internal
3589
+ # DB instance with a DNS name that resolves to a private IP address.
3590
+ #
3591
+ # For more information, see CreateDBInstance.
3535
3592
  # @return [Boolean]
3536
3593
  #
3537
3594
  # @!attribute [rw] tags
@@ -3849,6 +3906,7 @@ module Aws::RDS
3849
3906
  :domain_iam_role_name,
3850
3907
  :destination_region,
3851
3908
  :source_region)
3909
+ SENSITIVE = []
3852
3910
  include Aws::Structure
3853
3911
  end
3854
3912
 
@@ -3863,6 +3921,7 @@ module Aws::RDS
3863
3921
  #
3864
3922
  class CreateDBInstanceReadReplicaResult < Struct.new(
3865
3923
  :db_instance)
3924
+ SENSITIVE = []
3866
3925
  include Aws::Structure
3867
3926
  end
3868
3927
 
@@ -3877,6 +3936,7 @@ module Aws::RDS
3877
3936
  #
3878
3937
  class CreateDBInstanceResult < Struct.new(
3879
3938
  :db_instance)
3939
+ SENSITIVE = []
3880
3940
  include Aws::Structure
3881
3941
  end
3882
3942
 
@@ -3943,6 +4003,7 @@ module Aws::RDS
3943
4003
  :db_parameter_group_family,
3944
4004
  :description,
3945
4005
  :tags)
4006
+ SENSITIVE = []
3946
4007
  include Aws::Structure
3947
4008
  end
3948
4009
 
@@ -3957,6 +4018,7 @@ module Aws::RDS
3957
4018
  #
3958
4019
  class CreateDBParameterGroupResult < Struct.new(
3959
4020
  :db_parameter_group)
4021
+ SENSITIVE = []
3960
4022
  include Aws::Structure
3961
4023
  end
3962
4024
 
@@ -4063,6 +4125,7 @@ module Aws::RDS
4063
4125
  :idle_client_timeout,
4064
4126
  :debug_logging,
4065
4127
  :tags)
4128
+ SENSITIVE = []
4066
4129
  include Aws::Structure
4067
4130
  end
4068
4131
 
@@ -4074,6 +4137,7 @@ module Aws::RDS
4074
4137
  #
4075
4138
  class CreateDBProxyResponse < Struct.new(
4076
4139
  :db_proxy)
4140
+ SENSITIVE = []
4077
4141
  include Aws::Structure
4078
4142
  end
4079
4143
 
@@ -4122,6 +4186,7 @@ module Aws::RDS
4122
4186
  :db_security_group_name,
4123
4187
  :db_security_group_description,
4124
4188
  :tags)
4189
+ SENSITIVE = []
4125
4190
  include Aws::Structure
4126
4191
  end
4127
4192
 
@@ -4136,6 +4201,7 @@ module Aws::RDS
4136
4201
  #
4137
4202
  class CreateDBSecurityGroupResult < Struct.new(
4138
4203
  :db_security_group)
4204
+ SENSITIVE = []
4139
4205
  include Aws::Structure
4140
4206
  end
4141
4207
 
@@ -4195,6 +4261,7 @@ module Aws::RDS
4195
4261
  :db_snapshot_identifier,
4196
4262
  :db_instance_identifier,
4197
4263
  :tags)
4264
+ SENSITIVE = []
4198
4265
  include Aws::Structure
4199
4266
  end
4200
4267
 
@@ -4209,6 +4276,7 @@ module Aws::RDS
4209
4276
  #
4210
4277
  class CreateDBSnapshotResult < Struct.new(
4211
4278
  :db_snapshot)
4279
+ SENSITIVE = []
4212
4280
  include Aws::Structure
4213
4281
  end
4214
4282
 
@@ -4256,6 +4324,7 @@ module Aws::RDS
4256
4324
  :db_subnet_group_description,
4257
4325
  :subnet_ids,
4258
4326
  :tags)
4327
+ SENSITIVE = []
4259
4328
  include Aws::Structure
4260
4329
  end
4261
4330
 
@@ -4270,6 +4339,7 @@ module Aws::RDS
4270
4339
  #
4271
4340
  class CreateDBSubnetGroupResult < Struct.new(
4272
4341
  :db_subnet_group)
4342
+ SENSITIVE = []
4273
4343
  include Aws::Structure
4274
4344
  end
4275
4345
 
@@ -4373,6 +4443,7 @@ module Aws::RDS
4373
4443
  :source_ids,
4374
4444
  :enabled,
4375
4445
  :tags)
4446
+ SENSITIVE = []
4376
4447
  include Aws::Structure
4377
4448
  end
4378
4449
 
@@ -4385,6 +4456,7 @@ module Aws::RDS
4385
4456
  #
4386
4457
  class CreateEventSubscriptionResult < Struct.new(
4387
4458
  :event_subscription)
4459
+ SENSITIVE = []
4388
4460
  include Aws::Structure
4389
4461
  end
4390
4462
 
@@ -4445,6 +4517,7 @@ module Aws::RDS
4445
4517
  :deletion_protection,
4446
4518
  :database_name,
4447
4519
  :storage_encrypted)
4520
+ SENSITIVE = []
4448
4521
  include Aws::Structure
4449
4522
  end
4450
4523
 
@@ -4456,6 +4529,7 @@ module Aws::RDS
4456
4529
  #
4457
4530
  class CreateGlobalClusterResult < Struct.new(
4458
4531
  :global_cluster)
4532
+ SENSITIVE = []
4459
4533
  include Aws::Structure
4460
4534
  end
4461
4535
 
@@ -4515,6 +4589,7 @@ module Aws::RDS
4515
4589
  :major_engine_version,
4516
4590
  :option_group_description,
4517
4591
  :tags)
4592
+ SENSITIVE = []
4518
4593
  include Aws::Structure
4519
4594
  end
4520
4595
 
@@ -4525,6 +4600,7 @@ module Aws::RDS
4525
4600
  #
4526
4601
  class CreateOptionGroupResult < Struct.new(
4527
4602
  :option_group)
4603
+ SENSITIVE = []
4528
4604
  include Aws::Structure
4529
4605
  end
4530
4606
 
@@ -4565,6 +4641,7 @@ module Aws::RDS
4565
4641
  :custom_availability_zone_name,
4566
4642
  :custom_availability_zone_status,
4567
4643
  :vpn_details)
4644
+ SENSITIVE = []
4568
4645
  include Aws::Structure
4569
4646
  end
4570
4647
 
@@ -4591,6 +4668,7 @@ module Aws::RDS
4591
4668
  class CustomAvailabilityZoneMessage < Struct.new(
4592
4669
  :marker,
4593
4670
  :custom_availability_zones)
4671
+ SENSITIVE = []
4594
4672
  include Aws::Structure
4595
4673
  end
4596
4674
 
@@ -4925,6 +5003,21 @@ module Aws::RDS
4925
5003
  # DB cluster.
4926
5004
  # @return [Array<Types::DomainMembership>]
4927
5005
  #
5006
+ # @!attribute [rw] global_write_forwarding_status
5007
+ # Specifies whether a secondary cluster in an Aurora global database
5008
+ # has write forwarding enabled, not enabled, or is in the process of
5009
+ # enabling it.
5010
+ # @return [String]
5011
+ #
5012
+ # @!attribute [rw] global_write_forwarding_requested
5013
+ # Specifies whether you have requested to enable write forwarding for
5014
+ # a secondary cluster in an Aurora global database. Because write
5015
+ # forwarding takes time to enable, check the value of
5016
+ # `GlobalWriteForwardingStatus` to confirm that the request has
5017
+ # completed before using the write forwarding feature for this
5018
+ # cluster.
5019
+ # @return [Boolean]
5020
+ #
4928
5021
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
4929
5022
  #
4930
5023
  class DBCluster < Struct.new(
@@ -4979,7 +5072,10 @@ module Aws::RDS
4979
5072
  :activity_stream_kinesis_stream_name,
4980
5073
  :copy_tags_to_snapshot,
4981
5074
  :cross_account_clone,
4982
- :domain_memberships)
5075
+ :domain_memberships,
5076
+ :global_write_forwarding_status,
5077
+ :global_write_forwarding_requested)
5078
+ SENSITIVE = []
4983
5079
  include Aws::Structure
4984
5080
  end
4985
5081
 
@@ -5039,6 +5135,7 @@ module Aws::RDS
5039
5135
  :backtracked_from,
5040
5136
  :backtrack_request_creation_time,
5041
5137
  :status)
5138
+ SENSITIVE = []
5042
5139
  include Aws::Structure
5043
5140
  end
5044
5141
 
@@ -5059,6 +5156,7 @@ module Aws::RDS
5059
5156
  class DBClusterBacktrackMessage < Struct.new(
5060
5157
  :marker,
5061
5158
  :db_cluster_backtracks)
5159
+ SENSITIVE = []
5062
5160
  include Aws::Structure
5063
5161
  end
5064
5162
 
@@ -5100,6 +5198,7 @@ module Aws::RDS
5100
5198
  :current_capacity,
5101
5199
  :seconds_before_timeout,
5102
5200
  :timeout_action)
5201
+ SENSITIVE = []
5103
5202
  include Aws::Structure
5104
5203
  end
5105
5204
 
@@ -5180,6 +5279,7 @@ module Aws::RDS
5180
5279
  :static_members,
5181
5280
  :excluded_members,
5182
5281
  :db_cluster_endpoint_arn)
5282
+ SENSITIVE = []
5183
5283
  include Aws::Structure
5184
5284
  end
5185
5285
 
@@ -5207,6 +5307,7 @@ module Aws::RDS
5207
5307
  class DBClusterEndpointMessage < Struct.new(
5208
5308
  :marker,
5209
5309
  :db_cluster_endpoints)
5310
+ SENSITIVE = []
5210
5311
  include Aws::Structure
5211
5312
  end
5212
5313
 
@@ -5256,6 +5357,7 @@ module Aws::RDS
5256
5357
  :is_cluster_writer,
5257
5358
  :db_cluster_parameter_group_status,
5258
5359
  :promotion_tier)
5360
+ SENSITIVE = []
5259
5361
  include Aws::Structure
5260
5362
  end
5261
5363
 
@@ -5276,6 +5378,7 @@ module Aws::RDS
5276
5378
  class DBClusterMessage < Struct.new(
5277
5379
  :marker,
5278
5380
  :db_clusters)
5381
+ SENSITIVE = []
5279
5382
  include Aws::Structure
5280
5383
  end
5281
5384
 
@@ -5300,6 +5403,7 @@ module Aws::RDS
5300
5403
  class DBClusterOptionGroupStatus < Struct.new(
5301
5404
  :db_cluster_option_group_name,
5302
5405
  :status)
5406
+ SENSITIVE = []
5303
5407
  include Aws::Structure
5304
5408
  end
5305
5409
 
@@ -5333,6 +5437,7 @@ module Aws::RDS
5333
5437
  :db_parameter_group_family,
5334
5438
  :description,
5335
5439
  :db_cluster_parameter_group_arn)
5440
+ SENSITIVE = []
5336
5441
  include Aws::Structure
5337
5442
  end
5338
5443
 
@@ -5355,6 +5460,7 @@ module Aws::RDS
5355
5460
  class DBClusterParameterGroupDetails < Struct.new(
5356
5461
  :parameters,
5357
5462
  :marker)
5463
+ SENSITIVE = []
5358
5464
  include Aws::Structure
5359
5465
  end
5360
5466
 
@@ -5378,6 +5484,7 @@ module Aws::RDS
5378
5484
  #
5379
5485
  class DBClusterParameterGroupNameMessage < Struct.new(
5380
5486
  :db_cluster_parameter_group_name)
5487
+ SENSITIVE = []
5381
5488
  include Aws::Structure
5382
5489
  end
5383
5490
 
@@ -5404,6 +5511,7 @@ module Aws::RDS
5404
5511
  class DBClusterParameterGroupsMessage < Struct.new(
5405
5512
  :marker,
5406
5513
  :db_cluster_parameter_groups)
5514
+ SENSITIVE = []
5407
5515
  include Aws::Structure
5408
5516
  end
5409
5517
 
@@ -5449,6 +5557,7 @@ module Aws::RDS
5449
5557
  :role_arn,
5450
5558
  :status,
5451
5559
  :feature_name)
5560
+ SENSITIVE = []
5452
5561
  include Aws::Structure
5453
5562
  end
5454
5563
 
@@ -5592,6 +5701,7 @@ module Aws::RDS
5592
5701
  :db_cluster_snapshot_arn,
5593
5702
  :source_db_cluster_snapshot_arn,
5594
5703
  :iam_database_authentication_enabled)
5704
+ SENSITIVE = []
5595
5705
  include Aws::Structure
5596
5706
  end
5597
5707
 
@@ -5632,6 +5742,7 @@ module Aws::RDS
5632
5742
  class DBClusterSnapshotAttribute < Struct.new(
5633
5743
  :attribute_name,
5634
5744
  :attribute_values)
5745
+ SENSITIVE = []
5635
5746
  include Aws::Structure
5636
5747
  end
5637
5748
 
@@ -5657,6 +5768,7 @@ module Aws::RDS
5657
5768
  class DBClusterSnapshotAttributesResult < Struct.new(
5658
5769
  :db_cluster_snapshot_identifier,
5659
5770
  :db_cluster_snapshot_attributes)
5771
+ SENSITIVE = []
5660
5772
  include Aws::Structure
5661
5773
  end
5662
5774
 
@@ -5679,6 +5791,7 @@ module Aws::RDS
5679
5791
  class DBClusterSnapshotMessage < Struct.new(
5680
5792
  :marker,
5681
5793
  :db_cluster_snapshots)
5794
+ SENSITIVE = []
5682
5795
  include Aws::Structure
5683
5796
  end
5684
5797
 
@@ -5791,6 +5904,7 @@ module Aws::RDS
5791
5904
  :supported_engine_modes,
5792
5905
  :supported_feature_names,
5793
5906
  :status)
5907
+ SENSITIVE = []
5794
5908
  include Aws::Structure
5795
5909
  end
5796
5910
 
@@ -5812,6 +5926,7 @@ module Aws::RDS
5812
5926
  class DBEngineVersionMessage < Struct.new(
5813
5927
  :marker,
5814
5928
  :db_engine_versions)
5929
+ SENSITIVE = []
5815
5930
  include Aws::Structure
5816
5931
  end
5817
5932
 
@@ -5994,11 +6109,19 @@ module Aws::RDS
5994
6109
  # @return [String]
5995
6110
  #
5996
6111
  # @!attribute [rw] publicly_accessible
5997
- # Specifies the accessibility options for the DB instance. A value of
5998
- # true specifies an Internet-facing instance with a publicly
5999
- # resolvable DNS name, which resolves to a public IP address. A value
6000
- # of false specifies an internal instance with a DNS name that
6001
- # resolves to a private IP address.
6112
+ # Specifies the accessibility options for the DB instance.
6113
+ #
6114
+ # When the DB instance is publicly accessible, its DNS endpoint
6115
+ # resolves to the private IP address from within the DB instance's
6116
+ # VPC, and to the public IP address from outside of the DB instance's
6117
+ # VPC. Access to the DB instance is ultimately controlled by the
6118
+ # security group it uses, and that public access is not permitted if
6119
+ # the security group assigned to the DB instance doesn't permit it.
6120
+ #
6121
+ # When the DB instance isn't publicly accessible, it is an internal
6122
+ # DB instance with a DNS name that resolves to a private IP address.
6123
+ #
6124
+ # For more information, see CreateDBInstance.
6002
6125
  # @return [Boolean]
6003
6126
  #
6004
6127
  # @!attribute [rw] status_infos
@@ -6232,6 +6355,7 @@ module Aws::RDS
6232
6355
  :associated_roles,
6233
6356
  :listener_endpoint,
6234
6357
  :max_allocated_storage)
6358
+ SENSITIVE = []
6235
6359
  include Aws::Structure
6236
6360
  end
6237
6361
 
@@ -6389,6 +6513,7 @@ module Aws::RDS
6389
6513
  :kms_key_id,
6390
6514
  :timezone,
6391
6515
  :iam_database_authentication_enabled)
6516
+ SENSITIVE = []
6392
6517
  include Aws::Structure
6393
6518
  end
6394
6519
 
@@ -6410,6 +6535,7 @@ module Aws::RDS
6410
6535
  class DBInstanceAutomatedBackupMessage < Struct.new(
6411
6536
  :marker,
6412
6537
  :db_instance_automated_backups)
6538
+ SENSITIVE = []
6413
6539
  include Aws::Structure
6414
6540
  end
6415
6541
 
@@ -6445,6 +6571,7 @@ module Aws::RDS
6445
6571
  class DBInstanceMessage < Struct.new(
6446
6572
  :marker,
6447
6573
  :db_instances)
6574
+ SENSITIVE = []
6448
6575
  include Aws::Structure
6449
6576
  end
6450
6577
 
@@ -6489,6 +6616,7 @@ module Aws::RDS
6489
6616
  :role_arn,
6490
6617
  :feature_name,
6491
6618
  :status)
6619
+ SENSITIVE = []
6492
6620
  include Aws::Structure
6493
6621
  end
6494
6622
 
@@ -6542,6 +6670,7 @@ module Aws::RDS
6542
6670
  :normal,
6543
6671
  :status,
6544
6672
  :message)
6673
+ SENSITIVE = []
6545
6674
  include Aws::Structure
6546
6675
  end
6547
6676
 
@@ -6581,6 +6710,7 @@ module Aws::RDS
6581
6710
  :db_parameter_group_family,
6582
6711
  :description,
6583
6712
  :db_parameter_group_arn)
6713
+ SENSITIVE = []
6584
6714
  include Aws::Structure
6585
6715
  end
6586
6716
 
@@ -6608,6 +6738,7 @@ module Aws::RDS
6608
6738
  class DBParameterGroupDetails < Struct.new(
6609
6739
  :parameters,
6610
6740
  :marker)
6741
+ SENSITIVE = []
6611
6742
  include Aws::Structure
6612
6743
  end
6613
6744
 
@@ -6622,6 +6753,7 @@ module Aws::RDS
6622
6753
  #
6623
6754
  class DBParameterGroupNameMessage < Struct.new(
6624
6755
  :db_parameter_group_name)
6756
+ SENSITIVE = []
6625
6757
  include Aws::Structure
6626
6758
  end
6627
6759
 
@@ -6668,6 +6800,7 @@ module Aws::RDS
6668
6800
  class DBParameterGroupStatus < Struct.new(
6669
6801
  :db_parameter_group_name,
6670
6802
  :parameter_apply_status)
6803
+ SENSITIVE = []
6671
6804
  include Aws::Structure
6672
6805
  end
6673
6806
 
@@ -6689,14 +6822,10 @@ module Aws::RDS
6689
6822
  class DBParameterGroupsMessage < Struct.new(
6690
6823
  :marker,
6691
6824
  :db_parameter_groups)
6825
+ SENSITIVE = []
6692
6826
  include Aws::Structure
6693
6827
  end
6694
6828
 
6695
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
6696
- # preview release. It is subject to change.
6697
- #
6698
- # </note>
6699
- #
6700
6829
  # The data structure representing a proxy managed by the RDS Proxy.
6701
6830
  #
6702
6831
  # This data type is used as a response element in the
@@ -6799,6 +6928,7 @@ module Aws::RDS
6799
6928
  :debug_logging,
6800
6929
  :created_date,
6801
6930
  :updated_date)
6931
+ SENSITIVE = []
6802
6932
  include Aws::Structure
6803
6933
  end
6804
6934
 
@@ -6823,11 +6953,6 @@ module Aws::RDS
6823
6953
  #
6824
6954
  class DBProxyQuotaExceededFault < Aws::EmptyStructure; end
6825
6955
 
6826
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
6827
- # preview release. It is subject to change.
6828
- #
6829
- # </note>
6830
- #
6831
6956
  # Contains the details for an RDS Proxy target. It represents an RDS DB
6832
6957
  # instance or Aurora DB cluster that the proxy can connect to. One or
6833
6958
  # more targets are associated with an RDS Proxy target group.
@@ -6880,6 +7005,7 @@ module Aws::RDS
6880
7005
  :port,
6881
7006
  :type,
6882
7007
  :target_health)
7008
+ SENSITIVE = []
6883
7009
  include Aws::Structure
6884
7010
  end
6885
7011
 
@@ -6890,11 +7016,6 @@ module Aws::RDS
6890
7016
  #
6891
7017
  class DBProxyTargetAlreadyRegisteredFault < Aws::EmptyStructure; end
6892
7018
 
6893
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
6894
- # preview release. It is subject to change.
6895
- #
6896
- # </note>
6897
- #
6898
7019
  # Represents a set of RDS DB instances, Aurora DB clusters, or both that
6899
7020
  # a proxy can connect to. Currently, each target group is associated
6900
7021
  # with exactly one RDS DB instance or Aurora DB cluster.
@@ -6954,6 +7075,7 @@ module Aws::RDS
6954
7075
  :connection_pool_config,
6955
7076
  :created_date,
6956
7077
  :updated_date)
7078
+ SENSITIVE = []
6957
7079
  include Aws::Structure
6958
7080
  end
6959
7081
 
@@ -7014,6 +7136,7 @@ module Aws::RDS
7014
7136
  :ec2_security_groups,
7015
7137
  :ip_ranges,
7016
7138
  :db_security_group_arn)
7139
+ SENSITIVE = []
7017
7140
  include Aws::Structure
7018
7141
  end
7019
7142
 
@@ -7047,6 +7170,7 @@ module Aws::RDS
7047
7170
  class DBSecurityGroupMembership < Struct.new(
7048
7171
  :db_security_group_name,
7049
7172
  :status)
7173
+ SENSITIVE = []
7050
7174
  include Aws::Structure
7051
7175
  end
7052
7176
 
@@ -7068,6 +7192,7 @@ module Aws::RDS
7068
7192
  class DBSecurityGroupMessage < Struct.new(
7069
7193
  :marker,
7070
7194
  :db_security_groups)
7195
+ SENSITIVE = []
7071
7196
  include Aws::Structure
7072
7197
  end
7073
7198
 
@@ -7105,8 +7230,8 @@ module Aws::RDS
7105
7230
  # @return [String]
7106
7231
  #
7107
7232
  # @!attribute [rw] snapshot_create_time
7108
- # Provides the time when the snapshot was taken, in Universal
7109
- # Coordinated Time (UTC).
7233
+ # Specifies when the snapshot was taken in Coodinated Universal Time
7234
+ # (UTC).
7110
7235
  # @return [Time]
7111
7236
  #
7112
7237
  # @!attribute [rw] engine
@@ -7136,8 +7261,8 @@ module Aws::RDS
7136
7261
  # @return [String]
7137
7262
  #
7138
7263
  # @!attribute [rw] instance_create_time
7139
- # Specifies the time when the snapshot was taken, in Universal
7140
- # Coordinated Time (UTC).
7264
+ # Specifies the time in Coordinated Universal Time (UTC) when the DB
7265
+ # instance, from which the snapshot was taken, was created.
7141
7266
  # @return [Time]
7142
7267
  #
7143
7268
  # @!attribute [rw] master_username
@@ -7255,6 +7380,7 @@ module Aws::RDS
7255
7380
  :iam_database_authentication_enabled,
7256
7381
  :processor_features,
7257
7382
  :dbi_resource_id)
7383
+ SENSITIVE = []
7258
7384
  include Aws::Structure
7259
7385
  end
7260
7386
 
@@ -7294,6 +7420,7 @@ module Aws::RDS
7294
7420
  class DBSnapshotAttribute < Struct.new(
7295
7421
  :attribute_name,
7296
7422
  :attribute_values)
7423
+ SENSITIVE = []
7297
7424
  include Aws::Structure
7298
7425
  end
7299
7426
 
@@ -7318,6 +7445,7 @@ module Aws::RDS
7318
7445
  class DBSnapshotAttributesResult < Struct.new(
7319
7446
  :db_snapshot_identifier,
7320
7447
  :db_snapshot_attributes)
7448
+ SENSITIVE = []
7321
7449
  include Aws::Structure
7322
7450
  end
7323
7451
 
@@ -7339,6 +7467,7 @@ module Aws::RDS
7339
7467
  class DBSnapshotMessage < Struct.new(
7340
7468
  :marker,
7341
7469
  :db_snapshots)
7470
+ SENSITIVE = []
7342
7471
  include Aws::Structure
7343
7472
  end
7344
7473
 
@@ -7386,6 +7515,7 @@ module Aws::RDS
7386
7515
  :subnet_group_status,
7387
7516
  :subnets,
7388
7517
  :db_subnet_group_arn)
7518
+ SENSITIVE = []
7389
7519
  include Aws::Structure
7390
7520
  end
7391
7521
 
@@ -7420,6 +7550,7 @@ module Aws::RDS
7420
7550
  class DBSubnetGroupMessage < Struct.new(
7421
7551
  :marker,
7422
7552
  :db_subnet_groups)
7553
+ SENSITIVE = []
7423
7554
  include Aws::Structure
7424
7555
  end
7425
7556
 
@@ -7472,6 +7603,7 @@ module Aws::RDS
7472
7603
  #
7473
7604
  class DeleteCustomAvailabilityZoneMessage < Struct.new(
7474
7605
  :custom_availability_zone_id)
7606
+ SENSITIVE = []
7475
7607
  include Aws::Structure
7476
7608
  end
7477
7609
 
@@ -7491,6 +7623,7 @@ module Aws::RDS
7491
7623
  #
7492
7624
  class DeleteCustomAvailabilityZoneResult < Struct.new(
7493
7625
  :custom_availability_zone)
7626
+ SENSITIVE = []
7494
7627
  include Aws::Structure
7495
7628
  end
7496
7629
 
@@ -7510,6 +7643,7 @@ module Aws::RDS
7510
7643
  #
7511
7644
  class DeleteDBClusterEndpointMessage < Struct.new(
7512
7645
  :db_cluster_endpoint_identifier)
7646
+ SENSITIVE = []
7513
7647
  include Aws::Structure
7514
7648
  end
7515
7649
 
@@ -7572,6 +7706,7 @@ module Aws::RDS
7572
7706
  :db_cluster_identifier,
7573
7707
  :skip_final_snapshot,
7574
7708
  :final_db_snapshot_identifier)
7709
+ SENSITIVE = []
7575
7710
  include Aws::Structure
7576
7711
  end
7577
7712
 
@@ -7598,6 +7733,7 @@ module Aws::RDS
7598
7733
  #
7599
7734
  class DeleteDBClusterParameterGroupMessage < Struct.new(
7600
7735
  :db_cluster_parameter_group_name)
7736
+ SENSITIVE = []
7601
7737
  include Aws::Structure
7602
7738
  end
7603
7739
 
@@ -7612,6 +7748,7 @@ module Aws::RDS
7612
7748
  #
7613
7749
  class DeleteDBClusterResult < Struct.new(
7614
7750
  :db_cluster)
7751
+ SENSITIVE = []
7615
7752
  include Aws::Structure
7616
7753
  end
7617
7754
 
@@ -7633,6 +7770,7 @@ module Aws::RDS
7633
7770
  #
7634
7771
  class DeleteDBClusterSnapshotMessage < Struct.new(
7635
7772
  :db_cluster_snapshot_identifier)
7773
+ SENSITIVE = []
7636
7774
  include Aws::Structure
7637
7775
  end
7638
7776
 
@@ -7647,6 +7785,7 @@ module Aws::RDS
7647
7785
  #
7648
7786
  class DeleteDBClusterSnapshotResult < Struct.new(
7649
7787
  :db_cluster_snapshot)
7788
+ SENSITIVE = []
7650
7789
  include Aws::Structure
7651
7790
  end
7652
7791
 
@@ -7668,6 +7807,7 @@ module Aws::RDS
7668
7807
  #
7669
7808
  class DeleteDBInstanceAutomatedBackupMessage < Struct.new(
7670
7809
  :dbi_resource_id)
7810
+ SENSITIVE = []
7671
7811
  include Aws::Structure
7672
7812
  end
7673
7813
 
@@ -7681,6 +7821,7 @@ module Aws::RDS
7681
7821
  #
7682
7822
  class DeleteDBInstanceAutomatedBackupResult < Struct.new(
7683
7823
  :db_instance_automated_backup)
7824
+ SENSITIVE = []
7684
7825
  include Aws::Structure
7685
7826
  end
7686
7827
 
@@ -7758,6 +7899,7 @@ module Aws::RDS
7758
7899
  :skip_final_snapshot,
7759
7900
  :final_db_snapshot_identifier,
7760
7901
  :delete_automated_backups)
7902
+ SENSITIVE = []
7761
7903
  include Aws::Structure
7762
7904
  end
7763
7905
 
@@ -7772,6 +7914,7 @@ module Aws::RDS
7772
7914
  #
7773
7915
  class DeleteDBInstanceResult < Struct.new(
7774
7916
  :db_instance)
7917
+ SENSITIVE = []
7775
7918
  include Aws::Structure
7776
7919
  end
7777
7920
 
@@ -7798,6 +7941,7 @@ module Aws::RDS
7798
7941
  #
7799
7942
  class DeleteDBParameterGroupMessage < Struct.new(
7800
7943
  :db_parameter_group_name)
7944
+ SENSITIVE = []
7801
7945
  include Aws::Structure
7802
7946
  end
7803
7947
 
@@ -7816,6 +7960,7 @@ module Aws::RDS
7816
7960
  #
7817
7961
  class DeleteDBProxyRequest < Struct.new(
7818
7962
  :db_proxy_name)
7963
+ SENSITIVE = []
7819
7964
  include Aws::Structure
7820
7965
  end
7821
7966
 
@@ -7828,6 +7973,7 @@ module Aws::RDS
7828
7973
  #
7829
7974
  class DeleteDBProxyResponse < Struct.new(
7830
7975
  :db_proxy)
7976
+ SENSITIVE = []
7831
7977
  include Aws::Structure
7832
7978
  end
7833
7979
 
@@ -7860,6 +8006,7 @@ module Aws::RDS
7860
8006
  #
7861
8007
  class DeleteDBSecurityGroupMessage < Struct.new(
7862
8008
  :db_security_group_name)
8009
+ SENSITIVE = []
7863
8010
  include Aws::Structure
7864
8011
  end
7865
8012
 
@@ -7881,6 +8028,7 @@ module Aws::RDS
7881
8028
  #
7882
8029
  class DeleteDBSnapshotMessage < Struct.new(
7883
8030
  :db_snapshot_identifier)
8031
+ SENSITIVE = []
7884
8032
  include Aws::Structure
7885
8033
  end
7886
8034
 
@@ -7895,6 +8043,7 @@ module Aws::RDS
7895
8043
  #
7896
8044
  class DeleteDBSnapshotResult < Struct.new(
7897
8045
  :db_snapshot)
8046
+ SENSITIVE = []
7898
8047
  include Aws::Structure
7899
8048
  end
7900
8049
 
@@ -7924,6 +8073,7 @@ module Aws::RDS
7924
8073
  #
7925
8074
  class DeleteDBSubnetGroupMessage < Struct.new(
7926
8075
  :db_subnet_group_name)
8076
+ SENSITIVE = []
7927
8077
  include Aws::Structure
7928
8078
  end
7929
8079
 
@@ -7943,6 +8093,7 @@ module Aws::RDS
7943
8093
  #
7944
8094
  class DeleteEventSubscriptionMessage < Struct.new(
7945
8095
  :subscription_name)
8096
+ SENSITIVE = []
7946
8097
  include Aws::Structure
7947
8098
  end
7948
8099
 
@@ -7955,6 +8106,7 @@ module Aws::RDS
7955
8106
  #
7956
8107
  class DeleteEventSubscriptionResult < Struct.new(
7957
8108
  :event_subscription)
8109
+ SENSITIVE = []
7958
8110
  include Aws::Structure
7959
8111
  end
7960
8112
 
@@ -7973,6 +8125,7 @@ module Aws::RDS
7973
8125
  #
7974
8126
  class DeleteGlobalClusterMessage < Struct.new(
7975
8127
  :global_cluster_identifier)
8128
+ SENSITIVE = []
7976
8129
  include Aws::Structure
7977
8130
  end
7978
8131
 
@@ -7984,6 +8137,7 @@ module Aws::RDS
7984
8137
  #
7985
8138
  class DeleteGlobalClusterResult < Struct.new(
7986
8139
  :global_cluster)
8140
+ SENSITIVE = []
7987
8141
  include Aws::Structure
7988
8142
  end
7989
8143
 
@@ -8002,6 +8156,7 @@ module Aws::RDS
8002
8156
  #
8003
8157
  class DeleteInstallationMediaMessage < Struct.new(
8004
8158
  :installation_media_id)
8159
+ SENSITIVE = []
8005
8160
  include Aws::Structure
8006
8161
  end
8007
8162
 
@@ -8024,6 +8179,7 @@ module Aws::RDS
8024
8179
  #
8025
8180
  class DeleteOptionGroupMessage < Struct.new(
8026
8181
  :option_group_name)
8182
+ SENSITIVE = []
8027
8183
  include Aws::Structure
8028
8184
  end
8029
8185
 
@@ -8061,6 +8217,7 @@ module Aws::RDS
8061
8217
  :target_group_name,
8062
8218
  :db_instance_identifiers,
8063
8219
  :db_cluster_identifiers)
8220
+ SENSITIVE = []
8064
8221
  include Aws::Structure
8065
8222
  end
8066
8223
 
@@ -8130,6 +8287,7 @@ module Aws::RDS
8130
8287
  :filters,
8131
8288
  :max_records,
8132
8289
  :marker)
8290
+ SENSITIVE = []
8133
8291
  include Aws::Structure
8134
8292
  end
8135
8293
 
@@ -8182,6 +8340,7 @@ module Aws::RDS
8182
8340
  :filters,
8183
8341
  :max_records,
8184
8342
  :marker)
8343
+ SENSITIVE = []
8185
8344
  include Aws::Structure
8186
8345
  end
8187
8346
 
@@ -8284,6 +8443,7 @@ module Aws::RDS
8284
8443
  :filters,
8285
8444
  :max_records,
8286
8445
  :marker)
8446
+ SENSITIVE = []
8287
8447
  include Aws::Structure
8288
8448
  end
8289
8449
 
@@ -8355,6 +8515,7 @@ module Aws::RDS
8355
8515
  :filters,
8356
8516
  :max_records,
8357
8517
  :marker)
8518
+ SENSITIVE = []
8358
8519
  include Aws::Structure
8359
8520
  end
8360
8521
 
@@ -8414,6 +8575,7 @@ module Aws::RDS
8414
8575
  :filters,
8415
8576
  :max_records,
8416
8577
  :marker)
8578
+ SENSITIVE = []
8417
8579
  include Aws::Structure
8418
8580
  end
8419
8581
 
@@ -8480,6 +8642,7 @@ module Aws::RDS
8480
8642
  :filters,
8481
8643
  :max_records,
8482
8644
  :marker)
8645
+ SENSITIVE = []
8483
8646
  include Aws::Structure
8484
8647
  end
8485
8648
 
@@ -8499,6 +8662,7 @@ module Aws::RDS
8499
8662
  #
8500
8663
  class DescribeDBClusterSnapshotAttributesMessage < Struct.new(
8501
8664
  :db_cluster_snapshot_identifier)
8665
+ SENSITIVE = []
8502
8666
  include Aws::Structure
8503
8667
  end
8504
8668
 
@@ -8516,6 +8680,7 @@ module Aws::RDS
8516
8680
  #
8517
8681
  class DescribeDBClusterSnapshotAttributesResult < Struct.new(
8518
8682
  :db_cluster_snapshot_attributes_result)
8683
+ SENSITIVE = []
8519
8684
  include Aws::Structure
8520
8685
  end
8521
8686
 
@@ -8662,6 +8827,7 @@ module Aws::RDS
8662
8827
  :marker,
8663
8828
  :include_shared,
8664
8829
  :include_public)
8830
+ SENSITIVE = []
8665
8831
  include Aws::Structure
8666
8832
  end
8667
8833
 
@@ -8736,6 +8902,7 @@ module Aws::RDS
8736
8902
  :max_records,
8737
8903
  :marker,
8738
8904
  :include_shared)
8905
+ SENSITIVE = []
8739
8906
  include Aws::Structure
8740
8907
  end
8741
8908
 
@@ -8845,6 +9012,7 @@ module Aws::RDS
8845
9012
  :list_supported_character_sets,
8846
9013
  :list_supported_timezones,
8847
9014
  :include_all)
9015
+ SENSITIVE = []
8848
9016
  include Aws::Structure
8849
9017
  end
8850
9018
 
@@ -8927,6 +9095,7 @@ module Aws::RDS
8927
9095
  :filters,
8928
9096
  :max_records,
8929
9097
  :marker)
9098
+ SENSITIVE = []
8930
9099
  include Aws::Structure
8931
9100
  end
8932
9101
 
@@ -9008,6 +9177,7 @@ module Aws::RDS
9008
9177
  :filters,
9009
9178
  :max_records,
9010
9179
  :marker)
9180
+ SENSITIVE = []
9011
9181
  include Aws::Structure
9012
9182
  end
9013
9183
 
@@ -9031,6 +9201,7 @@ module Aws::RDS
9031
9201
  :log_file_name,
9032
9202
  :last_written,
9033
9203
  :size)
9204
+ SENSITIVE = []
9034
9205
  include Aws::Structure
9035
9206
  end
9036
9207
 
@@ -9105,6 +9276,7 @@ module Aws::RDS
9105
9276
  :filters,
9106
9277
  :max_records,
9107
9278
  :marker)
9279
+ SENSITIVE = []
9108
9280
  include Aws::Structure
9109
9281
  end
9110
9282
 
@@ -9124,6 +9296,7 @@ module Aws::RDS
9124
9296
  class DescribeDBLogFilesResponse < Struct.new(
9125
9297
  :describe_db_log_files,
9126
9298
  :marker)
9299
+ SENSITIVE = []
9127
9300
  include Aws::Structure
9128
9301
  end
9129
9302
 
@@ -9182,6 +9355,7 @@ module Aws::RDS
9182
9355
  :filters,
9183
9356
  :max_records,
9184
9357
  :marker)
9358
+ SENSITIVE = []
9185
9359
  include Aws::Structure
9186
9360
  end
9187
9361
 
@@ -9249,6 +9423,7 @@ module Aws::RDS
9249
9423
  :filters,
9250
9424
  :max_records,
9251
9425
  :marker)
9426
+ SENSITIVE = []
9252
9427
  include Aws::Structure
9253
9428
  end
9254
9429
 
@@ -9299,6 +9474,7 @@ module Aws::RDS
9299
9474
  :filters,
9300
9475
  :marker,
9301
9476
  :max_records)
9477
+ SENSITIVE = []
9302
9478
  include Aws::Structure
9303
9479
  end
9304
9480
 
@@ -9318,6 +9494,7 @@ module Aws::RDS
9318
9494
  class DescribeDBProxiesResponse < Struct.new(
9319
9495
  :db_proxies,
9320
9496
  :marker)
9497
+ SENSITIVE = []
9321
9498
  include Aws::Structure
9322
9499
  end
9323
9500
 
@@ -9374,6 +9551,7 @@ module Aws::RDS
9374
9551
  :filters,
9375
9552
  :marker,
9376
9553
  :max_records)
9554
+ SENSITIVE = []
9377
9555
  include Aws::Structure
9378
9556
  end
9379
9557
 
@@ -9393,6 +9571,7 @@ module Aws::RDS
9393
9571
  class DescribeDBProxyTargetGroupsResponse < Struct.new(
9394
9572
  :target_groups,
9395
9573
  :marker)
9574
+ SENSITIVE = []
9396
9575
  include Aws::Structure
9397
9576
  end
9398
9577
 
@@ -9449,6 +9628,7 @@ module Aws::RDS
9449
9628
  :filters,
9450
9629
  :marker,
9451
9630
  :max_records)
9631
+ SENSITIVE = []
9452
9632
  include Aws::Structure
9453
9633
  end
9454
9634
 
@@ -9468,6 +9648,7 @@ module Aws::RDS
9468
9648
  class DescribeDBProxyTargetsResponse < Struct.new(
9469
9649
  :targets,
9470
9650
  :marker)
9651
+ SENSITIVE = []
9471
9652
  include Aws::Structure
9472
9653
  end
9473
9654
 
@@ -9519,6 +9700,7 @@ module Aws::RDS
9519
9700
  :filters,
9520
9701
  :max_records,
9521
9702
  :marker)
9703
+ SENSITIVE = []
9522
9704
  include Aws::Structure
9523
9705
  end
9524
9706
 
@@ -9537,6 +9719,7 @@ module Aws::RDS
9537
9719
  #
9538
9720
  class DescribeDBSnapshotAttributesMessage < Struct.new(
9539
9721
  :db_snapshot_identifier)
9722
+ SENSITIVE = []
9540
9723
  include Aws::Structure
9541
9724
  end
9542
9725
 
@@ -9553,6 +9736,7 @@ module Aws::RDS
9553
9736
  #
9554
9737
  class DescribeDBSnapshotAttributesResult < Struct.new(
9555
9738
  :db_snapshot_attributes_result)
9739
+ SENSITIVE = []
9556
9740
  include Aws::Structure
9557
9741
  end
9558
9742
 
@@ -9714,6 +9898,7 @@ module Aws::RDS
9714
9898
  :include_shared,
9715
9899
  :include_public,
9716
9900
  :dbi_resource_id)
9901
+ SENSITIVE = []
9717
9902
  include Aws::Structure
9718
9903
  end
9719
9904
 
@@ -9765,6 +9950,7 @@ module Aws::RDS
9765
9950
  :filters,
9766
9951
  :max_records,
9767
9952
  :marker)
9953
+ SENSITIVE = []
9768
9954
  include Aws::Structure
9769
9955
  end
9770
9956
 
@@ -9817,6 +10003,7 @@ module Aws::RDS
9817
10003
  :filters,
9818
10004
  :max_records,
9819
10005
  :marker)
10006
+ SENSITIVE = []
9820
10007
  include Aws::Structure
9821
10008
  end
9822
10009
 
@@ -9829,6 +10016,7 @@ module Aws::RDS
9829
10016
  #
9830
10017
  class DescribeEngineDefaultClusterParametersResult < Struct.new(
9831
10018
  :engine_defaults)
10019
+ SENSITIVE = []
9832
10020
  include Aws::Structure
9833
10021
  end
9834
10022
 
@@ -9880,6 +10068,7 @@ module Aws::RDS
9880
10068
  :filters,
9881
10069
  :max_records,
9882
10070
  :marker)
10071
+ SENSITIVE = []
9883
10072
  include Aws::Structure
9884
10073
  end
9885
10074
 
@@ -9892,6 +10081,7 @@ module Aws::RDS
9892
10081
  #
9893
10082
  class DescribeEngineDefaultParametersResult < Struct.new(
9894
10083
  :engine_defaults)
10084
+ SENSITIVE = []
9895
10085
  include Aws::Structure
9896
10086
  end
9897
10087
 
@@ -9924,6 +10114,7 @@ module Aws::RDS
9924
10114
  class DescribeEventCategoriesMessage < Struct.new(
9925
10115
  :source_type,
9926
10116
  :filters)
10117
+ SENSITIVE = []
9927
10118
  include Aws::Structure
9928
10119
  end
9929
10120
 
@@ -9976,6 +10167,7 @@ module Aws::RDS
9976
10167
  :filters,
9977
10168
  :max_records,
9978
10169
  :marker)
10170
+ SENSITIVE = []
9979
10171
  include Aws::Structure
9980
10172
  end
9981
10173
 
@@ -10096,6 +10288,7 @@ module Aws::RDS
10096
10288
  :filters,
10097
10289
  :max_records,
10098
10290
  :marker)
10291
+ SENSITIVE = []
10099
10292
  include Aws::Structure
10100
10293
  end
10101
10294
 
@@ -10169,6 +10362,7 @@ module Aws::RDS
10169
10362
  :filters,
10170
10363
  :marker,
10171
10364
  :max_records)
10365
+ SENSITIVE = []
10172
10366
  include Aws::Structure
10173
10367
  end
10174
10368
 
@@ -10236,6 +10430,7 @@ module Aws::RDS
10236
10430
  :filters,
10237
10431
  :max_records,
10238
10432
  :marker)
10433
+ SENSITIVE = []
10239
10434
  include Aws::Structure
10240
10435
  end
10241
10436
 
@@ -10294,6 +10489,7 @@ module Aws::RDS
10294
10489
  :filters,
10295
10490
  :max_records,
10296
10491
  :marker)
10492
+ SENSITIVE = []
10297
10493
  include Aws::Structure
10298
10494
  end
10299
10495
 
@@ -10352,6 +10548,7 @@ module Aws::RDS
10352
10548
  :filters,
10353
10549
  :max_records,
10354
10550
  :marker)
10551
+ SENSITIVE = []
10355
10552
  include Aws::Structure
10356
10553
  end
10357
10554
 
@@ -10419,6 +10616,7 @@ module Aws::RDS
10419
10616
  :max_records,
10420
10617
  :engine_name,
10421
10618
  :major_engine_version)
10619
+ SENSITIVE = []
10422
10620
  include Aws::Structure
10423
10621
  end
10424
10622
 
@@ -10510,6 +10708,7 @@ module Aws::RDS
10510
10708
  :filters,
10511
10709
  :max_records,
10512
10710
  :marker)
10711
+ SENSITIVE = []
10513
10712
  include Aws::Structure
10514
10713
  end
10515
10714
 
@@ -10573,6 +10772,7 @@ module Aws::RDS
10573
10772
  :filters,
10574
10773
  :marker,
10575
10774
  :max_records)
10775
+ SENSITIVE = []
10576
10776
  include Aws::Structure
10577
10777
  end
10578
10778
 
@@ -10684,6 +10884,7 @@ module Aws::RDS
10684
10884
  :filters,
10685
10885
  :max_records,
10686
10886
  :marker)
10887
+ SENSITIVE = []
10687
10888
  include Aws::Structure
10688
10889
  end
10689
10890
 
@@ -10783,6 +10984,7 @@ module Aws::RDS
10783
10984
  :filters,
10784
10985
  :max_records,
10785
10986
  :marker)
10987
+ SENSITIVE = []
10786
10988
  include Aws::Structure
10787
10989
  end
10788
10990
 
@@ -10840,6 +11042,7 @@ module Aws::RDS
10840
11042
  :max_records,
10841
11043
  :marker,
10842
11044
  :filters)
11045
+ SENSITIVE = []
10843
11046
  include Aws::Structure
10844
11047
  end
10845
11048
 
@@ -10858,6 +11061,7 @@ module Aws::RDS
10858
11061
  #
10859
11062
  class DescribeValidDBInstanceModificationsMessage < Struct.new(
10860
11063
  :db_instance_identifier)
11064
+ SENSITIVE = []
10861
11065
  include Aws::Structure
10862
11066
  end
10863
11067
 
@@ -10872,6 +11076,7 @@ module Aws::RDS
10872
11076
  #
10873
11077
  class DescribeValidDBInstanceModificationsResult < Struct.new(
10874
11078
  :valid_db_instance_modifications_message)
11079
+ SENSITIVE = []
10875
11080
  include Aws::Structure
10876
11081
  end
10877
11082
 
@@ -10904,6 +11109,7 @@ module Aws::RDS
10904
11109
  :status,
10905
11110
  :fqdn,
10906
11111
  :iam_role_name)
11112
+ SENSITIVE = []
10907
11113
  include Aws::Structure
10908
11114
  end
10909
11115
 
@@ -10928,6 +11134,7 @@ module Aws::RDS
10928
11134
  class DoubleRange < Struct.new(
10929
11135
  :from,
10930
11136
  :to)
11137
+ SENSITIVE = []
10931
11138
  include Aws::Structure
10932
11139
  end
10933
11140
 
@@ -10954,6 +11161,7 @@ module Aws::RDS
10954
11161
  :log_file_data,
10955
11162
  :marker,
10956
11163
  :additional_data_pending)
11164
+ SENSITIVE = []
10957
11165
  include Aws::Structure
10958
11166
  end
10959
11167
 
@@ -11022,6 +11230,7 @@ module Aws::RDS
11022
11230
  :log_file_name,
11023
11231
  :marker,
11024
11232
  :number_of_lines)
11233
+ SENSITIVE = []
11025
11234
  include Aws::Structure
11026
11235
  end
11027
11236
 
@@ -11058,6 +11267,7 @@ module Aws::RDS
11058
11267
  :ec2_security_group_name,
11059
11268
  :ec2_security_group_id,
11060
11269
  :ec2_security_group_owner_id)
11270
+ SENSITIVE = []
11061
11271
  include Aws::Structure
11062
11272
  end
11063
11273
 
@@ -11093,6 +11303,7 @@ module Aws::RDS
11093
11303
  :address,
11094
11304
  :port,
11095
11305
  :hosted_zone_id)
11306
+ SENSITIVE = []
11096
11307
  include Aws::Structure
11097
11308
  end
11098
11309
 
@@ -11121,6 +11332,7 @@ module Aws::RDS
11121
11332
  :db_parameter_group_family,
11122
11333
  :marker,
11123
11334
  :parameters)
11335
+ SENSITIVE = []
11124
11336
  include Aws::Structure
11125
11337
  end
11126
11338
 
@@ -11160,6 +11372,7 @@ module Aws::RDS
11160
11372
  :event_categories,
11161
11373
  :date,
11162
11374
  :source_arn)
11375
+ SENSITIVE = []
11163
11376
  include Aws::Structure
11164
11377
  end
11165
11378
 
@@ -11179,6 +11392,7 @@ module Aws::RDS
11179
11392
  class EventCategoriesMap < Struct.new(
11180
11393
  :source_type,
11181
11394
  :event_categories)
11395
+ SENSITIVE = []
11182
11396
  include Aws::Structure
11183
11397
  end
11184
11398
 
@@ -11192,6 +11406,7 @@ module Aws::RDS
11192
11406
  #
11193
11407
  class EventCategoriesMessage < Struct.new(
11194
11408
  :event_categories_map_list)
11409
+ SENSITIVE = []
11195
11410
  include Aws::Structure
11196
11411
  end
11197
11412
 
@@ -11264,6 +11479,7 @@ module Aws::RDS
11264
11479
  :event_categories_list,
11265
11480
  :enabled,
11266
11481
  :event_subscription_arn)
11482
+ SENSITIVE = []
11267
11483
  include Aws::Structure
11268
11484
  end
11269
11485
 
@@ -11291,6 +11507,7 @@ module Aws::RDS
11291
11507
  class EventSubscriptionsMessage < Struct.new(
11292
11508
  :marker,
11293
11509
  :event_subscriptions_list)
11510
+ SENSITIVE = []
11294
11511
  include Aws::Structure
11295
11512
  end
11296
11513
 
@@ -11312,6 +11529,7 @@ module Aws::RDS
11312
11529
  class EventsMessage < Struct.new(
11313
11530
  :marker,
11314
11531
  :events)
11532
+ SENSITIVE = []
11315
11533
  include Aws::Structure
11316
11534
  end
11317
11535
 
@@ -11421,6 +11639,7 @@ module Aws::RDS
11421
11639
  :total_extracted_data_in_gb,
11422
11640
  :failure_cause,
11423
11641
  :warning_message)
11642
+ SENSITIVE = []
11424
11643
  include Aws::Structure
11425
11644
  end
11426
11645
 
@@ -11451,6 +11670,7 @@ module Aws::RDS
11451
11670
  class ExportTasksMessage < Struct.new(
11452
11671
  :marker,
11453
11672
  :export_tasks)
11673
+ SENSITIVE = []
11454
11674
  include Aws::Structure
11455
11675
  end
11456
11676
 
@@ -11485,6 +11705,7 @@ module Aws::RDS
11485
11705
  class FailoverDBClusterMessage < Struct.new(
11486
11706
  :db_cluster_identifier,
11487
11707
  :target_db_instance_identifier)
11708
+ SENSITIVE = []
11488
11709
  include Aws::Structure
11489
11710
  end
11490
11711
 
@@ -11499,6 +11720,7 @@ module Aws::RDS
11499
11720
  #
11500
11721
  class FailoverDBClusterResult < Struct.new(
11501
11722
  :db_cluster)
11723
+ SENSITIVE = []
11502
11724
  include Aws::Structure
11503
11725
  end
11504
11726
 
@@ -11545,6 +11767,7 @@ module Aws::RDS
11545
11767
  class Filter < Struct.new(
11546
11768
  :name,
11547
11769
  :values)
11770
+ SENSITIVE = []
11548
11771
  include Aws::Structure
11549
11772
  end
11550
11773
 
@@ -11608,6 +11831,7 @@ module Aws::RDS
11608
11831
  :storage_encrypted,
11609
11832
  :deletion_protection,
11610
11833
  :global_cluster_members)
11834
+ SENSITIVE = []
11611
11835
  include Aws::Structure
11612
11836
  end
11613
11837
 
@@ -11633,12 +11857,20 @@ module Aws::RDS
11633
11857
  # which it is associated.
11634
11858
  # @return [Boolean]
11635
11859
  #
11860
+ # @!attribute [rw] global_write_forwarding_status
11861
+ # Specifies whether a secondary cluster in an Aurora global database
11862
+ # has write forwarding enabled, not enabled, or is in the process of
11863
+ # enabling it.
11864
+ # @return [String]
11865
+ #
11636
11866
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterMember AWS API Documentation
11637
11867
  #
11638
11868
  class GlobalClusterMember < Struct.new(
11639
11869
  :db_cluster_arn,
11640
11870
  :readers,
11641
- :is_writer)
11871
+ :is_writer,
11872
+ :global_write_forwarding_status)
11873
+ SENSITIVE = []
11642
11874
  include Aws::Structure
11643
11875
  end
11644
11876
 
@@ -11666,6 +11898,7 @@ module Aws::RDS
11666
11898
  class GlobalClustersMessage < Struct.new(
11667
11899
  :marker,
11668
11900
  :global_clusters)
11901
+ SENSITIVE = []
11669
11902
  include Aws::Structure
11670
11903
  end
11671
11904
 
@@ -11686,6 +11919,7 @@ module Aws::RDS
11686
11919
  class IPRange < Struct.new(
11687
11920
  :status,
11688
11921
  :cidrip)
11922
+ SENSITIVE = []
11689
11923
  include Aws::Structure
11690
11924
  end
11691
11925
 
@@ -11776,6 +12010,7 @@ module Aws::RDS
11776
12010
  :engine_version,
11777
12011
  :engine_installation_media_path,
11778
12012
  :os_installation_media_path)
12013
+ SENSITIVE = []
11779
12014
  include Aws::Structure
11780
12015
  end
11781
12016
 
@@ -11827,6 +12062,7 @@ module Aws::RDS
11827
12062
  :os_installation_media_path,
11828
12063
  :status,
11829
12064
  :failure_cause)
12065
+ SENSITIVE = []
11830
12066
  include Aws::Structure
11831
12067
  end
11832
12068
 
@@ -11848,6 +12084,7 @@ module Aws::RDS
11848
12084
  #
11849
12085
  class InstallationMediaFailureCause < Struct.new(
11850
12086
  :message)
12087
+ SENSITIVE = []
11851
12088
  include Aws::Structure
11852
12089
  end
11853
12090
 
@@ -11867,6 +12104,7 @@ module Aws::RDS
11867
12104
  class InstallationMediaMessage < Struct.new(
11868
12105
  :marker,
11869
12106
  :installation_media)
12107
+ SENSITIVE = []
11870
12108
  include Aws::Structure
11871
12109
  end
11872
12110
 
@@ -12096,6 +12334,7 @@ module Aws::RDS
12096
12334
  class ListTagsForResourceMessage < Struct.new(
12097
12335
  :resource_name,
12098
12336
  :filters)
12337
+ SENSITIVE = []
12099
12338
  include Aws::Structure
12100
12339
  end
12101
12340
 
@@ -12115,6 +12354,7 @@ module Aws::RDS
12115
12354
  class MinimumEngineVersionPerAllowedValue < Struct.new(
12116
12355
  :allowed_value,
12117
12356
  :minimum_engine_version)
12357
+ SENSITIVE = []
12118
12358
  include Aws::Structure
12119
12359
  end
12120
12360
 
@@ -12145,6 +12385,7 @@ module Aws::RDS
12145
12385
  class ModifyCertificatesMessage < Struct.new(
12146
12386
  :certificate_identifier,
12147
12387
  :remove_customer_override)
12388
+ SENSITIVE = []
12148
12389
  include Aws::Structure
12149
12390
  end
12150
12391
 
@@ -12156,6 +12397,7 @@ module Aws::RDS
12156
12397
  #
12157
12398
  class ModifyCertificatesResult < Struct.new(
12158
12399
  :certificate)
12400
+ SENSITIVE = []
12159
12401
  include Aws::Structure
12160
12402
  end
12161
12403
 
@@ -12223,6 +12465,7 @@ module Aws::RDS
12223
12465
  :capacity,
12224
12466
  :seconds_before_timeout,
12225
12467
  :timeout_action)
12468
+ SENSITIVE = []
12226
12469
  include Aws::Structure
12227
12470
  end
12228
12471
 
@@ -12264,6 +12507,7 @@ module Aws::RDS
12264
12507
  :endpoint_type,
12265
12508
  :static_members,
12266
12509
  :excluded_members)
12510
+ SENSITIVE = []
12267
12511
  include Aws::Structure
12268
12512
  end
12269
12513
 
@@ -12303,6 +12547,7 @@ module Aws::RDS
12303
12547
  # deletion_protection: false,
12304
12548
  # enable_http_endpoint: false,
12305
12549
  # copy_tags_to_snapshot: false,
12550
+ # enable_global_write_forwarding: false,
12306
12551
  # }
12307
12552
  #
12308
12553
  # @!attribute [rw] db_cluster_identifier
@@ -12463,6 +12708,10 @@ module Aws::RDS
12463
12708
  # The target backtrack window, in seconds. To disable backtracking,
12464
12709
  # set this value to 0.
12465
12710
  #
12711
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
12712
+ #
12713
+ # </note>
12714
+ #
12466
12715
  # Default: 0
12467
12716
  #
12468
12717
  # Constraints:
@@ -12579,6 +12828,15 @@ module Aws::RDS
12579
12828
  # to snapshots of the DB cluster. The default is not to copy them.
12580
12829
  # @return [Boolean]
12581
12830
  #
12831
+ # @!attribute [rw] enable_global_write_forwarding
12832
+ # A value that indicates whether to enable write operations to be
12833
+ # forwarded from this cluster to the primary cluster in an Aurora
12834
+ # global database. The resulting changes are replicated back to this
12835
+ # cluster. This parameter only applies to DB clusters that are
12836
+ # secondary clusters in an Aurora global database. By default, Aurora
12837
+ # disallows write operations for secondary clusters.
12838
+ # @return [Boolean]
12839
+ #
12582
12840
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
12583
12841
  #
12584
12842
  class ModifyDBClusterMessage < Struct.new(
@@ -12604,7 +12862,9 @@ module Aws::RDS
12604
12862
  :scaling_configuration,
12605
12863
  :deletion_protection,
12606
12864
  :enable_http_endpoint,
12607
- :copy_tags_to_snapshot)
12865
+ :copy_tags_to_snapshot,
12866
+ :enable_global_write_forwarding)
12867
+ SENSITIVE = []
12608
12868
  include Aws::Structure
12609
12869
  end
12610
12870
 
@@ -12643,6 +12903,7 @@ module Aws::RDS
12643
12903
  class ModifyDBClusterParameterGroupMessage < Struct.new(
12644
12904
  :db_cluster_parameter_group_name,
12645
12905
  :parameters)
12906
+ SENSITIVE = []
12646
12907
  include Aws::Structure
12647
12908
  end
12648
12909
 
@@ -12657,6 +12918,7 @@ module Aws::RDS
12657
12918
  #
12658
12919
  class ModifyDBClusterResult < Struct.new(
12659
12920
  :db_cluster)
12921
+ SENSITIVE = []
12660
12922
  include Aws::Structure
12661
12923
  end
12662
12924
 
@@ -12680,6 +12942,11 @@ module Aws::RDS
12680
12942
  #
12681
12943
  # To manage authorization for other AWS accounts to copy or restore a
12682
12944
  # manual DB cluster snapshot, set this value to `restore`.
12945
+ #
12946
+ # <note markdown="1"> To view the list of attributes available to modify, use the
12947
+ # DescribeDBClusterSnapshotAttributes API action.
12948
+ #
12949
+ # </note>
12683
12950
  # @return [String]
12684
12951
  #
12685
12952
  # @!attribute [rw] values_to_add
@@ -12714,6 +12981,7 @@ module Aws::RDS
12714
12981
  :attribute_name,
12715
12982
  :values_to_add,
12716
12983
  :values_to_remove)
12984
+ SENSITIVE = []
12717
12985
  include Aws::Structure
12718
12986
  end
12719
12987
 
@@ -12731,6 +12999,7 @@ module Aws::RDS
12731
12999
  #
12732
13000
  class ModifyDBClusterSnapshotAttributeResult < Struct.new(
12733
13001
  :db_cluster_snapshot_attributes_result)
13002
+ SENSITIVE = []
12734
13003
  include Aws::Structure
12735
13004
  end
12736
13005
 
@@ -13299,11 +13568,17 @@ module Aws::RDS
13299
13568
  #
13300
13569
  # @!attribute [rw] publicly_accessible
13301
13570
  # A value that indicates whether the DB instance is publicly
13302
- # accessible. When the DB instance is publicly accessible, it is an
13303
- # Internet-facing instance with a publicly resolvable DNS name, which
13304
- # resolves to a public IP address. When the DB instance isn't
13305
- # publicly accessible, it is an internal instance with a DNS name that
13306
- # resolves to a private IP address.
13571
+ # accessible.
13572
+ #
13573
+ # When the DB instance is publicly accessible, its DNS endpoint
13574
+ # resolves to the private IP address from within the DB instance's
13575
+ # VPC, and to the public IP address from outside of the DB instance's
13576
+ # VPC. Access to the DB instance is ultimately controlled by the
13577
+ # security group it uses, and that public access is not permitted if
13578
+ # the security group assigned to the DB instance doesn't permit it.
13579
+ #
13580
+ # When the DB instance isn't publicly accessible, it is an internal
13581
+ # DB instance with a DNS name that resolves to a private IP address.
13307
13582
  #
13308
13583
  # `PubliclyAccessible` only applies to DB instances in a VPC. The DB
13309
13584
  # instance must be part of a public subnet and `PubliclyAccessible`
@@ -13501,6 +13776,7 @@ module Aws::RDS
13501
13776
  :deletion_protection,
13502
13777
  :max_allocated_storage,
13503
13778
  :certificate_rotation_restart)
13779
+ SENSITIVE = []
13504
13780
  include Aws::Structure
13505
13781
  end
13506
13782
 
@@ -13515,6 +13791,7 @@ module Aws::RDS
13515
13791
  #
13516
13792
  class ModifyDBInstanceResult < Struct.new(
13517
13793
  :db_instance)
13794
+ SENSITIVE = []
13518
13795
  include Aws::Structure
13519
13796
  end
13520
13797
 
@@ -13573,6 +13850,7 @@ module Aws::RDS
13573
13850
  class ModifyDBParameterGroupMessage < Struct.new(
13574
13851
  :db_parameter_group_name,
13575
13852
  :parameters)
13853
+ SENSITIVE = []
13576
13854
  include Aws::Structure
13577
13855
  end
13578
13856
 
@@ -13656,6 +13934,7 @@ module Aws::RDS
13656
13934
  :debug_logging,
13657
13935
  :role_arn,
13658
13936
  :security_groups)
13937
+ SENSITIVE = []
13659
13938
  include Aws::Structure
13660
13939
  end
13661
13940
 
@@ -13667,6 +13946,7 @@ module Aws::RDS
13667
13946
  #
13668
13947
  class ModifyDBProxyResponse < Struct.new(
13669
13948
  :db_proxy)
13949
+ SENSITIVE = []
13670
13950
  include Aws::Structure
13671
13951
  end
13672
13952
 
@@ -13713,6 +13993,7 @@ module Aws::RDS
13713
13993
  :db_proxy_name,
13714
13994
  :connection_pool_config,
13715
13995
  :new_name)
13996
+ SENSITIVE = []
13716
13997
  include Aws::Structure
13717
13998
  end
13718
13999
 
@@ -13724,6 +14005,7 @@ module Aws::RDS
13724
14005
  #
13725
14006
  class ModifyDBProxyTargetGroupResponse < Struct.new(
13726
14007
  :db_proxy_target_group)
14008
+ SENSITIVE = []
13727
14009
  include Aws::Structure
13728
14010
  end
13729
14011
 
@@ -13746,6 +14028,11 @@ module Aws::RDS
13746
14028
  #
13747
14029
  # To manage authorization for other AWS accounts to copy or restore a
13748
14030
  # manual DB snapshot, set this value to `restore`.
14031
+ #
14032
+ # <note markdown="1"> To view the list of attributes available to modify, use the
14033
+ # DescribeDBSnapshotAttributes API action.
14034
+ #
14035
+ # </note>
13749
14036
  # @return [String]
13750
14037
  #
13751
14038
  # @!attribute [rw] values_to_add
@@ -13779,6 +14066,7 @@ module Aws::RDS
13779
14066
  :attribute_name,
13780
14067
  :values_to_add,
13781
14068
  :values_to_remove)
14069
+ SENSITIVE = []
13782
14070
  include Aws::Structure
13783
14071
  end
13784
14072
 
@@ -13795,6 +14083,7 @@ module Aws::RDS
13795
14083
  #
13796
14084
  class ModifyDBSnapshotAttributeResult < Struct.new(
13797
14085
  :db_snapshot_attributes_result)
14086
+ SENSITIVE = []
13798
14087
  include Aws::Structure
13799
14088
  end
13800
14089
 
@@ -13861,6 +14150,7 @@ module Aws::RDS
13861
14150
  :db_snapshot_identifier,
13862
14151
  :engine_version,
13863
14152
  :option_group_name)
14153
+ SENSITIVE = []
13864
14154
  include Aws::Structure
13865
14155
  end
13866
14156
 
@@ -13875,6 +14165,7 @@ module Aws::RDS
13875
14165
  #
13876
14166
  class ModifyDBSnapshotResult < Struct.new(
13877
14167
  :db_snapshot)
14168
+ SENSITIVE = []
13878
14169
  include Aws::Structure
13879
14170
  end
13880
14171
 
@@ -13911,6 +14202,7 @@ module Aws::RDS
13911
14202
  :db_subnet_group_name,
13912
14203
  :db_subnet_group_description,
13913
14204
  :subnet_ids)
14205
+ SENSITIVE = []
13914
14206
  include Aws::Structure
13915
14207
  end
13916
14208
 
@@ -13925,6 +14217,7 @@ module Aws::RDS
13925
14217
  #
13926
14218
  class ModifyDBSubnetGroupResult < Struct.new(
13927
14219
  :db_subnet_group)
14220
+ SENSITIVE = []
13928
14221
  include Aws::Structure
13929
14222
  end
13930
14223
 
@@ -13982,6 +14275,7 @@ module Aws::RDS
13982
14275
  :source_type,
13983
14276
  :event_categories,
13984
14277
  :enabled)
14278
+ SENSITIVE = []
13985
14279
  include Aws::Structure
13986
14280
  end
13987
14281
 
@@ -13994,6 +14288,7 @@ module Aws::RDS
13994
14288
  #
13995
14289
  class ModifyEventSubscriptionResult < Struct.new(
13996
14290
  :event_subscription)
14291
+ SENSITIVE = []
13997
14292
  include Aws::Structure
13998
14293
  end
13999
14294
 
@@ -14045,6 +14340,7 @@ module Aws::RDS
14045
14340
  :global_cluster_identifier,
14046
14341
  :new_global_cluster_identifier,
14047
14342
  :deletion_protection)
14343
+ SENSITIVE = []
14048
14344
  include Aws::Structure
14049
14345
  end
14050
14346
 
@@ -14056,6 +14352,7 @@ module Aws::RDS
14056
14352
  #
14057
14353
  class ModifyGlobalClusterResult < Struct.new(
14058
14354
  :global_cluster)
14355
+ SENSITIVE = []
14059
14356
  include Aws::Structure
14060
14357
  end
14061
14358
 
@@ -14122,6 +14419,7 @@ module Aws::RDS
14122
14419
  :options_to_include,
14123
14420
  :options_to_remove,
14124
14421
  :apply_immediately)
14422
+ SENSITIVE = []
14125
14423
  include Aws::Structure
14126
14424
  end
14127
14425
 
@@ -14132,6 +14430,7 @@ module Aws::RDS
14132
14430
  #
14133
14431
  class ModifyOptionGroupResult < Struct.new(
14134
14432
  :option_group)
14433
+ SENSITIVE = []
14135
14434
  include Aws::Structure
14136
14435
  end
14137
14436
 
@@ -14187,6 +14486,7 @@ module Aws::RDS
14187
14486
  :option_settings,
14188
14487
  :db_security_group_memberships,
14189
14488
  :vpc_security_group_memberships)
14489
+ SENSITIVE = []
14190
14490
  include Aws::Structure
14191
14491
  end
14192
14492
 
@@ -14251,6 +14551,7 @@ module Aws::RDS
14251
14551
  :db_security_group_memberships,
14252
14552
  :vpc_security_group_memberships,
14253
14553
  :option_settings)
14554
+ SENSITIVE = []
14254
14555
  include Aws::Structure
14255
14556
  end
14256
14557
 
@@ -14306,6 +14607,7 @@ module Aws::RDS
14306
14607
  :allows_vpc_and_non_vpc_instance_memberships,
14307
14608
  :vpc_id,
14308
14609
  :option_group_arn)
14610
+ SENSITIVE = []
14309
14611
  include Aws::Structure
14310
14612
  end
14311
14613
 
@@ -14334,6 +14636,7 @@ module Aws::RDS
14334
14636
  class OptionGroupMembership < Struct.new(
14335
14637
  :option_group_name,
14336
14638
  :status)
14639
+ SENSITIVE = []
14337
14640
  include Aws::Structure
14338
14641
  end
14339
14642
 
@@ -14441,6 +14744,7 @@ module Aws::RDS
14441
14744
  :supports_option_version_downgrade,
14442
14745
  :option_group_option_settings,
14443
14746
  :option_group_option_versions)
14747
+ SENSITIVE = []
14444
14748
  include Aws::Structure
14445
14749
  end
14446
14750
 
@@ -14494,6 +14798,7 @@ module Aws::RDS
14494
14798
  :is_modifiable,
14495
14799
  :is_required,
14496
14800
  :minimum_engine_version_per_allowed_value)
14801
+ SENSITIVE = []
14497
14802
  include Aws::Structure
14498
14803
  end
14499
14804
 
@@ -14512,6 +14817,7 @@ module Aws::RDS
14512
14817
  class OptionGroupOptionsMessage < Struct.new(
14513
14818
  :option_group_options,
14514
14819
  :marker)
14820
+ SENSITIVE = []
14515
14821
  include Aws::Structure
14516
14822
  end
14517
14823
 
@@ -14538,6 +14844,7 @@ module Aws::RDS
14538
14844
  class OptionGroups < Struct.new(
14539
14845
  :option_groups_list,
14540
14846
  :marker)
14847
+ SENSITIVE = []
14541
14848
  include Aws::Structure
14542
14849
  end
14543
14850
 
@@ -14611,6 +14918,7 @@ module Aws::RDS
14611
14918
  :allowed_values,
14612
14919
  :is_modifiable,
14613
14920
  :is_collection)
14921
+ SENSITIVE = []
14614
14922
  include Aws::Structure
14615
14923
  end
14616
14924
 
@@ -14631,6 +14939,7 @@ module Aws::RDS
14631
14939
  class OptionVersion < Struct.new(
14632
14940
  :version,
14633
14941
  :is_default)
14942
+ SENSITIVE = []
14634
14943
  include Aws::Structure
14635
14944
  end
14636
14945
 
@@ -14779,6 +15088,7 @@ module Aws::RDS
14779
15088
  :supported_engine_modes,
14780
15089
  :supports_storage_autoscaling,
14781
15090
  :supports_kerberos_authentication)
15091
+ SENSITIVE = []
14782
15092
  include Aws::Structure
14783
15093
  end
14784
15094
 
@@ -14802,6 +15112,7 @@ module Aws::RDS
14802
15112
  class OrderableDBInstanceOptionsMessage < Struct.new(
14803
15113
  :orderable_db_instance_options,
14804
15114
  :marker)
15115
+ SENSITIVE = []
14805
15116
  include Aws::Structure
14806
15117
  end
14807
15118
 
@@ -14888,6 +15199,7 @@ module Aws::RDS
14888
15199
  :minimum_engine_version,
14889
15200
  :apply_method,
14890
15201
  :supported_engine_modes)
15202
+ SENSITIVE = []
14891
15203
  include Aws::Structure
14892
15204
  end
14893
15205
 
@@ -14911,6 +15223,7 @@ module Aws::RDS
14911
15223
  class PendingCloudwatchLogsExports < Struct.new(
14912
15224
  :log_types_to_enable,
14913
15225
  :log_types_to_disable)
15226
+ SENSITIVE = []
14914
15227
  include Aws::Structure
14915
15228
  end
14916
15229
 
@@ -14962,6 +15275,7 @@ module Aws::RDS
14962
15275
  :opt_in_status,
14963
15276
  :current_apply_date,
14964
15277
  :description)
15278
+ SENSITIVE = []
14965
15279
  include Aws::Structure
14966
15280
  end
14967
15281
 
@@ -14983,6 +15297,7 @@ module Aws::RDS
14983
15297
  class PendingMaintenanceActionsMessage < Struct.new(
14984
15298
  :pending_maintenance_actions,
14985
15299
  :marker)
15300
+ SENSITIVE = []
14986
15301
  include Aws::Structure
14987
15302
  end
14988
15303
 
@@ -15080,6 +15395,7 @@ module Aws::RDS
15080
15395
  :db_subnet_group_name,
15081
15396
  :pending_cloudwatch_logs_exports,
15082
15397
  :processor_features)
15398
+ SENSITIVE = []
15083
15399
  include Aws::Structure
15084
15400
  end
15085
15401
 
@@ -15151,6 +15467,7 @@ module Aws::RDS
15151
15467
  class ProcessorFeature < Struct.new(
15152
15468
  :name,
15153
15469
  :value)
15470
+ SENSITIVE = []
15154
15471
  include Aws::Structure
15155
15472
  end
15156
15473
 
@@ -15178,6 +15495,7 @@ module Aws::RDS
15178
15495
  #
15179
15496
  class PromoteReadReplicaDBClusterMessage < Struct.new(
15180
15497
  :db_cluster_identifier)
15498
+ SENSITIVE = []
15181
15499
  include Aws::Structure
15182
15500
  end
15183
15501
 
@@ -15192,6 +15510,7 @@ module Aws::RDS
15192
15510
  #
15193
15511
  class PromoteReadReplicaDBClusterResult < Struct.new(
15194
15512
  :db_cluster)
15513
+ SENSITIVE = []
15195
15514
  include Aws::Structure
15196
15515
  end
15197
15516
 
@@ -15263,6 +15582,7 @@ module Aws::RDS
15263
15582
  :db_instance_identifier,
15264
15583
  :backup_retention_period,
15265
15584
  :preferred_backup_window)
15585
+ SENSITIVE = []
15266
15586
  include Aws::Structure
15267
15587
  end
15268
15588
 
@@ -15277,6 +15597,7 @@ module Aws::RDS
15277
15597
  #
15278
15598
  class PromoteReadReplicaResult < Struct.new(
15279
15599
  :db_instance)
15600
+ SENSITIVE = []
15280
15601
  include Aws::Structure
15281
15602
  end
15282
15603
 
@@ -15335,6 +15656,7 @@ module Aws::RDS
15335
15656
  :reserved_db_instance_id,
15336
15657
  :db_instance_count,
15337
15658
  :tags)
15659
+ SENSITIVE = []
15338
15660
  include Aws::Structure
15339
15661
  end
15340
15662
 
@@ -15348,6 +15670,7 @@ module Aws::RDS
15348
15670
  #
15349
15671
  class PurchaseReservedDBInstancesOfferingResult < Struct.new(
15350
15672
  :reserved_db_instance)
15673
+ SENSITIVE = []
15351
15674
  include Aws::Structure
15352
15675
  end
15353
15676
 
@@ -15375,6 +15698,7 @@ module Aws::RDS
15375
15698
  :from,
15376
15699
  :to,
15377
15700
  :step)
15701
+ SENSITIVE = []
15378
15702
  include Aws::Structure
15379
15703
  end
15380
15704
 
@@ -15410,6 +15734,7 @@ module Aws::RDS
15410
15734
  class RebootDBInstanceMessage < Struct.new(
15411
15735
  :db_instance_identifier,
15412
15736
  :force_failover)
15737
+ SENSITIVE = []
15413
15738
  include Aws::Structure
15414
15739
  end
15415
15740
 
@@ -15424,6 +15749,7 @@ module Aws::RDS
15424
15749
  #
15425
15750
  class RebootDBInstanceResult < Struct.new(
15426
15751
  :db_instance)
15752
+ SENSITIVE = []
15427
15753
  include Aws::Structure
15428
15754
  end
15429
15755
 
@@ -15444,6 +15770,7 @@ module Aws::RDS
15444
15770
  class RecurringCharge < Struct.new(
15445
15771
  :recurring_charge_amount,
15446
15772
  :recurring_charge_frequency)
15773
+ SENSITIVE = []
15447
15774
  include Aws::Structure
15448
15775
  end
15449
15776
 
@@ -15481,6 +15808,7 @@ module Aws::RDS
15481
15808
  :target_group_name,
15482
15809
  :db_instance_identifiers,
15483
15810
  :db_cluster_identifiers)
15811
+ SENSITIVE = []
15484
15812
  include Aws::Structure
15485
15813
  end
15486
15814
 
@@ -15493,6 +15821,7 @@ module Aws::RDS
15493
15821
  #
15494
15822
  class RegisterDBProxyTargetsResponse < Struct.new(
15495
15823
  :db_proxy_targets)
15824
+ SENSITIVE = []
15496
15825
  include Aws::Structure
15497
15826
  end
15498
15827
 
@@ -15519,6 +15848,7 @@ module Aws::RDS
15519
15848
  class RemoveFromGlobalClusterMessage < Struct.new(
15520
15849
  :global_cluster_identifier,
15521
15850
  :db_cluster_identifier)
15851
+ SENSITIVE = []
15522
15852
  include Aws::Structure
15523
15853
  end
15524
15854
 
@@ -15530,6 +15860,7 @@ module Aws::RDS
15530
15860
  #
15531
15861
  class RemoveFromGlobalClusterResult < Struct.new(
15532
15862
  :global_cluster)
15863
+ SENSITIVE = []
15533
15864
  include Aws::Structure
15534
15865
  end
15535
15866
 
@@ -15564,6 +15895,7 @@ module Aws::RDS
15564
15895
  :db_cluster_identifier,
15565
15896
  :role_arn,
15566
15897
  :feature_name)
15898
+ SENSITIVE = []
15567
15899
  include Aws::Structure
15568
15900
  end
15569
15901
 
@@ -15598,6 +15930,7 @@ module Aws::RDS
15598
15930
  :db_instance_identifier,
15599
15931
  :role_arn,
15600
15932
  :feature_name)
15933
+ SENSITIVE = []
15601
15934
  include Aws::Structure
15602
15935
  end
15603
15936
 
@@ -15625,6 +15958,7 @@ module Aws::RDS
15625
15958
  class RemoveSourceIdentifierFromSubscriptionMessage < Struct.new(
15626
15959
  :subscription_name,
15627
15960
  :source_identifier)
15961
+ SENSITIVE = []
15628
15962
  include Aws::Structure
15629
15963
  end
15630
15964
 
@@ -15637,6 +15971,7 @@ module Aws::RDS
15637
15971
  #
15638
15972
  class RemoveSourceIdentifierFromSubscriptionResult < Struct.new(
15639
15973
  :event_subscription)
15974
+ SENSITIVE = []
15640
15975
  include Aws::Structure
15641
15976
  end
15642
15977
 
@@ -15668,6 +16003,7 @@ module Aws::RDS
15668
16003
  class RemoveTagsFromResourceMessage < Struct.new(
15669
16004
  :resource_name,
15670
16005
  :tag_keys)
16006
+ SENSITIVE = []
15671
16007
  include Aws::Structure
15672
16008
  end
15673
16009
 
@@ -15764,6 +16100,7 @@ module Aws::RDS
15764
16100
  :recurring_charges,
15765
16101
  :reserved_db_instance_arn,
15766
16102
  :lease_id)
16103
+ SENSITIVE = []
15767
16104
  include Aws::Structure
15768
16105
  end
15769
16106
 
@@ -15791,6 +16128,7 @@ module Aws::RDS
15791
16128
  class ReservedDBInstanceMessage < Struct.new(
15792
16129
  :marker,
15793
16130
  :reserved_db_instances)
16131
+ SENSITIVE = []
15794
16132
  include Aws::Structure
15795
16133
  end
15796
16134
 
@@ -15862,6 +16200,7 @@ module Aws::RDS
15862
16200
  :offering_type,
15863
16201
  :multi_az,
15864
16202
  :recurring_charges)
16203
+ SENSITIVE = []
15865
16204
  include Aws::Structure
15866
16205
  end
15867
16206
 
@@ -15883,6 +16222,7 @@ module Aws::RDS
15883
16222
  class ReservedDBInstancesOfferingMessage < Struct.new(
15884
16223
  :marker,
15885
16224
  :reserved_db_instances_offerings)
16225
+ SENSITIVE = []
15886
16226
  include Aws::Structure
15887
16227
  end
15888
16228
 
@@ -15938,6 +16278,7 @@ module Aws::RDS
15938
16278
  :db_cluster_parameter_group_name,
15939
16279
  :reset_all_parameters,
15940
16280
  :parameters)
16281
+ SENSITIVE = []
15941
16282
  include Aws::Structure
15942
16283
  end
15943
16284
 
@@ -16014,6 +16355,7 @@ module Aws::RDS
16014
16355
  :db_parameter_group_name,
16015
16356
  :reset_all_parameters,
16016
16357
  :parameters)
16358
+ SENSITIVE = []
16017
16359
  include Aws::Structure
16018
16360
  end
16019
16361
 
@@ -16039,6 +16381,7 @@ module Aws::RDS
16039
16381
  class ResourcePendingMaintenanceActions < Struct.new(
16040
16382
  :resource_identifier,
16041
16383
  :pending_maintenance_action_details)
16384
+ SENSITIVE = []
16042
16385
  include Aws::Structure
16043
16386
  end
16044
16387
 
@@ -16113,7 +16456,7 @@ module Aws::RDS
16113
16456
  #
16114
16457
  # @!attribute [rw] db_cluster_identifier
16115
16458
  # The name of the DB cluster to create from the source data in the
16116
- # Amazon S3 bucket. This parameter is isn't case-sensitive.
16459
+ # Amazon S3 bucket. This parameter isn't case-sensitive.
16117
16460
  #
16118
16461
  # Constraints:
16119
16462
  #
@@ -16323,9 +16666,9 @@ module Aws::RDS
16323
16666
  # @!attribute [rw] source_engine_version
16324
16667
  # The version of the database that the backup files were created from.
16325
16668
  #
16326
- # MySQL version 5.5 and 5.6 are supported.
16669
+ # MySQL versions 5.5, 5.6, and 5.7 are supported.
16327
16670
  #
16328
- # Example: `5.6.22`
16671
+ # Example: `5.6.40`
16329
16672
  # @return [String]
16330
16673
  #
16331
16674
  # @!attribute [rw] s3_bucket_name
@@ -16350,6 +16693,10 @@ module Aws::RDS
16350
16693
  # The target backtrack window, in seconds. To disable backtracking,
16351
16694
  # set this value to 0.
16352
16695
  #
16696
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
16697
+ #
16698
+ # </note>
16699
+ #
16353
16700
  # Default: 0
16354
16701
  #
16355
16702
  # Constraints:
@@ -16436,6 +16783,7 @@ module Aws::RDS
16436
16783
  :copy_tags_to_snapshot,
16437
16784
  :domain,
16438
16785
  :domain_iam_role_name)
16786
+ SENSITIVE = []
16439
16787
  include Aws::Structure
16440
16788
  end
16441
16789
 
@@ -16450,6 +16798,7 @@ module Aws::RDS
16450
16798
  #
16451
16799
  class RestoreDBClusterFromS3Result < Struct.new(
16452
16800
  :db_cluster)
16801
+ SENSITIVE = []
16453
16802
  include Aws::Structure
16454
16803
  end
16455
16804
 
@@ -16644,6 +16993,10 @@ module Aws::RDS
16644
16993
  # The target backtrack window, in seconds. To disable backtracking,
16645
16994
  # set this value to 0.
16646
16995
  #
16996
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
16997
+ #
16998
+ # </note>
16999
+ #
16647
17000
  # Default: 0
16648
17001
  #
16649
17002
  # Constraints:
@@ -16739,6 +17092,7 @@ module Aws::RDS
16739
17092
  :copy_tags_to_snapshot,
16740
17093
  :domain,
16741
17094
  :domain_iam_role_name)
17095
+ SENSITIVE = []
16742
17096
  include Aws::Structure
16743
17097
  end
16744
17098
 
@@ -16753,6 +17107,7 @@ module Aws::RDS
16753
17107
  #
16754
17108
  class RestoreDBClusterFromSnapshotResult < Struct.new(
16755
17109
  :db_cluster)
17110
+ SENSITIVE = []
16756
17111
  include Aws::Structure
16757
17112
  end
16758
17113
 
@@ -16936,6 +17291,10 @@ module Aws::RDS
16936
17291
  # The target backtrack window, in seconds. To disable backtracking,
16937
17292
  # set this value to 0.
16938
17293
  #
17294
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
17295
+ #
17296
+ # </note>
17297
+ #
16939
17298
  # Default: 0
16940
17299
  #
16941
17300
  # Constraints:
@@ -17027,6 +17386,7 @@ module Aws::RDS
17027
17386
  :copy_tags_to_snapshot,
17028
17387
  :domain,
17029
17388
  :domain_iam_role_name)
17389
+ SENSITIVE = []
17030
17390
  include Aws::Structure
17031
17391
  end
17032
17392
 
@@ -17041,6 +17401,7 @@ module Aws::RDS
17041
17401
  #
17042
17402
  class RestoreDBClusterToPointInTimeResult < Struct.new(
17043
17403
  :db_cluster)
17404
+ SENSITIVE = []
17044
17405
  include Aws::Structure
17045
17406
  end
17046
17407
 
@@ -17166,12 +17527,19 @@ module Aws::RDS
17166
17527
  #
17167
17528
  # @!attribute [rw] publicly_accessible
17168
17529
  # A value that indicates whether the DB instance is publicly
17169
- # accessible. When the DB instance is publicly accessible, it is an
17170
- # Internet-facing instance with a publicly resolvable DNS name, which
17171
- # resolves to a public IP address. When the DB instance isn't
17172
- # publicly accessible, it is an internal instance with a DNS name that
17173
- # resolves to a private IP address. For more information, see
17174
- # CreateDBInstance.
17530
+ # accessible.
17531
+ #
17532
+ # When the DB instance is publicly accessible, its DNS endpoint
17533
+ # resolves to the private IP address from within the DB instance's
17534
+ # VPC, and to the public IP address from outside of the DB instance's
17535
+ # VPC. Access to the DB instance is ultimately controlled by the
17536
+ # security group it uses, and that public access is not permitted if
17537
+ # the security group assigned to the DB instance doesn't permit it.
17538
+ #
17539
+ # When the DB instance isn't publicly accessible, it is an internal
17540
+ # DB instance with a DNS name that resolves to a private IP address.
17541
+ #
17542
+ # For more information, see CreateDBInstance.
17175
17543
  # @return [Boolean]
17176
17544
  #
17177
17545
  # @!attribute [rw] auto_minor_version_upgrade
@@ -17429,6 +17797,7 @@ module Aws::RDS
17429
17797
  :use_default_processor_features,
17430
17798
  :db_parameter_group_name,
17431
17799
  :deletion_protection)
17800
+ SENSITIVE = []
17432
17801
  include Aws::Structure
17433
17802
  end
17434
17803
 
@@ -17443,6 +17812,7 @@ module Aws::RDS
17443
17812
  #
17444
17813
  class RestoreDBInstanceFromDBSnapshotResult < Struct.new(
17445
17814
  :db_instance)
17815
+ SENSITIVE = []
17446
17816
  include Aws::Structure
17447
17817
  end
17448
17818
 
@@ -17719,12 +18089,19 @@ module Aws::RDS
17719
18089
  #
17720
18090
  # @!attribute [rw] publicly_accessible
17721
18091
  # A value that indicates whether the DB instance is publicly
17722
- # accessible. When the DB instance is publicly accessible, it is an
17723
- # Internet-facing instance with a publicly resolvable DNS name, which
17724
- # resolves to a public IP address. When the DB instance isn't
17725
- # publicly accessible, it is an internal instance with a DNS name that
17726
- # resolves to a private IP address. For more information, see
17727
- # CreateDBInstance.
18092
+ # accessible.
18093
+ #
18094
+ # When the DB instance is publicly accessible, its DNS endpoint
18095
+ # resolves to the private IP address from within the DB instance's
18096
+ # VPC, and to the public IP address from outside of the DB instance's
18097
+ # VPC. Access to the DB instance is ultimately controlled by the
18098
+ # security group it uses, and that public access is not permitted if
18099
+ # the security group assigned to the DB instance doesn't permit it.
18100
+ #
18101
+ # When the DB instance isn't publicly accessible, it is an internal
18102
+ # DB instance with a DNS name that resolves to a private IP address.
18103
+ #
18104
+ # For more information, see CreateDBInstance.
17728
18105
  # @return [Boolean]
17729
18106
  #
17730
18107
  # @!attribute [rw] tags
@@ -17824,9 +18201,11 @@ module Aws::RDS
17824
18201
  # @return [String]
17825
18202
  #
17826
18203
  # @!attribute [rw] source_engine_version
17827
- # The engine version of your source database.
18204
+ # The version of the database that the backup files were created from.
18205
+ #
18206
+ # MySQL versions 5.6 and 5.7 are supported.
17828
18207
  #
17829
- # Valid Values: `5.6`
18208
+ # Example: `5.6.40`
17830
18209
  # @return [String]
17831
18210
  #
17832
18211
  # @!attribute [rw] s3_bucket_name
@@ -17949,6 +18328,7 @@ module Aws::RDS
17949
18328
  :processor_features,
17950
18329
  :use_default_processor_features,
17951
18330
  :deletion_protection)
18331
+ SENSITIVE = []
17952
18332
  include Aws::Structure
17953
18333
  end
17954
18334
 
@@ -17963,6 +18343,7 @@ module Aws::RDS
17963
18343
  #
17964
18344
  class RestoreDBInstanceFromS3Result < Struct.new(
17965
18345
  :db_instance)
18346
+ SENSITIVE = []
17966
18347
  include Aws::Structure
17967
18348
  end
17968
18349
 
@@ -18112,12 +18493,19 @@ module Aws::RDS
18112
18493
  #
18113
18494
  # @!attribute [rw] publicly_accessible
18114
18495
  # A value that indicates whether the DB instance is publicly
18115
- # accessible. When the DB instance is publicly accessible, it is an
18116
- # Internet-facing instance with a publicly resolvable DNS name, which
18117
- # resolves to a public IP address. When the DB instance isn't
18118
- # publicly accessible, it is an internal instance with a DNS name that
18119
- # resolves to a private IP address. For more information, see
18120
- # CreateDBInstance.
18496
+ # accessible.
18497
+ #
18498
+ # When the DB instance is publicly accessible, its DNS endpoint
18499
+ # resolves to the private IP address from within the DB instance's
18500
+ # VPC, and to the public IP address from outside of the DB instance's
18501
+ # VPC. Access to the DB instance is ultimately controlled by the
18502
+ # security group it uses, and that public access is not permitted if
18503
+ # the security group assigned to the DB instance doesn't permit it.
18504
+ #
18505
+ # When the DB instance isn't publicly accessible, it is an internal
18506
+ # DB instance with a DNS name that resolves to a private IP address.
18507
+ #
18508
+ # For more information, see CreateDBInstance.
18121
18509
  # @return [Boolean]
18122
18510
  #
18123
18511
  # @!attribute [rw] auto_minor_version_upgrade
@@ -18371,6 +18759,7 @@ module Aws::RDS
18371
18759
  :db_parameter_group_name,
18372
18760
  :deletion_protection,
18373
18761
  :source_dbi_resource_id)
18762
+ SENSITIVE = []
18374
18763
  include Aws::Structure
18375
18764
  end
18376
18765
 
@@ -18385,6 +18774,7 @@ module Aws::RDS
18385
18774
  #
18386
18775
  class RestoreDBInstanceToPointInTimeResult < Struct.new(
18387
18776
  :db_instance)
18777
+ SENSITIVE = []
18388
18778
  include Aws::Structure
18389
18779
  end
18390
18780
 
@@ -18403,6 +18793,7 @@ module Aws::RDS
18403
18793
  class RestoreWindow < Struct.new(
18404
18794
  :earliest_time,
18405
18795
  :latest_time)
18796
+ SENSITIVE = []
18406
18797
  include Aws::Structure
18407
18798
  end
18408
18799
 
@@ -18458,6 +18849,7 @@ module Aws::RDS
18458
18849
  :ec2_security_group_name,
18459
18850
  :ec2_security_group_id,
18460
18851
  :ec2_security_group_owner_id)
18852
+ SENSITIVE = []
18461
18853
  include Aws::Structure
18462
18854
  end
18463
18855
 
@@ -18472,6 +18864,7 @@ module Aws::RDS
18472
18864
  #
18473
18865
  class RevokeDBSecurityGroupIngressResult < Struct.new(
18474
18866
  :db_security_group)
18867
+ SENSITIVE = []
18475
18868
  include Aws::Structure
18476
18869
  end
18477
18870
 
@@ -18588,6 +18981,7 @@ module Aws::RDS
18588
18981
  :auto_pause,
18589
18982
  :seconds_until_auto_pause,
18590
18983
  :timeout_action)
18984
+ SENSITIVE = []
18591
18985
  include Aws::Structure
18592
18986
  end
18593
18987
 
@@ -18638,6 +19032,7 @@ module Aws::RDS
18638
19032
  :auto_pause,
18639
19033
  :seconds_until_auto_pause,
18640
19034
  :timeout_action)
19035
+ SENSITIVE = []
18641
19036
  include Aws::Structure
18642
19037
  end
18643
19038
 
@@ -18682,6 +19077,7 @@ module Aws::RDS
18682
19077
  :region_name,
18683
19078
  :endpoint,
18684
19079
  :status)
19080
+ SENSITIVE = []
18685
19081
  include Aws::Structure
18686
19082
  end
18687
19083
 
@@ -18705,6 +19101,7 @@ module Aws::RDS
18705
19101
  class SourceRegionMessage < Struct.new(
18706
19102
  :marker,
18707
19103
  :source_regions)
19104
+ SENSITIVE = []
18708
19105
  include Aws::Structure
18709
19106
  end
18710
19107
 
@@ -18749,6 +19146,7 @@ module Aws::RDS
18749
19146
  :mode,
18750
19147
  :kms_key_id,
18751
19148
  :apply_immediately)
19149
+ SENSITIVE = []
18752
19150
  include Aws::Structure
18753
19151
  end
18754
19152
 
@@ -18784,6 +19182,7 @@ module Aws::RDS
18784
19182
  :status,
18785
19183
  :mode,
18786
19184
  :apply_immediately)
19185
+ SENSITIVE = []
18787
19186
  include Aws::Structure
18788
19187
  end
18789
19188
 
@@ -18803,6 +19202,7 @@ module Aws::RDS
18803
19202
  #
18804
19203
  class StartDBClusterMessage < Struct.new(
18805
19204
  :db_cluster_identifier)
19205
+ SENSITIVE = []
18806
19206
  include Aws::Structure
18807
19207
  end
18808
19208
 
@@ -18817,6 +19217,7 @@ module Aws::RDS
18817
19217
  #
18818
19218
  class StartDBClusterResult < Struct.new(
18819
19219
  :db_cluster)
19220
+ SENSITIVE = []
18820
19221
  include Aws::Structure
18821
19222
  end
18822
19223
 
@@ -18835,6 +19236,7 @@ module Aws::RDS
18835
19236
  #
18836
19237
  class StartDBInstanceMessage < Struct.new(
18837
19238
  :db_instance_identifier)
19239
+ SENSITIVE = []
18838
19240
  include Aws::Structure
18839
19241
  end
18840
19242
 
@@ -18849,6 +19251,7 @@ module Aws::RDS
18849
19251
  #
18850
19252
  class StartDBInstanceResult < Struct.new(
18851
19253
  :db_instance)
19254
+ SENSITIVE = []
18852
19255
  include Aws::Structure
18853
19256
  end
18854
19257
 
@@ -18928,6 +19331,7 @@ module Aws::RDS
18928
19331
  :kms_key_id,
18929
19332
  :s3_prefix,
18930
19333
  :export_only)
19334
+ SENSITIVE = []
18931
19335
  include Aws::Structure
18932
19336
  end
18933
19337
 
@@ -18956,6 +19360,7 @@ module Aws::RDS
18956
19360
  class StopActivityStreamRequest < Struct.new(
18957
19361
  :resource_arn,
18958
19362
  :apply_immediately)
19363
+ SENSITIVE = []
18959
19364
  include Aws::Structure
18960
19365
  end
18961
19366
 
@@ -18979,6 +19384,7 @@ module Aws::RDS
18979
19384
  :kms_key_id,
18980
19385
  :kinesis_stream_name,
18981
19386
  :status)
19387
+ SENSITIVE = []
18982
19388
  include Aws::Structure
18983
19389
  end
18984
19390
 
@@ -18998,6 +19404,7 @@ module Aws::RDS
18998
19404
  #
18999
19405
  class StopDBClusterMessage < Struct.new(
19000
19406
  :db_cluster_identifier)
19407
+ SENSITIVE = []
19001
19408
  include Aws::Structure
19002
19409
  end
19003
19410
 
@@ -19012,6 +19419,7 @@ module Aws::RDS
19012
19419
  #
19013
19420
  class StopDBClusterResult < Struct.new(
19014
19421
  :db_cluster)
19422
+ SENSITIVE = []
19015
19423
  include Aws::Structure
19016
19424
  end
19017
19425
 
@@ -19037,6 +19445,7 @@ module Aws::RDS
19037
19445
  class StopDBInstanceMessage < Struct.new(
19038
19446
  :db_instance_identifier,
19039
19447
  :db_snapshot_identifier)
19448
+ SENSITIVE = []
19040
19449
  include Aws::Structure
19041
19450
  end
19042
19451
 
@@ -19051,6 +19460,7 @@ module Aws::RDS
19051
19460
  #
19052
19461
  class StopDBInstanceResult < Struct.new(
19053
19462
  :db_instance)
19463
+ SENSITIVE = []
19054
19464
  include Aws::Structure
19055
19465
  end
19056
19466
 
@@ -19092,6 +19502,7 @@ module Aws::RDS
19092
19502
  :subnet_identifier,
19093
19503
  :subnet_availability_zone,
19094
19504
  :subnet_status)
19505
+ SENSITIVE = []
19095
19506
  include Aws::Structure
19096
19507
  end
19097
19508
 
@@ -19153,6 +19564,7 @@ module Aws::RDS
19153
19564
  class Tag < Struct.new(
19154
19565
  :key,
19155
19566
  :value)
19567
+ SENSITIVE = []
19156
19568
  include Aws::Structure
19157
19569
  end
19158
19570
 
@@ -19164,14 +19576,10 @@ module Aws::RDS
19164
19576
  #
19165
19577
  class TagListMessage < Struct.new(
19166
19578
  :tag_list)
19579
+ SENSITIVE = []
19167
19580
  include Aws::Structure
19168
19581
  end
19169
19582
 
19170
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
19171
- # preview release. It is subject to change.
19172
- #
19173
- # </note>
19174
- #
19175
19583
  # Information about the connection health of an RDS Proxy target.
19176
19584
  #
19177
19585
  # @!attribute [rw] state
@@ -19198,6 +19606,7 @@ module Aws::RDS
19198
19606
  :state,
19199
19607
  :reason,
19200
19608
  :description)
19609
+ SENSITIVE = []
19201
19610
  include Aws::Structure
19202
19611
  end
19203
19612
 
@@ -19213,6 +19622,7 @@ module Aws::RDS
19213
19622
  #
19214
19623
  class Timezone < Struct.new(
19215
19624
  :timezone_name)
19625
+ SENSITIVE = []
19216
19626
  include Aws::Structure
19217
19627
  end
19218
19628
 
@@ -19250,14 +19660,10 @@ module Aws::RDS
19250
19660
  :description,
19251
19661
  :auto_upgrade,
19252
19662
  :is_major_version_upgrade)
19663
+ SENSITIVE = []
19253
19664
  include Aws::Structure
19254
19665
  end
19255
19666
 
19256
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
19257
- # preview release. It is subject to change.
19258
- #
19259
- # </note>
19260
- #
19261
19667
  # Specifies the details of authentication used by a proxy to log in as a
19262
19668
  # specific database user.
19263
19669
  #
@@ -19305,14 +19711,10 @@ module Aws::RDS
19305
19711
  :auth_scheme,
19306
19712
  :secret_arn,
19307
19713
  :iam_auth)
19714
+ SENSITIVE = []
19308
19715
  include Aws::Structure
19309
19716
  end
19310
19717
 
19311
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
19312
- # preview release. It is subject to change.
19313
- #
19314
- # </note>
19315
- #
19316
19718
  # Returns the details of authentication used by a proxy to log in as a
19317
19719
  # specific database user.
19318
19720
  #
@@ -19349,6 +19751,7 @@ module Aws::RDS
19349
19751
  :auth_scheme,
19350
19752
  :secret_arn,
19351
19753
  :iam_auth)
19754
+ SENSITIVE = []
19352
19755
  include Aws::Structure
19353
19756
  end
19354
19757
 
@@ -19370,6 +19773,7 @@ module Aws::RDS
19370
19773
  class ValidDBInstanceModificationsMessage < Struct.new(
19371
19774
  :storage,
19372
19775
  :valid_processor_features)
19776
+ SENSITIVE = []
19373
19777
  include Aws::Structure
19374
19778
  end
19375
19779
 
@@ -19408,6 +19812,7 @@ module Aws::RDS
19408
19812
  :provisioned_iops,
19409
19813
  :iops_to_storage_ratio,
19410
19814
  :supports_storage_autoscaling)
19815
+ SENSITIVE = []
19411
19816
  include Aws::Structure
19412
19817
  end
19413
19818
 
@@ -19427,6 +19832,7 @@ module Aws::RDS
19427
19832
  class VpcSecurityGroupMembership < Struct.new(
19428
19833
  :vpc_security_group_id,
19429
19834
  :status)
19835
+ SENSITIVE = []
19430
19836
  include Aws::Structure
19431
19837
  end
19432
19838
 
@@ -19475,6 +19881,7 @@ module Aws::RDS
19475
19881
  :vpn_psk,
19476
19882
  :vpn_name,
19477
19883
  :vpn_state)
19884
+ SENSITIVE = [:vpn_psk]
19478
19885
  include Aws::Structure
19479
19886
  end
19480
19887