aws-sdk-rds 1.84.0 → 1.89.0

Sign up to get free protection for your applications and to get access to all the features.
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 +204 -55
  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 -51
  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,6 +734,7 @@ 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
 
@@ -803,6 +824,7 @@ module Aws::RDS
803
824
  :connection_borrow_timeout,
804
825
  :session_pinning_filters,
805
826
  :init_query)
827
+ SENSITIVE = []
806
828
  include Aws::Structure
807
829
  end
808
830
 
@@ -867,6 +889,7 @@ module Aws::RDS
867
889
  :connection_borrow_timeout,
868
890
  :session_pinning_filters,
869
891
  :init_query)
892
+ SENSITIVE = []
870
893
  include Aws::Structure
871
894
  end
872
895
 
@@ -945,6 +968,7 @@ module Aws::RDS
945
968
  :target_db_cluster_parameter_group_identifier,
946
969
  :target_db_cluster_parameter_group_description,
947
970
  :tags)
971
+ SENSITIVE = []
948
972
  include Aws::Structure
949
973
  end
950
974
 
@@ -959,6 +983,7 @@ module Aws::RDS
959
983
  #
960
984
  class CopyDBClusterParameterGroupResult < Struct.new(
961
985
  :db_cluster_parameter_group)
986
+ SENSITIVE = []
962
987
  include Aws::Structure
963
988
  end
964
989
 
@@ -1130,6 +1155,7 @@ module Aws::RDS
1130
1155
  :tags,
1131
1156
  :destination_region,
1132
1157
  :source_region)
1158
+ SENSITIVE = []
1133
1159
  include Aws::Structure
1134
1160
  end
1135
1161
 
@@ -1144,6 +1170,7 @@ module Aws::RDS
1144
1170
  #
1145
1171
  class CopyDBClusterSnapshotResult < Struct.new(
1146
1172
  :db_cluster_snapshot)
1173
+ SENSITIVE = []
1147
1174
  include Aws::Structure
1148
1175
  end
1149
1176
 
@@ -1215,6 +1242,7 @@ module Aws::RDS
1215
1242
  :target_db_parameter_group_identifier,
1216
1243
  :target_db_parameter_group_description,
1217
1244
  :tags)
1245
+ SENSITIVE = []
1218
1246
  include Aws::Structure
1219
1247
  end
1220
1248
 
@@ -1229,6 +1257,7 @@ module Aws::RDS
1229
1257
  #
1230
1258
  class CopyDBParameterGroupResult < Struct.new(
1231
1259
  :db_parameter_group)
1260
+ SENSITIVE = []
1232
1261
  include Aws::Structure
1233
1262
  end
1234
1263
 
@@ -1431,6 +1460,7 @@ module Aws::RDS
1431
1460
  :option_group_name,
1432
1461
  :destination_region,
1433
1462
  :source_region)
1463
+ SENSITIVE = []
1434
1464
  include Aws::Structure
1435
1465
  end
1436
1466
 
@@ -1445,6 +1475,7 @@ module Aws::RDS
1445
1475
  #
1446
1476
  class CopyDBSnapshotResult < Struct.new(
1447
1477
  :db_snapshot)
1478
+ SENSITIVE = []
1448
1479
  include Aws::Structure
1449
1480
  end
1450
1481
 
@@ -1521,6 +1552,7 @@ module Aws::RDS
1521
1552
  :target_option_group_identifier,
1522
1553
  :target_option_group_description,
1523
1554
  :tags)
1555
+ SENSITIVE = []
1524
1556
  include Aws::Structure
1525
1557
  end
1526
1558
 
@@ -1531,6 +1563,7 @@ module Aws::RDS
1531
1563
  #
1532
1564
  class CopyOptionGroupResult < Struct.new(
1533
1565
  :option_group)
1566
+ SENSITIVE = []
1534
1567
  include Aws::Structure
1535
1568
  end
1536
1569
 
@@ -1574,6 +1607,7 @@ module Aws::RDS
1574
1607
  :existing_vpn_id,
1575
1608
  :new_vpn_tunnel_name,
1576
1609
  :vpn_tunnel_originator_ip)
1610
+ SENSITIVE = []
1577
1611
  include Aws::Structure
1578
1612
  end
1579
1613
 
@@ -1593,6 +1627,7 @@ module Aws::RDS
1593
1627
  #
1594
1628
  class CreateCustomAvailabilityZoneResult < Struct.new(
1595
1629
  :custom_availability_zone)
1630
+ SENSITIVE = []
1596
1631
  include Aws::Structure
1597
1632
  end
1598
1633
 
@@ -1652,6 +1687,7 @@ module Aws::RDS
1652
1687
  :static_members,
1653
1688
  :excluded_members,
1654
1689
  :tags)
1690
+ SENSITIVE = []
1655
1691
  include Aws::Structure
1656
1692
  end
1657
1693
 
@@ -1702,6 +1738,7 @@ module Aws::RDS
1702
1738
  # copy_tags_to_snapshot: false,
1703
1739
  # domain: "String",
1704
1740
  # domain_iam_role_name: "String",
1741
+ # enable_global_write_forwarding: false,
1705
1742
  # source_region: "String",
1706
1743
  # }
1707
1744
  #
@@ -2010,6 +2047,10 @@ module Aws::RDS
2010
2047
  # The target backtrack window, in seconds. To disable backtracking,
2011
2048
  # set this value to 0.
2012
2049
  #
2050
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
2051
+ #
2052
+ # </note>
2053
+ #
2013
2054
  # Default: 0
2014
2055
  #
2015
2056
  # Constraints:
@@ -2119,6 +2160,15 @@ module Aws::RDS
2119
2160
  # the Directory Service.
2120
2161
  # @return [String]
2121
2162
  #
2163
+ # @!attribute [rw] enable_global_write_forwarding
2164
+ # A value that indicates whether to enable write operations to be
2165
+ # forwarded from this cluster to the primary cluster in an Aurora
2166
+ # global database. The resulting changes are replicated back to this
2167
+ # cluster. This parameter only applies to DB clusters that are
2168
+ # secondary clusters in an Aurora global database. By default, Aurora
2169
+ # disallows write operations for secondary clusters.
2170
+ # @return [Boolean]
2171
+ #
2122
2172
  # @!attribute [rw] destination_region
2123
2173
  # @return [String]
2124
2174
  #
@@ -2162,8 +2212,10 @@ module Aws::RDS
2162
2212
  :copy_tags_to_snapshot,
2163
2213
  :domain,
2164
2214
  :domain_iam_role_name,
2215
+ :enable_global_write_forwarding,
2165
2216
  :destination_region,
2166
2217
  :source_region)
2218
+ SENSITIVE = []
2167
2219
  include Aws::Structure
2168
2220
  end
2169
2221
 
@@ -2227,6 +2279,7 @@ module Aws::RDS
2227
2279
  :db_parameter_group_family,
2228
2280
  :description,
2229
2281
  :tags)
2282
+ SENSITIVE = []
2230
2283
  include Aws::Structure
2231
2284
  end
2232
2285
 
@@ -2241,6 +2294,7 @@ module Aws::RDS
2241
2294
  #
2242
2295
  class CreateDBClusterParameterGroupResult < Struct.new(
2243
2296
  :db_cluster_parameter_group)
2297
+ SENSITIVE = []
2244
2298
  include Aws::Structure
2245
2299
  end
2246
2300
 
@@ -2255,6 +2309,7 @@ module Aws::RDS
2255
2309
  #
2256
2310
  class CreateDBClusterResult < Struct.new(
2257
2311
  :db_cluster)
2312
+ SENSITIVE = []
2258
2313
  include Aws::Structure
2259
2314
  end
2260
2315
 
@@ -2310,6 +2365,7 @@ module Aws::RDS
2310
2365
  :db_cluster_snapshot_identifier,
2311
2366
  :db_cluster_identifier,
2312
2367
  :tags)
2368
+ SENSITIVE = []
2313
2369
  include Aws::Structure
2314
2370
  end
2315
2371
 
@@ -2324,6 +2380,7 @@ module Aws::RDS
2324
2380
  #
2325
2381
  class CreateDBClusterSnapshotResult < Struct.new(
2326
2382
  :db_cluster_snapshot)
2383
+ SENSITIVE = []
2327
2384
  include Aws::Structure
2328
2385
  end
2329
2386
 
@@ -3008,11 +3065,17 @@ module Aws::RDS
3008
3065
  #
3009
3066
  # @!attribute [rw] publicly_accessible
3010
3067
  # 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.
3068
+ # accessible.
3069
+ #
3070
+ # When the DB instance is publicly accessible, its DNS endpoint
3071
+ # resolves to the private IP address from within the DB instance's
3072
+ # VPC, and to the public IP address from outside of the DB instance's
3073
+ # VPC. Access to the DB instance is ultimately controlled by the
3074
+ # security group it uses, and that public access is not permitted if
3075
+ # the security group assigned to the DB instance doesn't permit it.
3076
+ #
3077
+ # When the DB instance isn't publicly accessible, it is an internal
3078
+ # DB instance with a DNS name that resolves to a private IP address.
3016
3079
  #
3017
3080
  # Default: The default behavior varies depending on whether
3018
3081
  # `DBSubnetGroupName` is specified.
@@ -3338,6 +3401,7 @@ module Aws::RDS
3338
3401
  :processor_features,
3339
3402
  :deletion_protection,
3340
3403
  :max_allocated_storage)
3404
+ SENSITIVE = []
3341
3405
  include Aws::Structure
3342
3406
  end
3343
3407
 
@@ -3526,12 +3590,19 @@ module Aws::RDS
3526
3590
  #
3527
3591
  # @!attribute [rw] publicly_accessible
3528
3592
  # 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.
3593
+ # accessible.
3594
+ #
3595
+ # When the DB instance is publicly accessible, its DNS endpoint
3596
+ # resolves to the private IP address from within the DB instance's
3597
+ # VPC, and to the public IP address from outside of the DB instance's
3598
+ # VPC. Access to the DB instance is ultimately controlled by the
3599
+ # security group it uses, and that public access is not permitted if
3600
+ # the security group assigned to the DB instance doesn't permit it.
3601
+ #
3602
+ # When the DB instance isn't publicly accessible, it is an internal
3603
+ # DB instance with a DNS name that resolves to a private IP address.
3604
+ #
3605
+ # For more information, see CreateDBInstance.
3535
3606
  # @return [Boolean]
3536
3607
  #
3537
3608
  # @!attribute [rw] tags
@@ -3849,6 +3920,7 @@ module Aws::RDS
3849
3920
  :domain_iam_role_name,
3850
3921
  :destination_region,
3851
3922
  :source_region)
3923
+ SENSITIVE = []
3852
3924
  include Aws::Structure
3853
3925
  end
3854
3926
 
@@ -3863,6 +3935,7 @@ module Aws::RDS
3863
3935
  #
3864
3936
  class CreateDBInstanceReadReplicaResult < Struct.new(
3865
3937
  :db_instance)
3938
+ SENSITIVE = []
3866
3939
  include Aws::Structure
3867
3940
  end
3868
3941
 
@@ -3877,6 +3950,7 @@ module Aws::RDS
3877
3950
  #
3878
3951
  class CreateDBInstanceResult < Struct.new(
3879
3952
  :db_instance)
3953
+ SENSITIVE = []
3880
3954
  include Aws::Structure
3881
3955
  end
3882
3956
 
@@ -3943,6 +4017,7 @@ module Aws::RDS
3943
4017
  :db_parameter_group_family,
3944
4018
  :description,
3945
4019
  :tags)
4020
+ SENSITIVE = []
3946
4021
  include Aws::Structure
3947
4022
  end
3948
4023
 
@@ -3957,6 +4032,7 @@ module Aws::RDS
3957
4032
  #
3958
4033
  class CreateDBParameterGroupResult < Struct.new(
3959
4034
  :db_parameter_group)
4035
+ SENSITIVE = []
3960
4036
  include Aws::Structure
3961
4037
  end
3962
4038
 
@@ -4063,6 +4139,7 @@ module Aws::RDS
4063
4139
  :idle_client_timeout,
4064
4140
  :debug_logging,
4065
4141
  :tags)
4142
+ SENSITIVE = []
4066
4143
  include Aws::Structure
4067
4144
  end
4068
4145
 
@@ -4074,6 +4151,7 @@ module Aws::RDS
4074
4151
  #
4075
4152
  class CreateDBProxyResponse < Struct.new(
4076
4153
  :db_proxy)
4154
+ SENSITIVE = []
4077
4155
  include Aws::Structure
4078
4156
  end
4079
4157
 
@@ -4122,6 +4200,7 @@ module Aws::RDS
4122
4200
  :db_security_group_name,
4123
4201
  :db_security_group_description,
4124
4202
  :tags)
4203
+ SENSITIVE = []
4125
4204
  include Aws::Structure
4126
4205
  end
4127
4206
 
@@ -4136,6 +4215,7 @@ module Aws::RDS
4136
4215
  #
4137
4216
  class CreateDBSecurityGroupResult < Struct.new(
4138
4217
  :db_security_group)
4218
+ SENSITIVE = []
4139
4219
  include Aws::Structure
4140
4220
  end
4141
4221
 
@@ -4195,6 +4275,7 @@ module Aws::RDS
4195
4275
  :db_snapshot_identifier,
4196
4276
  :db_instance_identifier,
4197
4277
  :tags)
4278
+ SENSITIVE = []
4198
4279
  include Aws::Structure
4199
4280
  end
4200
4281
 
@@ -4209,6 +4290,7 @@ module Aws::RDS
4209
4290
  #
4210
4291
  class CreateDBSnapshotResult < Struct.new(
4211
4292
  :db_snapshot)
4293
+ SENSITIVE = []
4212
4294
  include Aws::Structure
4213
4295
  end
4214
4296
 
@@ -4256,6 +4338,7 @@ module Aws::RDS
4256
4338
  :db_subnet_group_description,
4257
4339
  :subnet_ids,
4258
4340
  :tags)
4341
+ SENSITIVE = []
4259
4342
  include Aws::Structure
4260
4343
  end
4261
4344
 
@@ -4270,6 +4353,7 @@ module Aws::RDS
4270
4353
  #
4271
4354
  class CreateDBSubnetGroupResult < Struct.new(
4272
4355
  :db_subnet_group)
4356
+ SENSITIVE = []
4273
4357
  include Aws::Structure
4274
4358
  end
4275
4359
 
@@ -4373,6 +4457,7 @@ module Aws::RDS
4373
4457
  :source_ids,
4374
4458
  :enabled,
4375
4459
  :tags)
4460
+ SENSITIVE = []
4376
4461
  include Aws::Structure
4377
4462
  end
4378
4463
 
@@ -4385,6 +4470,7 @@ module Aws::RDS
4385
4470
  #
4386
4471
  class CreateEventSubscriptionResult < Struct.new(
4387
4472
  :event_subscription)
4473
+ SENSITIVE = []
4388
4474
  include Aws::Structure
4389
4475
  end
4390
4476
 
@@ -4445,6 +4531,7 @@ module Aws::RDS
4445
4531
  :deletion_protection,
4446
4532
  :database_name,
4447
4533
  :storage_encrypted)
4534
+ SENSITIVE = []
4448
4535
  include Aws::Structure
4449
4536
  end
4450
4537
 
@@ -4456,6 +4543,7 @@ module Aws::RDS
4456
4543
  #
4457
4544
  class CreateGlobalClusterResult < Struct.new(
4458
4545
  :global_cluster)
4546
+ SENSITIVE = []
4459
4547
  include Aws::Structure
4460
4548
  end
4461
4549
 
@@ -4515,6 +4603,7 @@ module Aws::RDS
4515
4603
  :major_engine_version,
4516
4604
  :option_group_description,
4517
4605
  :tags)
4606
+ SENSITIVE = []
4518
4607
  include Aws::Structure
4519
4608
  end
4520
4609
 
@@ -4525,6 +4614,7 @@ module Aws::RDS
4525
4614
  #
4526
4615
  class CreateOptionGroupResult < Struct.new(
4527
4616
  :option_group)
4617
+ SENSITIVE = []
4528
4618
  include Aws::Structure
4529
4619
  end
4530
4620
 
@@ -4565,6 +4655,7 @@ module Aws::RDS
4565
4655
  :custom_availability_zone_name,
4566
4656
  :custom_availability_zone_status,
4567
4657
  :vpn_details)
4658
+ SENSITIVE = []
4568
4659
  include Aws::Structure
4569
4660
  end
4570
4661
 
@@ -4591,6 +4682,7 @@ module Aws::RDS
4591
4682
  class CustomAvailabilityZoneMessage < Struct.new(
4592
4683
  :marker,
4593
4684
  :custom_availability_zones)
4685
+ SENSITIVE = []
4594
4686
  include Aws::Structure
4595
4687
  end
4596
4688
 
@@ -4925,6 +5017,21 @@ module Aws::RDS
4925
5017
  # DB cluster.
4926
5018
  # @return [Array<Types::DomainMembership>]
4927
5019
  #
5020
+ # @!attribute [rw] global_write_forwarding_status
5021
+ # Specifies whether a secondary cluster in an Aurora global database
5022
+ # has write forwarding enabled, not enabled, or is in the process of
5023
+ # enabling it.
5024
+ # @return [String]
5025
+ #
5026
+ # @!attribute [rw] global_write_forwarding_requested
5027
+ # Specifies whether you have requested to enable write forwarding for
5028
+ # a secondary cluster in an Aurora global database. Because write
5029
+ # forwarding takes time to enable, check the value of
5030
+ # `GlobalWriteForwardingStatus` to confirm that the request has
5031
+ # completed before using the write forwarding feature for this
5032
+ # cluster.
5033
+ # @return [Boolean]
5034
+ #
4928
5035
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
4929
5036
  #
4930
5037
  class DBCluster < Struct.new(
@@ -4979,7 +5086,10 @@ module Aws::RDS
4979
5086
  :activity_stream_kinesis_stream_name,
4980
5087
  :copy_tags_to_snapshot,
4981
5088
  :cross_account_clone,
4982
- :domain_memberships)
5089
+ :domain_memberships,
5090
+ :global_write_forwarding_status,
5091
+ :global_write_forwarding_requested)
5092
+ SENSITIVE = []
4983
5093
  include Aws::Structure
4984
5094
  end
4985
5095
 
@@ -5039,6 +5149,7 @@ module Aws::RDS
5039
5149
  :backtracked_from,
5040
5150
  :backtrack_request_creation_time,
5041
5151
  :status)
5152
+ SENSITIVE = []
5042
5153
  include Aws::Structure
5043
5154
  end
5044
5155
 
@@ -5059,6 +5170,7 @@ module Aws::RDS
5059
5170
  class DBClusterBacktrackMessage < Struct.new(
5060
5171
  :marker,
5061
5172
  :db_cluster_backtracks)
5173
+ SENSITIVE = []
5062
5174
  include Aws::Structure
5063
5175
  end
5064
5176
 
@@ -5100,6 +5212,7 @@ module Aws::RDS
5100
5212
  :current_capacity,
5101
5213
  :seconds_before_timeout,
5102
5214
  :timeout_action)
5215
+ SENSITIVE = []
5103
5216
  include Aws::Structure
5104
5217
  end
5105
5218
 
@@ -5180,6 +5293,7 @@ module Aws::RDS
5180
5293
  :static_members,
5181
5294
  :excluded_members,
5182
5295
  :db_cluster_endpoint_arn)
5296
+ SENSITIVE = []
5183
5297
  include Aws::Structure
5184
5298
  end
5185
5299
 
@@ -5207,6 +5321,7 @@ module Aws::RDS
5207
5321
  class DBClusterEndpointMessage < Struct.new(
5208
5322
  :marker,
5209
5323
  :db_cluster_endpoints)
5324
+ SENSITIVE = []
5210
5325
  include Aws::Structure
5211
5326
  end
5212
5327
 
@@ -5256,6 +5371,7 @@ module Aws::RDS
5256
5371
  :is_cluster_writer,
5257
5372
  :db_cluster_parameter_group_status,
5258
5373
  :promotion_tier)
5374
+ SENSITIVE = []
5259
5375
  include Aws::Structure
5260
5376
  end
5261
5377
 
@@ -5276,6 +5392,7 @@ module Aws::RDS
5276
5392
  class DBClusterMessage < Struct.new(
5277
5393
  :marker,
5278
5394
  :db_clusters)
5395
+ SENSITIVE = []
5279
5396
  include Aws::Structure
5280
5397
  end
5281
5398
 
@@ -5300,6 +5417,7 @@ module Aws::RDS
5300
5417
  class DBClusterOptionGroupStatus < Struct.new(
5301
5418
  :db_cluster_option_group_name,
5302
5419
  :status)
5420
+ SENSITIVE = []
5303
5421
  include Aws::Structure
5304
5422
  end
5305
5423
 
@@ -5333,6 +5451,7 @@ module Aws::RDS
5333
5451
  :db_parameter_group_family,
5334
5452
  :description,
5335
5453
  :db_cluster_parameter_group_arn)
5454
+ SENSITIVE = []
5336
5455
  include Aws::Structure
5337
5456
  end
5338
5457
 
@@ -5355,6 +5474,7 @@ module Aws::RDS
5355
5474
  class DBClusterParameterGroupDetails < Struct.new(
5356
5475
  :parameters,
5357
5476
  :marker)
5477
+ SENSITIVE = []
5358
5478
  include Aws::Structure
5359
5479
  end
5360
5480
 
@@ -5378,6 +5498,7 @@ module Aws::RDS
5378
5498
  #
5379
5499
  class DBClusterParameterGroupNameMessage < Struct.new(
5380
5500
  :db_cluster_parameter_group_name)
5501
+ SENSITIVE = []
5381
5502
  include Aws::Structure
5382
5503
  end
5383
5504
 
@@ -5404,6 +5525,7 @@ module Aws::RDS
5404
5525
  class DBClusterParameterGroupsMessage < Struct.new(
5405
5526
  :marker,
5406
5527
  :db_cluster_parameter_groups)
5528
+ SENSITIVE = []
5407
5529
  include Aws::Structure
5408
5530
  end
5409
5531
 
@@ -5449,6 +5571,7 @@ module Aws::RDS
5449
5571
  :role_arn,
5450
5572
  :status,
5451
5573
  :feature_name)
5574
+ SENSITIVE = []
5452
5575
  include Aws::Structure
5453
5576
  end
5454
5577
 
@@ -5592,6 +5715,7 @@ module Aws::RDS
5592
5715
  :db_cluster_snapshot_arn,
5593
5716
  :source_db_cluster_snapshot_arn,
5594
5717
  :iam_database_authentication_enabled)
5718
+ SENSITIVE = []
5595
5719
  include Aws::Structure
5596
5720
  end
5597
5721
 
@@ -5632,6 +5756,7 @@ module Aws::RDS
5632
5756
  class DBClusterSnapshotAttribute < Struct.new(
5633
5757
  :attribute_name,
5634
5758
  :attribute_values)
5759
+ SENSITIVE = []
5635
5760
  include Aws::Structure
5636
5761
  end
5637
5762
 
@@ -5657,6 +5782,7 @@ module Aws::RDS
5657
5782
  class DBClusterSnapshotAttributesResult < Struct.new(
5658
5783
  :db_cluster_snapshot_identifier,
5659
5784
  :db_cluster_snapshot_attributes)
5785
+ SENSITIVE = []
5660
5786
  include Aws::Structure
5661
5787
  end
5662
5788
 
@@ -5679,6 +5805,7 @@ module Aws::RDS
5679
5805
  class DBClusterSnapshotMessage < Struct.new(
5680
5806
  :marker,
5681
5807
  :db_cluster_snapshots)
5808
+ SENSITIVE = []
5682
5809
  include Aws::Structure
5683
5810
  end
5684
5811
 
@@ -5791,6 +5918,7 @@ module Aws::RDS
5791
5918
  :supported_engine_modes,
5792
5919
  :supported_feature_names,
5793
5920
  :status)
5921
+ SENSITIVE = []
5794
5922
  include Aws::Structure
5795
5923
  end
5796
5924
 
@@ -5812,6 +5940,7 @@ module Aws::RDS
5812
5940
  class DBEngineVersionMessage < Struct.new(
5813
5941
  :marker,
5814
5942
  :db_engine_versions)
5943
+ SENSITIVE = []
5815
5944
  include Aws::Structure
5816
5945
  end
5817
5946
 
@@ -5994,11 +6123,19 @@ module Aws::RDS
5994
6123
  # @return [String]
5995
6124
  #
5996
6125
  # @!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.
6126
+ # Specifies the accessibility options for the DB instance.
6127
+ #
6128
+ # When the DB instance is publicly accessible, its DNS endpoint
6129
+ # resolves to the private IP address from within the DB instance's
6130
+ # VPC, and to the public IP address from outside of the DB instance's
6131
+ # VPC. Access to the DB instance is ultimately controlled by the
6132
+ # security group it uses, and that public access is not permitted if
6133
+ # the security group assigned to the DB instance doesn't permit it.
6134
+ #
6135
+ # When the DB instance isn't publicly accessible, it is an internal
6136
+ # DB instance with a DNS name that resolves to a private IP address.
6137
+ #
6138
+ # For more information, see CreateDBInstance.
6002
6139
  # @return [Boolean]
6003
6140
  #
6004
6141
  # @!attribute [rw] status_infos
@@ -6232,6 +6369,7 @@ module Aws::RDS
6232
6369
  :associated_roles,
6233
6370
  :listener_endpoint,
6234
6371
  :max_allocated_storage)
6372
+ SENSITIVE = []
6235
6373
  include Aws::Structure
6236
6374
  end
6237
6375
 
@@ -6389,6 +6527,7 @@ module Aws::RDS
6389
6527
  :kms_key_id,
6390
6528
  :timezone,
6391
6529
  :iam_database_authentication_enabled)
6530
+ SENSITIVE = []
6392
6531
  include Aws::Structure
6393
6532
  end
6394
6533
 
@@ -6410,6 +6549,7 @@ module Aws::RDS
6410
6549
  class DBInstanceAutomatedBackupMessage < Struct.new(
6411
6550
  :marker,
6412
6551
  :db_instance_automated_backups)
6552
+ SENSITIVE = []
6413
6553
  include Aws::Structure
6414
6554
  end
6415
6555
 
@@ -6445,6 +6585,7 @@ module Aws::RDS
6445
6585
  class DBInstanceMessage < Struct.new(
6446
6586
  :marker,
6447
6587
  :db_instances)
6588
+ SENSITIVE = []
6448
6589
  include Aws::Structure
6449
6590
  end
6450
6591
 
@@ -6489,6 +6630,7 @@ module Aws::RDS
6489
6630
  :role_arn,
6490
6631
  :feature_name,
6491
6632
  :status)
6633
+ SENSITIVE = []
6492
6634
  include Aws::Structure
6493
6635
  end
6494
6636
 
@@ -6542,6 +6684,7 @@ module Aws::RDS
6542
6684
  :normal,
6543
6685
  :status,
6544
6686
  :message)
6687
+ SENSITIVE = []
6545
6688
  include Aws::Structure
6546
6689
  end
6547
6690
 
@@ -6581,6 +6724,7 @@ module Aws::RDS
6581
6724
  :db_parameter_group_family,
6582
6725
  :description,
6583
6726
  :db_parameter_group_arn)
6727
+ SENSITIVE = []
6584
6728
  include Aws::Structure
6585
6729
  end
6586
6730
 
@@ -6608,6 +6752,7 @@ module Aws::RDS
6608
6752
  class DBParameterGroupDetails < Struct.new(
6609
6753
  :parameters,
6610
6754
  :marker)
6755
+ SENSITIVE = []
6611
6756
  include Aws::Structure
6612
6757
  end
6613
6758
 
@@ -6622,6 +6767,7 @@ module Aws::RDS
6622
6767
  #
6623
6768
  class DBParameterGroupNameMessage < Struct.new(
6624
6769
  :db_parameter_group_name)
6770
+ SENSITIVE = []
6625
6771
  include Aws::Structure
6626
6772
  end
6627
6773
 
@@ -6668,6 +6814,7 @@ module Aws::RDS
6668
6814
  class DBParameterGroupStatus < Struct.new(
6669
6815
  :db_parameter_group_name,
6670
6816
  :parameter_apply_status)
6817
+ SENSITIVE = []
6671
6818
  include Aws::Structure
6672
6819
  end
6673
6820
 
@@ -6689,6 +6836,7 @@ module Aws::RDS
6689
6836
  class DBParameterGroupsMessage < Struct.new(
6690
6837
  :marker,
6691
6838
  :db_parameter_groups)
6839
+ SENSITIVE = []
6692
6840
  include Aws::Structure
6693
6841
  end
6694
6842
 
@@ -6799,6 +6947,7 @@ module Aws::RDS
6799
6947
  :debug_logging,
6800
6948
  :created_date,
6801
6949
  :updated_date)
6950
+ SENSITIVE = []
6802
6951
  include Aws::Structure
6803
6952
  end
6804
6953
 
@@ -6880,6 +7029,7 @@ module Aws::RDS
6880
7029
  :port,
6881
7030
  :type,
6882
7031
  :target_health)
7032
+ SENSITIVE = []
6883
7033
  include Aws::Structure
6884
7034
  end
6885
7035
 
@@ -6954,6 +7104,7 @@ module Aws::RDS
6954
7104
  :connection_pool_config,
6955
7105
  :created_date,
6956
7106
  :updated_date)
7107
+ SENSITIVE = []
6957
7108
  include Aws::Structure
6958
7109
  end
6959
7110
 
@@ -7014,6 +7165,7 @@ module Aws::RDS
7014
7165
  :ec2_security_groups,
7015
7166
  :ip_ranges,
7016
7167
  :db_security_group_arn)
7168
+ SENSITIVE = []
7017
7169
  include Aws::Structure
7018
7170
  end
7019
7171
 
@@ -7047,6 +7199,7 @@ module Aws::RDS
7047
7199
  class DBSecurityGroupMembership < Struct.new(
7048
7200
  :db_security_group_name,
7049
7201
  :status)
7202
+ SENSITIVE = []
7050
7203
  include Aws::Structure
7051
7204
  end
7052
7205
 
@@ -7068,6 +7221,7 @@ module Aws::RDS
7068
7221
  class DBSecurityGroupMessage < Struct.new(
7069
7222
  :marker,
7070
7223
  :db_security_groups)
7224
+ SENSITIVE = []
7071
7225
  include Aws::Structure
7072
7226
  end
7073
7227
 
@@ -7105,8 +7259,8 @@ module Aws::RDS
7105
7259
  # @return [String]
7106
7260
  #
7107
7261
  # @!attribute [rw] snapshot_create_time
7108
- # Provides the time when the snapshot was taken, in Universal
7109
- # Coordinated Time (UTC).
7262
+ # Specifies when the snapshot was taken in Coodinated Universal Time
7263
+ # (UTC).
7110
7264
  # @return [Time]
7111
7265
  #
7112
7266
  # @!attribute [rw] engine
@@ -7136,8 +7290,8 @@ module Aws::RDS
7136
7290
  # @return [String]
7137
7291
  #
7138
7292
  # @!attribute [rw] instance_create_time
7139
- # Specifies the time when the snapshot was taken, in Universal
7140
- # Coordinated Time (UTC).
7293
+ # Specifies the time in Coordinated Universal Time (UTC) when the DB
7294
+ # instance, from which the snapshot was taken, was created.
7141
7295
  # @return [Time]
7142
7296
  #
7143
7297
  # @!attribute [rw] master_username
@@ -7255,6 +7409,7 @@ module Aws::RDS
7255
7409
  :iam_database_authentication_enabled,
7256
7410
  :processor_features,
7257
7411
  :dbi_resource_id)
7412
+ SENSITIVE = []
7258
7413
  include Aws::Structure
7259
7414
  end
7260
7415
 
@@ -7294,6 +7449,7 @@ module Aws::RDS
7294
7449
  class DBSnapshotAttribute < Struct.new(
7295
7450
  :attribute_name,
7296
7451
  :attribute_values)
7452
+ SENSITIVE = []
7297
7453
  include Aws::Structure
7298
7454
  end
7299
7455
 
@@ -7318,6 +7474,7 @@ module Aws::RDS
7318
7474
  class DBSnapshotAttributesResult < Struct.new(
7319
7475
  :db_snapshot_identifier,
7320
7476
  :db_snapshot_attributes)
7477
+ SENSITIVE = []
7321
7478
  include Aws::Structure
7322
7479
  end
7323
7480
 
@@ -7339,6 +7496,7 @@ module Aws::RDS
7339
7496
  class DBSnapshotMessage < Struct.new(
7340
7497
  :marker,
7341
7498
  :db_snapshots)
7499
+ SENSITIVE = []
7342
7500
  include Aws::Structure
7343
7501
  end
7344
7502
 
@@ -7386,6 +7544,7 @@ module Aws::RDS
7386
7544
  :subnet_group_status,
7387
7545
  :subnets,
7388
7546
  :db_subnet_group_arn)
7547
+ SENSITIVE = []
7389
7548
  include Aws::Structure
7390
7549
  end
7391
7550
 
@@ -7420,6 +7579,7 @@ module Aws::RDS
7420
7579
  class DBSubnetGroupMessage < Struct.new(
7421
7580
  :marker,
7422
7581
  :db_subnet_groups)
7582
+ SENSITIVE = []
7423
7583
  include Aws::Structure
7424
7584
  end
7425
7585
 
@@ -7472,6 +7632,7 @@ module Aws::RDS
7472
7632
  #
7473
7633
  class DeleteCustomAvailabilityZoneMessage < Struct.new(
7474
7634
  :custom_availability_zone_id)
7635
+ SENSITIVE = []
7475
7636
  include Aws::Structure
7476
7637
  end
7477
7638
 
@@ -7491,6 +7652,7 @@ module Aws::RDS
7491
7652
  #
7492
7653
  class DeleteCustomAvailabilityZoneResult < Struct.new(
7493
7654
  :custom_availability_zone)
7655
+ SENSITIVE = []
7494
7656
  include Aws::Structure
7495
7657
  end
7496
7658
 
@@ -7510,6 +7672,7 @@ module Aws::RDS
7510
7672
  #
7511
7673
  class DeleteDBClusterEndpointMessage < Struct.new(
7512
7674
  :db_cluster_endpoint_identifier)
7675
+ SENSITIVE = []
7513
7676
  include Aws::Structure
7514
7677
  end
7515
7678
 
@@ -7572,6 +7735,7 @@ module Aws::RDS
7572
7735
  :db_cluster_identifier,
7573
7736
  :skip_final_snapshot,
7574
7737
  :final_db_snapshot_identifier)
7738
+ SENSITIVE = []
7575
7739
  include Aws::Structure
7576
7740
  end
7577
7741
 
@@ -7598,6 +7762,7 @@ module Aws::RDS
7598
7762
  #
7599
7763
  class DeleteDBClusterParameterGroupMessage < Struct.new(
7600
7764
  :db_cluster_parameter_group_name)
7765
+ SENSITIVE = []
7601
7766
  include Aws::Structure
7602
7767
  end
7603
7768
 
@@ -7612,6 +7777,7 @@ module Aws::RDS
7612
7777
  #
7613
7778
  class DeleteDBClusterResult < Struct.new(
7614
7779
  :db_cluster)
7780
+ SENSITIVE = []
7615
7781
  include Aws::Structure
7616
7782
  end
7617
7783
 
@@ -7633,6 +7799,7 @@ module Aws::RDS
7633
7799
  #
7634
7800
  class DeleteDBClusterSnapshotMessage < Struct.new(
7635
7801
  :db_cluster_snapshot_identifier)
7802
+ SENSITIVE = []
7636
7803
  include Aws::Structure
7637
7804
  end
7638
7805
 
@@ -7647,6 +7814,7 @@ module Aws::RDS
7647
7814
  #
7648
7815
  class DeleteDBClusterSnapshotResult < Struct.new(
7649
7816
  :db_cluster_snapshot)
7817
+ SENSITIVE = []
7650
7818
  include Aws::Structure
7651
7819
  end
7652
7820
 
@@ -7668,6 +7836,7 @@ module Aws::RDS
7668
7836
  #
7669
7837
  class DeleteDBInstanceAutomatedBackupMessage < Struct.new(
7670
7838
  :dbi_resource_id)
7839
+ SENSITIVE = []
7671
7840
  include Aws::Structure
7672
7841
  end
7673
7842
 
@@ -7681,6 +7850,7 @@ module Aws::RDS
7681
7850
  #
7682
7851
  class DeleteDBInstanceAutomatedBackupResult < Struct.new(
7683
7852
  :db_instance_automated_backup)
7853
+ SENSITIVE = []
7684
7854
  include Aws::Structure
7685
7855
  end
7686
7856
 
@@ -7758,6 +7928,7 @@ module Aws::RDS
7758
7928
  :skip_final_snapshot,
7759
7929
  :final_db_snapshot_identifier,
7760
7930
  :delete_automated_backups)
7931
+ SENSITIVE = []
7761
7932
  include Aws::Structure
7762
7933
  end
7763
7934
 
@@ -7772,6 +7943,7 @@ module Aws::RDS
7772
7943
  #
7773
7944
  class DeleteDBInstanceResult < Struct.new(
7774
7945
  :db_instance)
7946
+ SENSITIVE = []
7775
7947
  include Aws::Structure
7776
7948
  end
7777
7949
 
@@ -7798,6 +7970,7 @@ module Aws::RDS
7798
7970
  #
7799
7971
  class DeleteDBParameterGroupMessage < Struct.new(
7800
7972
  :db_parameter_group_name)
7973
+ SENSITIVE = []
7801
7974
  include Aws::Structure
7802
7975
  end
7803
7976
 
@@ -7816,6 +7989,7 @@ module Aws::RDS
7816
7989
  #
7817
7990
  class DeleteDBProxyRequest < Struct.new(
7818
7991
  :db_proxy_name)
7992
+ SENSITIVE = []
7819
7993
  include Aws::Structure
7820
7994
  end
7821
7995
 
@@ -7828,6 +8002,7 @@ module Aws::RDS
7828
8002
  #
7829
8003
  class DeleteDBProxyResponse < Struct.new(
7830
8004
  :db_proxy)
8005
+ SENSITIVE = []
7831
8006
  include Aws::Structure
7832
8007
  end
7833
8008
 
@@ -7860,6 +8035,7 @@ module Aws::RDS
7860
8035
  #
7861
8036
  class DeleteDBSecurityGroupMessage < Struct.new(
7862
8037
  :db_security_group_name)
8038
+ SENSITIVE = []
7863
8039
  include Aws::Structure
7864
8040
  end
7865
8041
 
@@ -7881,6 +8057,7 @@ module Aws::RDS
7881
8057
  #
7882
8058
  class DeleteDBSnapshotMessage < Struct.new(
7883
8059
  :db_snapshot_identifier)
8060
+ SENSITIVE = []
7884
8061
  include Aws::Structure
7885
8062
  end
7886
8063
 
@@ -7895,6 +8072,7 @@ module Aws::RDS
7895
8072
  #
7896
8073
  class DeleteDBSnapshotResult < Struct.new(
7897
8074
  :db_snapshot)
8075
+ SENSITIVE = []
7898
8076
  include Aws::Structure
7899
8077
  end
7900
8078
 
@@ -7924,6 +8102,7 @@ module Aws::RDS
7924
8102
  #
7925
8103
  class DeleteDBSubnetGroupMessage < Struct.new(
7926
8104
  :db_subnet_group_name)
8105
+ SENSITIVE = []
7927
8106
  include Aws::Structure
7928
8107
  end
7929
8108
 
@@ -7943,6 +8122,7 @@ module Aws::RDS
7943
8122
  #
7944
8123
  class DeleteEventSubscriptionMessage < Struct.new(
7945
8124
  :subscription_name)
8125
+ SENSITIVE = []
7946
8126
  include Aws::Structure
7947
8127
  end
7948
8128
 
@@ -7955,6 +8135,7 @@ module Aws::RDS
7955
8135
  #
7956
8136
  class DeleteEventSubscriptionResult < Struct.new(
7957
8137
  :event_subscription)
8138
+ SENSITIVE = []
7958
8139
  include Aws::Structure
7959
8140
  end
7960
8141
 
@@ -7973,6 +8154,7 @@ module Aws::RDS
7973
8154
  #
7974
8155
  class DeleteGlobalClusterMessage < Struct.new(
7975
8156
  :global_cluster_identifier)
8157
+ SENSITIVE = []
7976
8158
  include Aws::Structure
7977
8159
  end
7978
8160
 
@@ -7984,6 +8166,7 @@ module Aws::RDS
7984
8166
  #
7985
8167
  class DeleteGlobalClusterResult < Struct.new(
7986
8168
  :global_cluster)
8169
+ SENSITIVE = []
7987
8170
  include Aws::Structure
7988
8171
  end
7989
8172
 
@@ -8002,6 +8185,7 @@ module Aws::RDS
8002
8185
  #
8003
8186
  class DeleteInstallationMediaMessage < Struct.new(
8004
8187
  :installation_media_id)
8188
+ SENSITIVE = []
8005
8189
  include Aws::Structure
8006
8190
  end
8007
8191
 
@@ -8024,6 +8208,7 @@ module Aws::RDS
8024
8208
  #
8025
8209
  class DeleteOptionGroupMessage < Struct.new(
8026
8210
  :option_group_name)
8211
+ SENSITIVE = []
8027
8212
  include Aws::Structure
8028
8213
  end
8029
8214
 
@@ -8061,6 +8246,7 @@ module Aws::RDS
8061
8246
  :target_group_name,
8062
8247
  :db_instance_identifiers,
8063
8248
  :db_cluster_identifiers)
8249
+ SENSITIVE = []
8064
8250
  include Aws::Structure
8065
8251
  end
8066
8252
 
@@ -8130,6 +8316,7 @@ module Aws::RDS
8130
8316
  :filters,
8131
8317
  :max_records,
8132
8318
  :marker)
8319
+ SENSITIVE = []
8133
8320
  include Aws::Structure
8134
8321
  end
8135
8322
 
@@ -8182,6 +8369,7 @@ module Aws::RDS
8182
8369
  :filters,
8183
8370
  :max_records,
8184
8371
  :marker)
8372
+ SENSITIVE = []
8185
8373
  include Aws::Structure
8186
8374
  end
8187
8375
 
@@ -8284,6 +8472,7 @@ module Aws::RDS
8284
8472
  :filters,
8285
8473
  :max_records,
8286
8474
  :marker)
8475
+ SENSITIVE = []
8287
8476
  include Aws::Structure
8288
8477
  end
8289
8478
 
@@ -8355,6 +8544,7 @@ module Aws::RDS
8355
8544
  :filters,
8356
8545
  :max_records,
8357
8546
  :marker)
8547
+ SENSITIVE = []
8358
8548
  include Aws::Structure
8359
8549
  end
8360
8550
 
@@ -8414,6 +8604,7 @@ module Aws::RDS
8414
8604
  :filters,
8415
8605
  :max_records,
8416
8606
  :marker)
8607
+ SENSITIVE = []
8417
8608
  include Aws::Structure
8418
8609
  end
8419
8610
 
@@ -8480,6 +8671,7 @@ module Aws::RDS
8480
8671
  :filters,
8481
8672
  :max_records,
8482
8673
  :marker)
8674
+ SENSITIVE = []
8483
8675
  include Aws::Structure
8484
8676
  end
8485
8677
 
@@ -8499,6 +8691,7 @@ module Aws::RDS
8499
8691
  #
8500
8692
  class DescribeDBClusterSnapshotAttributesMessage < Struct.new(
8501
8693
  :db_cluster_snapshot_identifier)
8694
+ SENSITIVE = []
8502
8695
  include Aws::Structure
8503
8696
  end
8504
8697
 
@@ -8516,6 +8709,7 @@ module Aws::RDS
8516
8709
  #
8517
8710
  class DescribeDBClusterSnapshotAttributesResult < Struct.new(
8518
8711
  :db_cluster_snapshot_attributes_result)
8712
+ SENSITIVE = []
8519
8713
  include Aws::Structure
8520
8714
  end
8521
8715
 
@@ -8662,6 +8856,7 @@ module Aws::RDS
8662
8856
  :marker,
8663
8857
  :include_shared,
8664
8858
  :include_public)
8859
+ SENSITIVE = []
8665
8860
  include Aws::Structure
8666
8861
  end
8667
8862
 
@@ -8736,6 +8931,7 @@ module Aws::RDS
8736
8931
  :max_records,
8737
8932
  :marker,
8738
8933
  :include_shared)
8934
+ SENSITIVE = []
8739
8935
  include Aws::Structure
8740
8936
  end
8741
8937
 
@@ -8845,6 +9041,7 @@ module Aws::RDS
8845
9041
  :list_supported_character_sets,
8846
9042
  :list_supported_timezones,
8847
9043
  :include_all)
9044
+ SENSITIVE = []
8848
9045
  include Aws::Structure
8849
9046
  end
8850
9047
 
@@ -8927,6 +9124,7 @@ module Aws::RDS
8927
9124
  :filters,
8928
9125
  :max_records,
8929
9126
  :marker)
9127
+ SENSITIVE = []
8930
9128
  include Aws::Structure
8931
9129
  end
8932
9130
 
@@ -9008,6 +9206,7 @@ module Aws::RDS
9008
9206
  :filters,
9009
9207
  :max_records,
9010
9208
  :marker)
9209
+ SENSITIVE = []
9011
9210
  include Aws::Structure
9012
9211
  end
9013
9212
 
@@ -9031,6 +9230,7 @@ module Aws::RDS
9031
9230
  :log_file_name,
9032
9231
  :last_written,
9033
9232
  :size)
9233
+ SENSITIVE = []
9034
9234
  include Aws::Structure
9035
9235
  end
9036
9236
 
@@ -9105,6 +9305,7 @@ module Aws::RDS
9105
9305
  :filters,
9106
9306
  :max_records,
9107
9307
  :marker)
9308
+ SENSITIVE = []
9108
9309
  include Aws::Structure
9109
9310
  end
9110
9311
 
@@ -9124,6 +9325,7 @@ module Aws::RDS
9124
9325
  class DescribeDBLogFilesResponse < Struct.new(
9125
9326
  :describe_db_log_files,
9126
9327
  :marker)
9328
+ SENSITIVE = []
9127
9329
  include Aws::Structure
9128
9330
  end
9129
9331
 
@@ -9182,6 +9384,7 @@ module Aws::RDS
9182
9384
  :filters,
9183
9385
  :max_records,
9184
9386
  :marker)
9387
+ SENSITIVE = []
9185
9388
  include Aws::Structure
9186
9389
  end
9187
9390
 
@@ -9249,6 +9452,7 @@ module Aws::RDS
9249
9452
  :filters,
9250
9453
  :max_records,
9251
9454
  :marker)
9455
+ SENSITIVE = []
9252
9456
  include Aws::Structure
9253
9457
  end
9254
9458
 
@@ -9299,6 +9503,7 @@ module Aws::RDS
9299
9503
  :filters,
9300
9504
  :marker,
9301
9505
  :max_records)
9506
+ SENSITIVE = []
9302
9507
  include Aws::Structure
9303
9508
  end
9304
9509
 
@@ -9318,6 +9523,7 @@ module Aws::RDS
9318
9523
  class DescribeDBProxiesResponse < Struct.new(
9319
9524
  :db_proxies,
9320
9525
  :marker)
9526
+ SENSITIVE = []
9321
9527
  include Aws::Structure
9322
9528
  end
9323
9529
 
@@ -9374,6 +9580,7 @@ module Aws::RDS
9374
9580
  :filters,
9375
9581
  :marker,
9376
9582
  :max_records)
9583
+ SENSITIVE = []
9377
9584
  include Aws::Structure
9378
9585
  end
9379
9586
 
@@ -9393,6 +9600,7 @@ module Aws::RDS
9393
9600
  class DescribeDBProxyTargetGroupsResponse < Struct.new(
9394
9601
  :target_groups,
9395
9602
  :marker)
9603
+ SENSITIVE = []
9396
9604
  include Aws::Structure
9397
9605
  end
9398
9606
 
@@ -9449,6 +9657,7 @@ module Aws::RDS
9449
9657
  :filters,
9450
9658
  :marker,
9451
9659
  :max_records)
9660
+ SENSITIVE = []
9452
9661
  include Aws::Structure
9453
9662
  end
9454
9663
 
@@ -9468,6 +9677,7 @@ module Aws::RDS
9468
9677
  class DescribeDBProxyTargetsResponse < Struct.new(
9469
9678
  :targets,
9470
9679
  :marker)
9680
+ SENSITIVE = []
9471
9681
  include Aws::Structure
9472
9682
  end
9473
9683
 
@@ -9519,6 +9729,7 @@ module Aws::RDS
9519
9729
  :filters,
9520
9730
  :max_records,
9521
9731
  :marker)
9732
+ SENSITIVE = []
9522
9733
  include Aws::Structure
9523
9734
  end
9524
9735
 
@@ -9537,6 +9748,7 @@ module Aws::RDS
9537
9748
  #
9538
9749
  class DescribeDBSnapshotAttributesMessage < Struct.new(
9539
9750
  :db_snapshot_identifier)
9751
+ SENSITIVE = []
9540
9752
  include Aws::Structure
9541
9753
  end
9542
9754
 
@@ -9553,6 +9765,7 @@ module Aws::RDS
9553
9765
  #
9554
9766
  class DescribeDBSnapshotAttributesResult < Struct.new(
9555
9767
  :db_snapshot_attributes_result)
9768
+ SENSITIVE = []
9556
9769
  include Aws::Structure
9557
9770
  end
9558
9771
 
@@ -9714,6 +9927,7 @@ module Aws::RDS
9714
9927
  :include_shared,
9715
9928
  :include_public,
9716
9929
  :dbi_resource_id)
9930
+ SENSITIVE = []
9717
9931
  include Aws::Structure
9718
9932
  end
9719
9933
 
@@ -9765,6 +9979,7 @@ module Aws::RDS
9765
9979
  :filters,
9766
9980
  :max_records,
9767
9981
  :marker)
9982
+ SENSITIVE = []
9768
9983
  include Aws::Structure
9769
9984
  end
9770
9985
 
@@ -9817,6 +10032,7 @@ module Aws::RDS
9817
10032
  :filters,
9818
10033
  :max_records,
9819
10034
  :marker)
10035
+ SENSITIVE = []
9820
10036
  include Aws::Structure
9821
10037
  end
9822
10038
 
@@ -9829,6 +10045,7 @@ module Aws::RDS
9829
10045
  #
9830
10046
  class DescribeEngineDefaultClusterParametersResult < Struct.new(
9831
10047
  :engine_defaults)
10048
+ SENSITIVE = []
9832
10049
  include Aws::Structure
9833
10050
  end
9834
10051
 
@@ -9880,6 +10097,7 @@ module Aws::RDS
9880
10097
  :filters,
9881
10098
  :max_records,
9882
10099
  :marker)
10100
+ SENSITIVE = []
9883
10101
  include Aws::Structure
9884
10102
  end
9885
10103
 
@@ -9892,6 +10110,7 @@ module Aws::RDS
9892
10110
  #
9893
10111
  class DescribeEngineDefaultParametersResult < Struct.new(
9894
10112
  :engine_defaults)
10113
+ SENSITIVE = []
9895
10114
  include Aws::Structure
9896
10115
  end
9897
10116
 
@@ -9924,6 +10143,7 @@ module Aws::RDS
9924
10143
  class DescribeEventCategoriesMessage < Struct.new(
9925
10144
  :source_type,
9926
10145
  :filters)
10146
+ SENSITIVE = []
9927
10147
  include Aws::Structure
9928
10148
  end
9929
10149
 
@@ -9976,6 +10196,7 @@ module Aws::RDS
9976
10196
  :filters,
9977
10197
  :max_records,
9978
10198
  :marker)
10199
+ SENSITIVE = []
9979
10200
  include Aws::Structure
9980
10201
  end
9981
10202
 
@@ -10096,6 +10317,7 @@ module Aws::RDS
10096
10317
  :filters,
10097
10318
  :max_records,
10098
10319
  :marker)
10320
+ SENSITIVE = []
10099
10321
  include Aws::Structure
10100
10322
  end
10101
10323
 
@@ -10169,6 +10391,7 @@ module Aws::RDS
10169
10391
  :filters,
10170
10392
  :marker,
10171
10393
  :max_records)
10394
+ SENSITIVE = []
10172
10395
  include Aws::Structure
10173
10396
  end
10174
10397
 
@@ -10236,6 +10459,7 @@ module Aws::RDS
10236
10459
  :filters,
10237
10460
  :max_records,
10238
10461
  :marker)
10462
+ SENSITIVE = []
10239
10463
  include Aws::Structure
10240
10464
  end
10241
10465
 
@@ -10294,6 +10518,7 @@ module Aws::RDS
10294
10518
  :filters,
10295
10519
  :max_records,
10296
10520
  :marker)
10521
+ SENSITIVE = []
10297
10522
  include Aws::Structure
10298
10523
  end
10299
10524
 
@@ -10352,6 +10577,7 @@ module Aws::RDS
10352
10577
  :filters,
10353
10578
  :max_records,
10354
10579
  :marker)
10580
+ SENSITIVE = []
10355
10581
  include Aws::Structure
10356
10582
  end
10357
10583
 
@@ -10419,6 +10645,7 @@ module Aws::RDS
10419
10645
  :max_records,
10420
10646
  :engine_name,
10421
10647
  :major_engine_version)
10648
+ SENSITIVE = []
10422
10649
  include Aws::Structure
10423
10650
  end
10424
10651
 
@@ -10510,6 +10737,7 @@ module Aws::RDS
10510
10737
  :filters,
10511
10738
  :max_records,
10512
10739
  :marker)
10740
+ SENSITIVE = []
10513
10741
  include Aws::Structure
10514
10742
  end
10515
10743
 
@@ -10573,6 +10801,7 @@ module Aws::RDS
10573
10801
  :filters,
10574
10802
  :marker,
10575
10803
  :max_records)
10804
+ SENSITIVE = []
10576
10805
  include Aws::Structure
10577
10806
  end
10578
10807
 
@@ -10684,6 +10913,7 @@ module Aws::RDS
10684
10913
  :filters,
10685
10914
  :max_records,
10686
10915
  :marker)
10916
+ SENSITIVE = []
10687
10917
  include Aws::Structure
10688
10918
  end
10689
10919
 
@@ -10783,6 +11013,7 @@ module Aws::RDS
10783
11013
  :filters,
10784
11014
  :max_records,
10785
11015
  :marker)
11016
+ SENSITIVE = []
10786
11017
  include Aws::Structure
10787
11018
  end
10788
11019
 
@@ -10840,6 +11071,7 @@ module Aws::RDS
10840
11071
  :max_records,
10841
11072
  :marker,
10842
11073
  :filters)
11074
+ SENSITIVE = []
10843
11075
  include Aws::Structure
10844
11076
  end
10845
11077
 
@@ -10858,6 +11090,7 @@ module Aws::RDS
10858
11090
  #
10859
11091
  class DescribeValidDBInstanceModificationsMessage < Struct.new(
10860
11092
  :db_instance_identifier)
11093
+ SENSITIVE = []
10861
11094
  include Aws::Structure
10862
11095
  end
10863
11096
 
@@ -10872,6 +11105,7 @@ module Aws::RDS
10872
11105
  #
10873
11106
  class DescribeValidDBInstanceModificationsResult < Struct.new(
10874
11107
  :valid_db_instance_modifications_message)
11108
+ SENSITIVE = []
10875
11109
  include Aws::Structure
10876
11110
  end
10877
11111
 
@@ -10904,6 +11138,7 @@ module Aws::RDS
10904
11138
  :status,
10905
11139
  :fqdn,
10906
11140
  :iam_role_name)
11141
+ SENSITIVE = []
10907
11142
  include Aws::Structure
10908
11143
  end
10909
11144
 
@@ -10928,6 +11163,7 @@ module Aws::RDS
10928
11163
  class DoubleRange < Struct.new(
10929
11164
  :from,
10930
11165
  :to)
11166
+ SENSITIVE = []
10931
11167
  include Aws::Structure
10932
11168
  end
10933
11169
 
@@ -10954,6 +11190,7 @@ module Aws::RDS
10954
11190
  :log_file_data,
10955
11191
  :marker,
10956
11192
  :additional_data_pending)
11193
+ SENSITIVE = []
10957
11194
  include Aws::Structure
10958
11195
  end
10959
11196
 
@@ -11022,6 +11259,7 @@ module Aws::RDS
11022
11259
  :log_file_name,
11023
11260
  :marker,
11024
11261
  :number_of_lines)
11262
+ SENSITIVE = []
11025
11263
  include Aws::Structure
11026
11264
  end
11027
11265
 
@@ -11058,6 +11296,7 @@ module Aws::RDS
11058
11296
  :ec2_security_group_name,
11059
11297
  :ec2_security_group_id,
11060
11298
  :ec2_security_group_owner_id)
11299
+ SENSITIVE = []
11061
11300
  include Aws::Structure
11062
11301
  end
11063
11302
 
@@ -11093,6 +11332,7 @@ module Aws::RDS
11093
11332
  :address,
11094
11333
  :port,
11095
11334
  :hosted_zone_id)
11335
+ SENSITIVE = []
11096
11336
  include Aws::Structure
11097
11337
  end
11098
11338
 
@@ -11121,6 +11361,7 @@ module Aws::RDS
11121
11361
  :db_parameter_group_family,
11122
11362
  :marker,
11123
11363
  :parameters)
11364
+ SENSITIVE = []
11124
11365
  include Aws::Structure
11125
11366
  end
11126
11367
 
@@ -11160,6 +11401,7 @@ module Aws::RDS
11160
11401
  :event_categories,
11161
11402
  :date,
11162
11403
  :source_arn)
11404
+ SENSITIVE = []
11163
11405
  include Aws::Structure
11164
11406
  end
11165
11407
 
@@ -11179,6 +11421,7 @@ module Aws::RDS
11179
11421
  class EventCategoriesMap < Struct.new(
11180
11422
  :source_type,
11181
11423
  :event_categories)
11424
+ SENSITIVE = []
11182
11425
  include Aws::Structure
11183
11426
  end
11184
11427
 
@@ -11192,6 +11435,7 @@ module Aws::RDS
11192
11435
  #
11193
11436
  class EventCategoriesMessage < Struct.new(
11194
11437
  :event_categories_map_list)
11438
+ SENSITIVE = []
11195
11439
  include Aws::Structure
11196
11440
  end
11197
11441
 
@@ -11264,6 +11508,7 @@ module Aws::RDS
11264
11508
  :event_categories_list,
11265
11509
  :enabled,
11266
11510
  :event_subscription_arn)
11511
+ SENSITIVE = []
11267
11512
  include Aws::Structure
11268
11513
  end
11269
11514
 
@@ -11291,6 +11536,7 @@ module Aws::RDS
11291
11536
  class EventSubscriptionsMessage < Struct.new(
11292
11537
  :marker,
11293
11538
  :event_subscriptions_list)
11539
+ SENSITIVE = []
11294
11540
  include Aws::Structure
11295
11541
  end
11296
11542
 
@@ -11312,6 +11558,7 @@ module Aws::RDS
11312
11558
  class EventsMessage < Struct.new(
11313
11559
  :marker,
11314
11560
  :events)
11561
+ SENSITIVE = []
11315
11562
  include Aws::Structure
11316
11563
  end
11317
11564
 
@@ -11421,6 +11668,7 @@ module Aws::RDS
11421
11668
  :total_extracted_data_in_gb,
11422
11669
  :failure_cause,
11423
11670
  :warning_message)
11671
+ SENSITIVE = []
11424
11672
  include Aws::Structure
11425
11673
  end
11426
11674
 
@@ -11451,6 +11699,7 @@ module Aws::RDS
11451
11699
  class ExportTasksMessage < Struct.new(
11452
11700
  :marker,
11453
11701
  :export_tasks)
11702
+ SENSITIVE = []
11454
11703
  include Aws::Structure
11455
11704
  end
11456
11705
 
@@ -11485,6 +11734,7 @@ module Aws::RDS
11485
11734
  class FailoverDBClusterMessage < Struct.new(
11486
11735
  :db_cluster_identifier,
11487
11736
  :target_db_instance_identifier)
11737
+ SENSITIVE = []
11488
11738
  include Aws::Structure
11489
11739
  end
11490
11740
 
@@ -11499,6 +11749,7 @@ module Aws::RDS
11499
11749
  #
11500
11750
  class FailoverDBClusterResult < Struct.new(
11501
11751
  :db_cluster)
11752
+ SENSITIVE = []
11502
11753
  include Aws::Structure
11503
11754
  end
11504
11755
 
@@ -11545,6 +11796,7 @@ module Aws::RDS
11545
11796
  class Filter < Struct.new(
11546
11797
  :name,
11547
11798
  :values)
11799
+ SENSITIVE = []
11548
11800
  include Aws::Structure
11549
11801
  end
11550
11802
 
@@ -11608,6 +11860,7 @@ module Aws::RDS
11608
11860
  :storage_encrypted,
11609
11861
  :deletion_protection,
11610
11862
  :global_cluster_members)
11863
+ SENSITIVE = []
11611
11864
  include Aws::Structure
11612
11865
  end
11613
11866
 
@@ -11633,12 +11886,20 @@ module Aws::RDS
11633
11886
  # which it is associated.
11634
11887
  # @return [Boolean]
11635
11888
  #
11889
+ # @!attribute [rw] global_write_forwarding_status
11890
+ # Specifies whether a secondary cluster in an Aurora global database
11891
+ # has write forwarding enabled, not enabled, or is in the process of
11892
+ # enabling it.
11893
+ # @return [String]
11894
+ #
11636
11895
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterMember AWS API Documentation
11637
11896
  #
11638
11897
  class GlobalClusterMember < Struct.new(
11639
11898
  :db_cluster_arn,
11640
11899
  :readers,
11641
- :is_writer)
11900
+ :is_writer,
11901
+ :global_write_forwarding_status)
11902
+ SENSITIVE = []
11642
11903
  include Aws::Structure
11643
11904
  end
11644
11905
 
@@ -11666,6 +11927,7 @@ module Aws::RDS
11666
11927
  class GlobalClustersMessage < Struct.new(
11667
11928
  :marker,
11668
11929
  :global_clusters)
11930
+ SENSITIVE = []
11669
11931
  include Aws::Structure
11670
11932
  end
11671
11933
 
@@ -11686,6 +11948,7 @@ module Aws::RDS
11686
11948
  class IPRange < Struct.new(
11687
11949
  :status,
11688
11950
  :cidrip)
11951
+ SENSITIVE = []
11689
11952
  include Aws::Structure
11690
11953
  end
11691
11954
 
@@ -11776,6 +12039,7 @@ module Aws::RDS
11776
12039
  :engine_version,
11777
12040
  :engine_installation_media_path,
11778
12041
  :os_installation_media_path)
12042
+ SENSITIVE = []
11779
12043
  include Aws::Structure
11780
12044
  end
11781
12045
 
@@ -11827,6 +12091,7 @@ module Aws::RDS
11827
12091
  :os_installation_media_path,
11828
12092
  :status,
11829
12093
  :failure_cause)
12094
+ SENSITIVE = []
11830
12095
  include Aws::Structure
11831
12096
  end
11832
12097
 
@@ -11848,6 +12113,7 @@ module Aws::RDS
11848
12113
  #
11849
12114
  class InstallationMediaFailureCause < Struct.new(
11850
12115
  :message)
12116
+ SENSITIVE = []
11851
12117
  include Aws::Structure
11852
12118
  end
11853
12119
 
@@ -11867,6 +12133,7 @@ module Aws::RDS
11867
12133
  class InstallationMediaMessage < Struct.new(
11868
12134
  :marker,
11869
12135
  :installation_media)
12136
+ SENSITIVE = []
11870
12137
  include Aws::Structure
11871
12138
  end
11872
12139
 
@@ -12096,6 +12363,7 @@ module Aws::RDS
12096
12363
  class ListTagsForResourceMessage < Struct.new(
12097
12364
  :resource_name,
12098
12365
  :filters)
12366
+ SENSITIVE = []
12099
12367
  include Aws::Structure
12100
12368
  end
12101
12369
 
@@ -12115,6 +12383,7 @@ module Aws::RDS
12115
12383
  class MinimumEngineVersionPerAllowedValue < Struct.new(
12116
12384
  :allowed_value,
12117
12385
  :minimum_engine_version)
12386
+ SENSITIVE = []
12118
12387
  include Aws::Structure
12119
12388
  end
12120
12389
 
@@ -12145,6 +12414,7 @@ module Aws::RDS
12145
12414
  class ModifyCertificatesMessage < Struct.new(
12146
12415
  :certificate_identifier,
12147
12416
  :remove_customer_override)
12417
+ SENSITIVE = []
12148
12418
  include Aws::Structure
12149
12419
  end
12150
12420
 
@@ -12156,6 +12426,7 @@ module Aws::RDS
12156
12426
  #
12157
12427
  class ModifyCertificatesResult < Struct.new(
12158
12428
  :certificate)
12429
+ SENSITIVE = []
12159
12430
  include Aws::Structure
12160
12431
  end
12161
12432
 
@@ -12223,6 +12494,7 @@ module Aws::RDS
12223
12494
  :capacity,
12224
12495
  :seconds_before_timeout,
12225
12496
  :timeout_action)
12497
+ SENSITIVE = []
12226
12498
  include Aws::Structure
12227
12499
  end
12228
12500
 
@@ -12264,6 +12536,7 @@ module Aws::RDS
12264
12536
  :endpoint_type,
12265
12537
  :static_members,
12266
12538
  :excluded_members)
12539
+ SENSITIVE = []
12267
12540
  include Aws::Structure
12268
12541
  end
12269
12542
 
@@ -12303,6 +12576,7 @@ module Aws::RDS
12303
12576
  # deletion_protection: false,
12304
12577
  # enable_http_endpoint: false,
12305
12578
  # copy_tags_to_snapshot: false,
12579
+ # enable_global_write_forwarding: false,
12306
12580
  # }
12307
12581
  #
12308
12582
  # @!attribute [rw] db_cluster_identifier
@@ -12463,6 +12737,10 @@ module Aws::RDS
12463
12737
  # The target backtrack window, in seconds. To disable backtracking,
12464
12738
  # set this value to 0.
12465
12739
  #
12740
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
12741
+ #
12742
+ # </note>
12743
+ #
12466
12744
  # Default: 0
12467
12745
  #
12468
12746
  # Constraints:
@@ -12579,6 +12857,15 @@ module Aws::RDS
12579
12857
  # to snapshots of the DB cluster. The default is not to copy them.
12580
12858
  # @return [Boolean]
12581
12859
  #
12860
+ # @!attribute [rw] enable_global_write_forwarding
12861
+ # A value that indicates whether to enable write operations to be
12862
+ # forwarded from this cluster to the primary cluster in an Aurora
12863
+ # global database. The resulting changes are replicated back to this
12864
+ # cluster. This parameter only applies to DB clusters that are
12865
+ # secondary clusters in an Aurora global database. By default, Aurora
12866
+ # disallows write operations for secondary clusters.
12867
+ # @return [Boolean]
12868
+ #
12582
12869
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
12583
12870
  #
12584
12871
  class ModifyDBClusterMessage < Struct.new(
@@ -12604,7 +12891,9 @@ module Aws::RDS
12604
12891
  :scaling_configuration,
12605
12892
  :deletion_protection,
12606
12893
  :enable_http_endpoint,
12607
- :copy_tags_to_snapshot)
12894
+ :copy_tags_to_snapshot,
12895
+ :enable_global_write_forwarding)
12896
+ SENSITIVE = []
12608
12897
  include Aws::Structure
12609
12898
  end
12610
12899
 
@@ -12643,6 +12932,7 @@ module Aws::RDS
12643
12932
  class ModifyDBClusterParameterGroupMessage < Struct.new(
12644
12933
  :db_cluster_parameter_group_name,
12645
12934
  :parameters)
12935
+ SENSITIVE = []
12646
12936
  include Aws::Structure
12647
12937
  end
12648
12938
 
@@ -12657,6 +12947,7 @@ module Aws::RDS
12657
12947
  #
12658
12948
  class ModifyDBClusterResult < Struct.new(
12659
12949
  :db_cluster)
12950
+ SENSITIVE = []
12660
12951
  include Aws::Structure
12661
12952
  end
12662
12953
 
@@ -12680,6 +12971,11 @@ module Aws::RDS
12680
12971
  #
12681
12972
  # To manage authorization for other AWS accounts to copy or restore a
12682
12973
  # manual DB cluster snapshot, set this value to `restore`.
12974
+ #
12975
+ # <note markdown="1"> To view the list of attributes available to modify, use the
12976
+ # DescribeDBClusterSnapshotAttributes API action.
12977
+ #
12978
+ # </note>
12683
12979
  # @return [String]
12684
12980
  #
12685
12981
  # @!attribute [rw] values_to_add
@@ -12714,6 +13010,7 @@ module Aws::RDS
12714
13010
  :attribute_name,
12715
13011
  :values_to_add,
12716
13012
  :values_to_remove)
13013
+ SENSITIVE = []
12717
13014
  include Aws::Structure
12718
13015
  end
12719
13016
 
@@ -12731,6 +13028,7 @@ module Aws::RDS
12731
13028
  #
12732
13029
  class ModifyDBClusterSnapshotAttributeResult < Struct.new(
12733
13030
  :db_cluster_snapshot_attributes_result)
13031
+ SENSITIVE = []
12734
13032
  include Aws::Structure
12735
13033
  end
12736
13034
 
@@ -13299,11 +13597,17 @@ module Aws::RDS
13299
13597
  #
13300
13598
  # @!attribute [rw] publicly_accessible
13301
13599
  # 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.
13600
+ # accessible.
13601
+ #
13602
+ # When the DB instance is publicly accessible, its DNS endpoint
13603
+ # resolves to the private IP address from within the DB instance's
13604
+ # VPC, and to the public IP address from outside of the DB instance's
13605
+ # VPC. Access to the DB instance is ultimately controlled by the
13606
+ # security group it uses, and that public access is not permitted if
13607
+ # the security group assigned to the DB instance doesn't permit it.
13608
+ #
13609
+ # When the DB instance isn't publicly accessible, it is an internal
13610
+ # DB instance with a DNS name that resolves to a private IP address.
13307
13611
  #
13308
13612
  # `PubliclyAccessible` only applies to DB instances in a VPC. The DB
13309
13613
  # instance must be part of a public subnet and `PubliclyAccessible`
@@ -13501,6 +13805,7 @@ module Aws::RDS
13501
13805
  :deletion_protection,
13502
13806
  :max_allocated_storage,
13503
13807
  :certificate_rotation_restart)
13808
+ SENSITIVE = []
13504
13809
  include Aws::Structure
13505
13810
  end
13506
13811
 
@@ -13515,6 +13820,7 @@ module Aws::RDS
13515
13820
  #
13516
13821
  class ModifyDBInstanceResult < Struct.new(
13517
13822
  :db_instance)
13823
+ SENSITIVE = []
13518
13824
  include Aws::Structure
13519
13825
  end
13520
13826
 
@@ -13573,6 +13879,7 @@ module Aws::RDS
13573
13879
  class ModifyDBParameterGroupMessage < Struct.new(
13574
13880
  :db_parameter_group_name,
13575
13881
  :parameters)
13882
+ SENSITIVE = []
13576
13883
  include Aws::Structure
13577
13884
  end
13578
13885
 
@@ -13656,6 +13963,7 @@ module Aws::RDS
13656
13963
  :debug_logging,
13657
13964
  :role_arn,
13658
13965
  :security_groups)
13966
+ SENSITIVE = []
13659
13967
  include Aws::Structure
13660
13968
  end
13661
13969
 
@@ -13667,6 +13975,7 @@ module Aws::RDS
13667
13975
  #
13668
13976
  class ModifyDBProxyResponse < Struct.new(
13669
13977
  :db_proxy)
13978
+ SENSITIVE = []
13670
13979
  include Aws::Structure
13671
13980
  end
13672
13981
 
@@ -13713,6 +14022,7 @@ module Aws::RDS
13713
14022
  :db_proxy_name,
13714
14023
  :connection_pool_config,
13715
14024
  :new_name)
14025
+ SENSITIVE = []
13716
14026
  include Aws::Structure
13717
14027
  end
13718
14028
 
@@ -13724,6 +14034,7 @@ module Aws::RDS
13724
14034
  #
13725
14035
  class ModifyDBProxyTargetGroupResponse < Struct.new(
13726
14036
  :db_proxy_target_group)
14037
+ SENSITIVE = []
13727
14038
  include Aws::Structure
13728
14039
  end
13729
14040
 
@@ -13746,6 +14057,11 @@ module Aws::RDS
13746
14057
  #
13747
14058
  # To manage authorization for other AWS accounts to copy or restore a
13748
14059
  # manual DB snapshot, set this value to `restore`.
14060
+ #
14061
+ # <note markdown="1"> To view the list of attributes available to modify, use the
14062
+ # DescribeDBSnapshotAttributes API action.
14063
+ #
14064
+ # </note>
13749
14065
  # @return [String]
13750
14066
  #
13751
14067
  # @!attribute [rw] values_to_add
@@ -13779,6 +14095,7 @@ module Aws::RDS
13779
14095
  :attribute_name,
13780
14096
  :values_to_add,
13781
14097
  :values_to_remove)
14098
+ SENSITIVE = []
13782
14099
  include Aws::Structure
13783
14100
  end
13784
14101
 
@@ -13795,6 +14112,7 @@ module Aws::RDS
13795
14112
  #
13796
14113
  class ModifyDBSnapshotAttributeResult < Struct.new(
13797
14114
  :db_snapshot_attributes_result)
14115
+ SENSITIVE = []
13798
14116
  include Aws::Structure
13799
14117
  end
13800
14118
 
@@ -13861,6 +14179,7 @@ module Aws::RDS
13861
14179
  :db_snapshot_identifier,
13862
14180
  :engine_version,
13863
14181
  :option_group_name)
14182
+ SENSITIVE = []
13864
14183
  include Aws::Structure
13865
14184
  end
13866
14185
 
@@ -13875,6 +14194,7 @@ module Aws::RDS
13875
14194
  #
13876
14195
  class ModifyDBSnapshotResult < Struct.new(
13877
14196
  :db_snapshot)
14197
+ SENSITIVE = []
13878
14198
  include Aws::Structure
13879
14199
  end
13880
14200
 
@@ -13911,6 +14231,7 @@ module Aws::RDS
13911
14231
  :db_subnet_group_name,
13912
14232
  :db_subnet_group_description,
13913
14233
  :subnet_ids)
14234
+ SENSITIVE = []
13914
14235
  include Aws::Structure
13915
14236
  end
13916
14237
 
@@ -13925,6 +14246,7 @@ module Aws::RDS
13925
14246
  #
13926
14247
  class ModifyDBSubnetGroupResult < Struct.new(
13927
14248
  :db_subnet_group)
14249
+ SENSITIVE = []
13928
14250
  include Aws::Structure
13929
14251
  end
13930
14252
 
@@ -13982,6 +14304,7 @@ module Aws::RDS
13982
14304
  :source_type,
13983
14305
  :event_categories,
13984
14306
  :enabled)
14307
+ SENSITIVE = []
13985
14308
  include Aws::Structure
13986
14309
  end
13987
14310
 
@@ -13994,6 +14317,7 @@ module Aws::RDS
13994
14317
  #
13995
14318
  class ModifyEventSubscriptionResult < Struct.new(
13996
14319
  :event_subscription)
14320
+ SENSITIVE = []
13997
14321
  include Aws::Structure
13998
14322
  end
13999
14323
 
@@ -14045,6 +14369,7 @@ module Aws::RDS
14045
14369
  :global_cluster_identifier,
14046
14370
  :new_global_cluster_identifier,
14047
14371
  :deletion_protection)
14372
+ SENSITIVE = []
14048
14373
  include Aws::Structure
14049
14374
  end
14050
14375
 
@@ -14056,6 +14381,7 @@ module Aws::RDS
14056
14381
  #
14057
14382
  class ModifyGlobalClusterResult < Struct.new(
14058
14383
  :global_cluster)
14384
+ SENSITIVE = []
14059
14385
  include Aws::Structure
14060
14386
  end
14061
14387
 
@@ -14122,6 +14448,7 @@ module Aws::RDS
14122
14448
  :options_to_include,
14123
14449
  :options_to_remove,
14124
14450
  :apply_immediately)
14451
+ SENSITIVE = []
14125
14452
  include Aws::Structure
14126
14453
  end
14127
14454
 
@@ -14132,6 +14459,7 @@ module Aws::RDS
14132
14459
  #
14133
14460
  class ModifyOptionGroupResult < Struct.new(
14134
14461
  :option_group)
14462
+ SENSITIVE = []
14135
14463
  include Aws::Structure
14136
14464
  end
14137
14465
 
@@ -14187,6 +14515,7 @@ module Aws::RDS
14187
14515
  :option_settings,
14188
14516
  :db_security_group_memberships,
14189
14517
  :vpc_security_group_memberships)
14518
+ SENSITIVE = []
14190
14519
  include Aws::Structure
14191
14520
  end
14192
14521
 
@@ -14251,6 +14580,7 @@ module Aws::RDS
14251
14580
  :db_security_group_memberships,
14252
14581
  :vpc_security_group_memberships,
14253
14582
  :option_settings)
14583
+ SENSITIVE = []
14254
14584
  include Aws::Structure
14255
14585
  end
14256
14586
 
@@ -14306,6 +14636,7 @@ module Aws::RDS
14306
14636
  :allows_vpc_and_non_vpc_instance_memberships,
14307
14637
  :vpc_id,
14308
14638
  :option_group_arn)
14639
+ SENSITIVE = []
14309
14640
  include Aws::Structure
14310
14641
  end
14311
14642
 
@@ -14334,6 +14665,7 @@ module Aws::RDS
14334
14665
  class OptionGroupMembership < Struct.new(
14335
14666
  :option_group_name,
14336
14667
  :status)
14668
+ SENSITIVE = []
14337
14669
  include Aws::Structure
14338
14670
  end
14339
14671
 
@@ -14441,6 +14773,7 @@ module Aws::RDS
14441
14773
  :supports_option_version_downgrade,
14442
14774
  :option_group_option_settings,
14443
14775
  :option_group_option_versions)
14776
+ SENSITIVE = []
14444
14777
  include Aws::Structure
14445
14778
  end
14446
14779
 
@@ -14494,6 +14827,7 @@ module Aws::RDS
14494
14827
  :is_modifiable,
14495
14828
  :is_required,
14496
14829
  :minimum_engine_version_per_allowed_value)
14830
+ SENSITIVE = []
14497
14831
  include Aws::Structure
14498
14832
  end
14499
14833
 
@@ -14512,6 +14846,7 @@ module Aws::RDS
14512
14846
  class OptionGroupOptionsMessage < Struct.new(
14513
14847
  :option_group_options,
14514
14848
  :marker)
14849
+ SENSITIVE = []
14515
14850
  include Aws::Structure
14516
14851
  end
14517
14852
 
@@ -14538,6 +14873,7 @@ module Aws::RDS
14538
14873
  class OptionGroups < Struct.new(
14539
14874
  :option_groups_list,
14540
14875
  :marker)
14876
+ SENSITIVE = []
14541
14877
  include Aws::Structure
14542
14878
  end
14543
14879
 
@@ -14611,6 +14947,7 @@ module Aws::RDS
14611
14947
  :allowed_values,
14612
14948
  :is_modifiable,
14613
14949
  :is_collection)
14950
+ SENSITIVE = []
14614
14951
  include Aws::Structure
14615
14952
  end
14616
14953
 
@@ -14631,6 +14968,7 @@ module Aws::RDS
14631
14968
  class OptionVersion < Struct.new(
14632
14969
  :version,
14633
14970
  :is_default)
14971
+ SENSITIVE = []
14634
14972
  include Aws::Structure
14635
14973
  end
14636
14974
 
@@ -14779,6 +15117,7 @@ module Aws::RDS
14779
15117
  :supported_engine_modes,
14780
15118
  :supports_storage_autoscaling,
14781
15119
  :supports_kerberos_authentication)
15120
+ SENSITIVE = []
14782
15121
  include Aws::Structure
14783
15122
  end
14784
15123
 
@@ -14802,6 +15141,7 @@ module Aws::RDS
14802
15141
  class OrderableDBInstanceOptionsMessage < Struct.new(
14803
15142
  :orderable_db_instance_options,
14804
15143
  :marker)
15144
+ SENSITIVE = []
14805
15145
  include Aws::Structure
14806
15146
  end
14807
15147
 
@@ -14888,6 +15228,7 @@ module Aws::RDS
14888
15228
  :minimum_engine_version,
14889
15229
  :apply_method,
14890
15230
  :supported_engine_modes)
15231
+ SENSITIVE = []
14891
15232
  include Aws::Structure
14892
15233
  end
14893
15234
 
@@ -14911,6 +15252,7 @@ module Aws::RDS
14911
15252
  class PendingCloudwatchLogsExports < Struct.new(
14912
15253
  :log_types_to_enable,
14913
15254
  :log_types_to_disable)
15255
+ SENSITIVE = []
14914
15256
  include Aws::Structure
14915
15257
  end
14916
15258
 
@@ -14962,6 +15304,7 @@ module Aws::RDS
14962
15304
  :opt_in_status,
14963
15305
  :current_apply_date,
14964
15306
  :description)
15307
+ SENSITIVE = []
14965
15308
  include Aws::Structure
14966
15309
  end
14967
15310
 
@@ -14983,6 +15326,7 @@ module Aws::RDS
14983
15326
  class PendingMaintenanceActionsMessage < Struct.new(
14984
15327
  :pending_maintenance_actions,
14985
15328
  :marker)
15329
+ SENSITIVE = []
14986
15330
  include Aws::Structure
14987
15331
  end
14988
15332
 
@@ -15080,6 +15424,7 @@ module Aws::RDS
15080
15424
  :db_subnet_group_name,
15081
15425
  :pending_cloudwatch_logs_exports,
15082
15426
  :processor_features)
15427
+ SENSITIVE = []
15083
15428
  include Aws::Structure
15084
15429
  end
15085
15430
 
@@ -15151,6 +15496,7 @@ module Aws::RDS
15151
15496
  class ProcessorFeature < Struct.new(
15152
15497
  :name,
15153
15498
  :value)
15499
+ SENSITIVE = []
15154
15500
  include Aws::Structure
15155
15501
  end
15156
15502
 
@@ -15178,6 +15524,7 @@ module Aws::RDS
15178
15524
  #
15179
15525
  class PromoteReadReplicaDBClusterMessage < Struct.new(
15180
15526
  :db_cluster_identifier)
15527
+ SENSITIVE = []
15181
15528
  include Aws::Structure
15182
15529
  end
15183
15530
 
@@ -15192,6 +15539,7 @@ module Aws::RDS
15192
15539
  #
15193
15540
  class PromoteReadReplicaDBClusterResult < Struct.new(
15194
15541
  :db_cluster)
15542
+ SENSITIVE = []
15195
15543
  include Aws::Structure
15196
15544
  end
15197
15545
 
@@ -15263,6 +15611,7 @@ module Aws::RDS
15263
15611
  :db_instance_identifier,
15264
15612
  :backup_retention_period,
15265
15613
  :preferred_backup_window)
15614
+ SENSITIVE = []
15266
15615
  include Aws::Structure
15267
15616
  end
15268
15617
 
@@ -15277,6 +15626,7 @@ module Aws::RDS
15277
15626
  #
15278
15627
  class PromoteReadReplicaResult < Struct.new(
15279
15628
  :db_instance)
15629
+ SENSITIVE = []
15280
15630
  include Aws::Structure
15281
15631
  end
15282
15632
 
@@ -15335,6 +15685,7 @@ module Aws::RDS
15335
15685
  :reserved_db_instance_id,
15336
15686
  :db_instance_count,
15337
15687
  :tags)
15688
+ SENSITIVE = []
15338
15689
  include Aws::Structure
15339
15690
  end
15340
15691
 
@@ -15348,6 +15699,7 @@ module Aws::RDS
15348
15699
  #
15349
15700
  class PurchaseReservedDBInstancesOfferingResult < Struct.new(
15350
15701
  :reserved_db_instance)
15702
+ SENSITIVE = []
15351
15703
  include Aws::Structure
15352
15704
  end
15353
15705
 
@@ -15375,6 +15727,7 @@ module Aws::RDS
15375
15727
  :from,
15376
15728
  :to,
15377
15729
  :step)
15730
+ SENSITIVE = []
15378
15731
  include Aws::Structure
15379
15732
  end
15380
15733
 
@@ -15410,6 +15763,7 @@ module Aws::RDS
15410
15763
  class RebootDBInstanceMessage < Struct.new(
15411
15764
  :db_instance_identifier,
15412
15765
  :force_failover)
15766
+ SENSITIVE = []
15413
15767
  include Aws::Structure
15414
15768
  end
15415
15769
 
@@ -15424,6 +15778,7 @@ module Aws::RDS
15424
15778
  #
15425
15779
  class RebootDBInstanceResult < Struct.new(
15426
15780
  :db_instance)
15781
+ SENSITIVE = []
15427
15782
  include Aws::Structure
15428
15783
  end
15429
15784
 
@@ -15444,6 +15799,7 @@ module Aws::RDS
15444
15799
  class RecurringCharge < Struct.new(
15445
15800
  :recurring_charge_amount,
15446
15801
  :recurring_charge_frequency)
15802
+ SENSITIVE = []
15447
15803
  include Aws::Structure
15448
15804
  end
15449
15805
 
@@ -15481,6 +15837,7 @@ module Aws::RDS
15481
15837
  :target_group_name,
15482
15838
  :db_instance_identifiers,
15483
15839
  :db_cluster_identifiers)
15840
+ SENSITIVE = []
15484
15841
  include Aws::Structure
15485
15842
  end
15486
15843
 
@@ -15493,6 +15850,7 @@ module Aws::RDS
15493
15850
  #
15494
15851
  class RegisterDBProxyTargetsResponse < Struct.new(
15495
15852
  :db_proxy_targets)
15853
+ SENSITIVE = []
15496
15854
  include Aws::Structure
15497
15855
  end
15498
15856
 
@@ -15519,6 +15877,7 @@ module Aws::RDS
15519
15877
  class RemoveFromGlobalClusterMessage < Struct.new(
15520
15878
  :global_cluster_identifier,
15521
15879
  :db_cluster_identifier)
15880
+ SENSITIVE = []
15522
15881
  include Aws::Structure
15523
15882
  end
15524
15883
 
@@ -15530,6 +15889,7 @@ module Aws::RDS
15530
15889
  #
15531
15890
  class RemoveFromGlobalClusterResult < Struct.new(
15532
15891
  :global_cluster)
15892
+ SENSITIVE = []
15533
15893
  include Aws::Structure
15534
15894
  end
15535
15895
 
@@ -15564,6 +15924,7 @@ module Aws::RDS
15564
15924
  :db_cluster_identifier,
15565
15925
  :role_arn,
15566
15926
  :feature_name)
15927
+ SENSITIVE = []
15567
15928
  include Aws::Structure
15568
15929
  end
15569
15930
 
@@ -15598,6 +15959,7 @@ module Aws::RDS
15598
15959
  :db_instance_identifier,
15599
15960
  :role_arn,
15600
15961
  :feature_name)
15962
+ SENSITIVE = []
15601
15963
  include Aws::Structure
15602
15964
  end
15603
15965
 
@@ -15625,6 +15987,7 @@ module Aws::RDS
15625
15987
  class RemoveSourceIdentifierFromSubscriptionMessage < Struct.new(
15626
15988
  :subscription_name,
15627
15989
  :source_identifier)
15990
+ SENSITIVE = []
15628
15991
  include Aws::Structure
15629
15992
  end
15630
15993
 
@@ -15637,6 +16000,7 @@ module Aws::RDS
15637
16000
  #
15638
16001
  class RemoveSourceIdentifierFromSubscriptionResult < Struct.new(
15639
16002
  :event_subscription)
16003
+ SENSITIVE = []
15640
16004
  include Aws::Structure
15641
16005
  end
15642
16006
 
@@ -15668,6 +16032,7 @@ module Aws::RDS
15668
16032
  class RemoveTagsFromResourceMessage < Struct.new(
15669
16033
  :resource_name,
15670
16034
  :tag_keys)
16035
+ SENSITIVE = []
15671
16036
  include Aws::Structure
15672
16037
  end
15673
16038
 
@@ -15764,6 +16129,7 @@ module Aws::RDS
15764
16129
  :recurring_charges,
15765
16130
  :reserved_db_instance_arn,
15766
16131
  :lease_id)
16132
+ SENSITIVE = []
15767
16133
  include Aws::Structure
15768
16134
  end
15769
16135
 
@@ -15791,6 +16157,7 @@ module Aws::RDS
15791
16157
  class ReservedDBInstanceMessage < Struct.new(
15792
16158
  :marker,
15793
16159
  :reserved_db_instances)
16160
+ SENSITIVE = []
15794
16161
  include Aws::Structure
15795
16162
  end
15796
16163
 
@@ -15862,6 +16229,7 @@ module Aws::RDS
15862
16229
  :offering_type,
15863
16230
  :multi_az,
15864
16231
  :recurring_charges)
16232
+ SENSITIVE = []
15865
16233
  include Aws::Structure
15866
16234
  end
15867
16235
 
@@ -15883,6 +16251,7 @@ module Aws::RDS
15883
16251
  class ReservedDBInstancesOfferingMessage < Struct.new(
15884
16252
  :marker,
15885
16253
  :reserved_db_instances_offerings)
16254
+ SENSITIVE = []
15886
16255
  include Aws::Structure
15887
16256
  end
15888
16257
 
@@ -15938,6 +16307,7 @@ module Aws::RDS
15938
16307
  :db_cluster_parameter_group_name,
15939
16308
  :reset_all_parameters,
15940
16309
  :parameters)
16310
+ SENSITIVE = []
15941
16311
  include Aws::Structure
15942
16312
  end
15943
16313
 
@@ -16014,6 +16384,7 @@ module Aws::RDS
16014
16384
  :db_parameter_group_name,
16015
16385
  :reset_all_parameters,
16016
16386
  :parameters)
16387
+ SENSITIVE = []
16017
16388
  include Aws::Structure
16018
16389
  end
16019
16390
 
@@ -16039,6 +16410,7 @@ module Aws::RDS
16039
16410
  class ResourcePendingMaintenanceActions < Struct.new(
16040
16411
  :resource_identifier,
16041
16412
  :pending_maintenance_action_details)
16413
+ SENSITIVE = []
16042
16414
  include Aws::Structure
16043
16415
  end
16044
16416
 
@@ -16113,7 +16485,7 @@ module Aws::RDS
16113
16485
  #
16114
16486
  # @!attribute [rw] db_cluster_identifier
16115
16487
  # 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.
16488
+ # Amazon S3 bucket. This parameter isn't case-sensitive.
16117
16489
  #
16118
16490
  # Constraints:
16119
16491
  #
@@ -16323,9 +16695,9 @@ module Aws::RDS
16323
16695
  # @!attribute [rw] source_engine_version
16324
16696
  # The version of the database that the backup files were created from.
16325
16697
  #
16326
- # MySQL version 5.5 and 5.6 are supported.
16698
+ # MySQL versions 5.5, 5.6, and 5.7 are supported.
16327
16699
  #
16328
- # Example: `5.6.22`
16700
+ # Example: `5.6.40`
16329
16701
  # @return [String]
16330
16702
  #
16331
16703
  # @!attribute [rw] s3_bucket_name
@@ -16350,6 +16722,10 @@ module Aws::RDS
16350
16722
  # The target backtrack window, in seconds. To disable backtracking,
16351
16723
  # set this value to 0.
16352
16724
  #
16725
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
16726
+ #
16727
+ # </note>
16728
+ #
16353
16729
  # Default: 0
16354
16730
  #
16355
16731
  # Constraints:
@@ -16436,6 +16812,7 @@ module Aws::RDS
16436
16812
  :copy_tags_to_snapshot,
16437
16813
  :domain,
16438
16814
  :domain_iam_role_name)
16815
+ SENSITIVE = []
16439
16816
  include Aws::Structure
16440
16817
  end
16441
16818
 
@@ -16450,6 +16827,7 @@ module Aws::RDS
16450
16827
  #
16451
16828
  class RestoreDBClusterFromS3Result < Struct.new(
16452
16829
  :db_cluster)
16830
+ SENSITIVE = []
16453
16831
  include Aws::Structure
16454
16832
  end
16455
16833
 
@@ -16644,6 +17022,10 @@ module Aws::RDS
16644
17022
  # The target backtrack window, in seconds. To disable backtracking,
16645
17023
  # set this value to 0.
16646
17024
  #
17025
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
17026
+ #
17027
+ # </note>
17028
+ #
16647
17029
  # Default: 0
16648
17030
  #
16649
17031
  # Constraints:
@@ -16739,6 +17121,7 @@ module Aws::RDS
16739
17121
  :copy_tags_to_snapshot,
16740
17122
  :domain,
16741
17123
  :domain_iam_role_name)
17124
+ SENSITIVE = []
16742
17125
  include Aws::Structure
16743
17126
  end
16744
17127
 
@@ -16753,6 +17136,7 @@ module Aws::RDS
16753
17136
  #
16754
17137
  class RestoreDBClusterFromSnapshotResult < Struct.new(
16755
17138
  :db_cluster)
17139
+ SENSITIVE = []
16756
17140
  include Aws::Structure
16757
17141
  end
16758
17142
 
@@ -16936,6 +17320,10 @@ module Aws::RDS
16936
17320
  # The target backtrack window, in seconds. To disable backtracking,
16937
17321
  # set this value to 0.
16938
17322
  #
17323
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
17324
+ #
17325
+ # </note>
17326
+ #
16939
17327
  # Default: 0
16940
17328
  #
16941
17329
  # Constraints:
@@ -17027,6 +17415,7 @@ module Aws::RDS
17027
17415
  :copy_tags_to_snapshot,
17028
17416
  :domain,
17029
17417
  :domain_iam_role_name)
17418
+ SENSITIVE = []
17030
17419
  include Aws::Structure
17031
17420
  end
17032
17421
 
@@ -17041,6 +17430,7 @@ module Aws::RDS
17041
17430
  #
17042
17431
  class RestoreDBClusterToPointInTimeResult < Struct.new(
17043
17432
  :db_cluster)
17433
+ SENSITIVE = []
17044
17434
  include Aws::Structure
17045
17435
  end
17046
17436
 
@@ -17166,12 +17556,19 @@ module Aws::RDS
17166
17556
  #
17167
17557
  # @!attribute [rw] publicly_accessible
17168
17558
  # 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.
17559
+ # accessible.
17560
+ #
17561
+ # When the DB instance is publicly accessible, its DNS endpoint
17562
+ # resolves to the private IP address from within the DB instance's
17563
+ # VPC, and to the public IP address from outside of the DB instance's
17564
+ # VPC. Access to the DB instance is ultimately controlled by the
17565
+ # security group it uses, and that public access is not permitted if
17566
+ # the security group assigned to the DB instance doesn't permit it.
17567
+ #
17568
+ # When the DB instance isn't publicly accessible, it is an internal
17569
+ # DB instance with a DNS name that resolves to a private IP address.
17570
+ #
17571
+ # For more information, see CreateDBInstance.
17175
17572
  # @return [Boolean]
17176
17573
  #
17177
17574
  # @!attribute [rw] auto_minor_version_upgrade
@@ -17429,6 +17826,7 @@ module Aws::RDS
17429
17826
  :use_default_processor_features,
17430
17827
  :db_parameter_group_name,
17431
17828
  :deletion_protection)
17829
+ SENSITIVE = []
17432
17830
  include Aws::Structure
17433
17831
  end
17434
17832
 
@@ -17443,6 +17841,7 @@ module Aws::RDS
17443
17841
  #
17444
17842
  class RestoreDBInstanceFromDBSnapshotResult < Struct.new(
17445
17843
  :db_instance)
17844
+ SENSITIVE = []
17446
17845
  include Aws::Structure
17447
17846
  end
17448
17847
 
@@ -17719,12 +18118,19 @@ module Aws::RDS
17719
18118
  #
17720
18119
  # @!attribute [rw] publicly_accessible
17721
18120
  # 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.
18121
+ # accessible.
18122
+ #
18123
+ # When the DB instance is publicly accessible, its DNS endpoint
18124
+ # resolves to the private IP address from within the DB instance's
18125
+ # VPC, and to the public IP address from outside of the DB instance's
18126
+ # VPC. Access to the DB instance is ultimately controlled by the
18127
+ # security group it uses, and that public access is not permitted if
18128
+ # the security group assigned to the DB instance doesn't permit it.
18129
+ #
18130
+ # When the DB instance isn't publicly accessible, it is an internal
18131
+ # DB instance with a DNS name that resolves to a private IP address.
18132
+ #
18133
+ # For more information, see CreateDBInstance.
17728
18134
  # @return [Boolean]
17729
18135
  #
17730
18136
  # @!attribute [rw] tags
@@ -17824,9 +18230,11 @@ module Aws::RDS
17824
18230
  # @return [String]
17825
18231
  #
17826
18232
  # @!attribute [rw] source_engine_version
17827
- # The engine version of your source database.
18233
+ # The version of the database that the backup files were created from.
18234
+ #
18235
+ # MySQL versions 5.6 and 5.7 are supported.
17828
18236
  #
17829
- # Valid Values: `5.6`
18237
+ # Example: `5.6.40`
17830
18238
  # @return [String]
17831
18239
  #
17832
18240
  # @!attribute [rw] s3_bucket_name
@@ -17949,6 +18357,7 @@ module Aws::RDS
17949
18357
  :processor_features,
17950
18358
  :use_default_processor_features,
17951
18359
  :deletion_protection)
18360
+ SENSITIVE = []
17952
18361
  include Aws::Structure
17953
18362
  end
17954
18363
 
@@ -17963,6 +18372,7 @@ module Aws::RDS
17963
18372
  #
17964
18373
  class RestoreDBInstanceFromS3Result < Struct.new(
17965
18374
  :db_instance)
18375
+ SENSITIVE = []
17966
18376
  include Aws::Structure
17967
18377
  end
17968
18378
 
@@ -18112,12 +18522,19 @@ module Aws::RDS
18112
18522
  #
18113
18523
  # @!attribute [rw] publicly_accessible
18114
18524
  # 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.
18525
+ # accessible.
18526
+ #
18527
+ # When the DB instance is publicly accessible, its DNS endpoint
18528
+ # resolves to the private IP address from within the DB instance's
18529
+ # VPC, and to the public IP address from outside of the DB instance's
18530
+ # VPC. Access to the DB instance is ultimately controlled by the
18531
+ # security group it uses, and that public access is not permitted if
18532
+ # the security group assigned to the DB instance doesn't permit it.
18533
+ #
18534
+ # When the DB instance isn't publicly accessible, it is an internal
18535
+ # DB instance with a DNS name that resolves to a private IP address.
18536
+ #
18537
+ # For more information, see CreateDBInstance.
18121
18538
  # @return [Boolean]
18122
18539
  #
18123
18540
  # @!attribute [rw] auto_minor_version_upgrade
@@ -18371,6 +18788,7 @@ module Aws::RDS
18371
18788
  :db_parameter_group_name,
18372
18789
  :deletion_protection,
18373
18790
  :source_dbi_resource_id)
18791
+ SENSITIVE = []
18374
18792
  include Aws::Structure
18375
18793
  end
18376
18794
 
@@ -18385,6 +18803,7 @@ module Aws::RDS
18385
18803
  #
18386
18804
  class RestoreDBInstanceToPointInTimeResult < Struct.new(
18387
18805
  :db_instance)
18806
+ SENSITIVE = []
18388
18807
  include Aws::Structure
18389
18808
  end
18390
18809
 
@@ -18403,6 +18822,7 @@ module Aws::RDS
18403
18822
  class RestoreWindow < Struct.new(
18404
18823
  :earliest_time,
18405
18824
  :latest_time)
18825
+ SENSITIVE = []
18406
18826
  include Aws::Structure
18407
18827
  end
18408
18828
 
@@ -18458,6 +18878,7 @@ module Aws::RDS
18458
18878
  :ec2_security_group_name,
18459
18879
  :ec2_security_group_id,
18460
18880
  :ec2_security_group_owner_id)
18881
+ SENSITIVE = []
18461
18882
  include Aws::Structure
18462
18883
  end
18463
18884
 
@@ -18472,6 +18893,7 @@ module Aws::RDS
18472
18893
  #
18473
18894
  class RevokeDBSecurityGroupIngressResult < Struct.new(
18474
18895
  :db_security_group)
18896
+ SENSITIVE = []
18475
18897
  include Aws::Structure
18476
18898
  end
18477
18899
 
@@ -18588,6 +19010,7 @@ module Aws::RDS
18588
19010
  :auto_pause,
18589
19011
  :seconds_until_auto_pause,
18590
19012
  :timeout_action)
19013
+ SENSITIVE = []
18591
19014
  include Aws::Structure
18592
19015
  end
18593
19016
 
@@ -18638,6 +19061,7 @@ module Aws::RDS
18638
19061
  :auto_pause,
18639
19062
  :seconds_until_auto_pause,
18640
19063
  :timeout_action)
19064
+ SENSITIVE = []
18641
19065
  include Aws::Structure
18642
19066
  end
18643
19067
 
@@ -18682,6 +19106,7 @@ module Aws::RDS
18682
19106
  :region_name,
18683
19107
  :endpoint,
18684
19108
  :status)
19109
+ SENSITIVE = []
18685
19110
  include Aws::Structure
18686
19111
  end
18687
19112
 
@@ -18705,6 +19130,7 @@ module Aws::RDS
18705
19130
  class SourceRegionMessage < Struct.new(
18706
19131
  :marker,
18707
19132
  :source_regions)
19133
+ SENSITIVE = []
18708
19134
  include Aws::Structure
18709
19135
  end
18710
19136
 
@@ -18749,6 +19175,7 @@ module Aws::RDS
18749
19175
  :mode,
18750
19176
  :kms_key_id,
18751
19177
  :apply_immediately)
19178
+ SENSITIVE = []
18752
19179
  include Aws::Structure
18753
19180
  end
18754
19181
 
@@ -18784,6 +19211,7 @@ module Aws::RDS
18784
19211
  :status,
18785
19212
  :mode,
18786
19213
  :apply_immediately)
19214
+ SENSITIVE = []
18787
19215
  include Aws::Structure
18788
19216
  end
18789
19217
 
@@ -18803,6 +19231,7 @@ module Aws::RDS
18803
19231
  #
18804
19232
  class StartDBClusterMessage < Struct.new(
18805
19233
  :db_cluster_identifier)
19234
+ SENSITIVE = []
18806
19235
  include Aws::Structure
18807
19236
  end
18808
19237
 
@@ -18817,6 +19246,7 @@ module Aws::RDS
18817
19246
  #
18818
19247
  class StartDBClusterResult < Struct.new(
18819
19248
  :db_cluster)
19249
+ SENSITIVE = []
18820
19250
  include Aws::Structure
18821
19251
  end
18822
19252
 
@@ -18835,6 +19265,7 @@ module Aws::RDS
18835
19265
  #
18836
19266
  class StartDBInstanceMessage < Struct.new(
18837
19267
  :db_instance_identifier)
19268
+ SENSITIVE = []
18838
19269
  include Aws::Structure
18839
19270
  end
18840
19271
 
@@ -18849,6 +19280,7 @@ module Aws::RDS
18849
19280
  #
18850
19281
  class StartDBInstanceResult < Struct.new(
18851
19282
  :db_instance)
19283
+ SENSITIVE = []
18852
19284
  include Aws::Structure
18853
19285
  end
18854
19286
 
@@ -18928,6 +19360,7 @@ module Aws::RDS
18928
19360
  :kms_key_id,
18929
19361
  :s3_prefix,
18930
19362
  :export_only)
19363
+ SENSITIVE = []
18931
19364
  include Aws::Structure
18932
19365
  end
18933
19366
 
@@ -18956,6 +19389,7 @@ module Aws::RDS
18956
19389
  class StopActivityStreamRequest < Struct.new(
18957
19390
  :resource_arn,
18958
19391
  :apply_immediately)
19392
+ SENSITIVE = []
18959
19393
  include Aws::Structure
18960
19394
  end
18961
19395
 
@@ -18979,6 +19413,7 @@ module Aws::RDS
18979
19413
  :kms_key_id,
18980
19414
  :kinesis_stream_name,
18981
19415
  :status)
19416
+ SENSITIVE = []
18982
19417
  include Aws::Structure
18983
19418
  end
18984
19419
 
@@ -18998,6 +19433,7 @@ module Aws::RDS
18998
19433
  #
18999
19434
  class StopDBClusterMessage < Struct.new(
19000
19435
  :db_cluster_identifier)
19436
+ SENSITIVE = []
19001
19437
  include Aws::Structure
19002
19438
  end
19003
19439
 
@@ -19012,6 +19448,7 @@ module Aws::RDS
19012
19448
  #
19013
19449
  class StopDBClusterResult < Struct.new(
19014
19450
  :db_cluster)
19451
+ SENSITIVE = []
19015
19452
  include Aws::Structure
19016
19453
  end
19017
19454
 
@@ -19037,6 +19474,7 @@ module Aws::RDS
19037
19474
  class StopDBInstanceMessage < Struct.new(
19038
19475
  :db_instance_identifier,
19039
19476
  :db_snapshot_identifier)
19477
+ SENSITIVE = []
19040
19478
  include Aws::Structure
19041
19479
  end
19042
19480
 
@@ -19051,6 +19489,7 @@ module Aws::RDS
19051
19489
  #
19052
19490
  class StopDBInstanceResult < Struct.new(
19053
19491
  :db_instance)
19492
+ SENSITIVE = []
19054
19493
  include Aws::Structure
19055
19494
  end
19056
19495
 
@@ -19092,6 +19531,7 @@ module Aws::RDS
19092
19531
  :subnet_identifier,
19093
19532
  :subnet_availability_zone,
19094
19533
  :subnet_status)
19534
+ SENSITIVE = []
19095
19535
  include Aws::Structure
19096
19536
  end
19097
19537
 
@@ -19153,6 +19593,7 @@ module Aws::RDS
19153
19593
  class Tag < Struct.new(
19154
19594
  :key,
19155
19595
  :value)
19596
+ SENSITIVE = []
19156
19597
  include Aws::Structure
19157
19598
  end
19158
19599
 
@@ -19164,6 +19605,7 @@ module Aws::RDS
19164
19605
  #
19165
19606
  class TagListMessage < Struct.new(
19166
19607
  :tag_list)
19608
+ SENSITIVE = []
19167
19609
  include Aws::Structure
19168
19610
  end
19169
19611
 
@@ -19198,6 +19640,7 @@ module Aws::RDS
19198
19640
  :state,
19199
19641
  :reason,
19200
19642
  :description)
19643
+ SENSITIVE = []
19201
19644
  include Aws::Structure
19202
19645
  end
19203
19646
 
@@ -19213,6 +19656,7 @@ module Aws::RDS
19213
19656
  #
19214
19657
  class Timezone < Struct.new(
19215
19658
  :timezone_name)
19659
+ SENSITIVE = []
19216
19660
  include Aws::Structure
19217
19661
  end
19218
19662
 
@@ -19250,6 +19694,7 @@ module Aws::RDS
19250
19694
  :description,
19251
19695
  :auto_upgrade,
19252
19696
  :is_major_version_upgrade)
19697
+ SENSITIVE = []
19253
19698
  include Aws::Structure
19254
19699
  end
19255
19700
 
@@ -19305,6 +19750,7 @@ module Aws::RDS
19305
19750
  :auth_scheme,
19306
19751
  :secret_arn,
19307
19752
  :iam_auth)
19753
+ SENSITIVE = []
19308
19754
  include Aws::Structure
19309
19755
  end
19310
19756
 
@@ -19349,6 +19795,7 @@ module Aws::RDS
19349
19795
  :auth_scheme,
19350
19796
  :secret_arn,
19351
19797
  :iam_auth)
19798
+ SENSITIVE = []
19352
19799
  include Aws::Structure
19353
19800
  end
19354
19801
 
@@ -19370,6 +19817,7 @@ module Aws::RDS
19370
19817
  class ValidDBInstanceModificationsMessage < Struct.new(
19371
19818
  :storage,
19372
19819
  :valid_processor_features)
19820
+ SENSITIVE = []
19373
19821
  include Aws::Structure
19374
19822
  end
19375
19823
 
@@ -19408,6 +19856,7 @@ module Aws::RDS
19408
19856
  :provisioned_iops,
19409
19857
  :iops_to_storage_ratio,
19410
19858
  :supports_storage_autoscaling)
19859
+ SENSITIVE = []
19411
19860
  include Aws::Structure
19412
19861
  end
19413
19862
 
@@ -19427,6 +19876,7 @@ module Aws::RDS
19427
19876
  class VpcSecurityGroupMembership < Struct.new(
19428
19877
  :vpc_security_group_id,
19429
19878
  :status)
19879
+ SENSITIVE = []
19430
19880
  include Aws::Structure
19431
19881
  end
19432
19882
 
@@ -19475,6 +19925,7 @@ module Aws::RDS
19475
19925
  :vpn_psk,
19476
19926
  :vpn_name,
19477
19927
  :vpn_state)
19928
+ SENSITIVE = [:vpn_psk]
19478
19929
  include Aws::Structure
19479
19930
  end
19480
19931