aws-sdk-rds 1.83.0 → 1.88.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 +205 -56
  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 +179 -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:
@@ -1702,6 +1704,7 @@ module Aws::RDS
1702
1704
  # copy_tags_to_snapshot: false,
1703
1705
  # domain: "String",
1704
1706
  # domain_iam_role_name: "String",
1707
+ # enable_global_write_forwarding: false,
1705
1708
  # source_region: "String",
1706
1709
  # }
1707
1710
  #
@@ -2010,6 +2013,10 @@ module Aws::RDS
2010
2013
  # The target backtrack window, in seconds. To disable backtracking,
2011
2014
  # set this value to 0.
2012
2015
  #
2016
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
2017
+ #
2018
+ # </note>
2019
+ #
2013
2020
  # Default: 0
2014
2021
  #
2015
2022
  # Constraints:
@@ -2119,6 +2126,15 @@ module Aws::RDS
2119
2126
  # the Directory Service.
2120
2127
  # @return [String]
2121
2128
  #
2129
+ # @!attribute [rw] enable_global_write_forwarding
2130
+ # A value that indicates whether to enable write operations to be
2131
+ # forwarded from this cluster to the primary cluster in an Aurora
2132
+ # global database. The resulting changes are replicated back to this
2133
+ # cluster. This parameter only applies to DB clusters that are
2134
+ # secondary clusters in an Aurora global database. By default, Aurora
2135
+ # disallows write operations for secondary clusters.
2136
+ # @return [Boolean]
2137
+ #
2122
2138
  # @!attribute [rw] destination_region
2123
2139
  # @return [String]
2124
2140
  #
@@ -2162,6 +2178,7 @@ module Aws::RDS
2162
2178
  :copy_tags_to_snapshot,
2163
2179
  :domain,
2164
2180
  :domain_iam_role_name,
2181
+ :enable_global_write_forwarding,
2165
2182
  :destination_region,
2166
2183
  :source_region)
2167
2184
  include Aws::Structure
@@ -3008,11 +3025,17 @@ module Aws::RDS
3008
3025
  #
3009
3026
  # @!attribute [rw] publicly_accessible
3010
3027
  # 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.
3028
+ # accessible.
3029
+ #
3030
+ # When the DB instance is publicly accessible, its DNS endpoint
3031
+ # resolves to the private IP address from within the DB instance's
3032
+ # VPC, and to the public IP address from outside of the DB instance's
3033
+ # VPC. Access to the DB instance is ultimately controlled by the
3034
+ # security group it uses, and that public access is not permitted if
3035
+ # the security group assigned to the DB instance doesn't permit it.
3036
+ #
3037
+ # When the DB instance isn't publicly accessible, it is an internal
3038
+ # DB instance with a DNS name that resolves to a private IP address.
3016
3039
  #
3017
3040
  # Default: The default behavior varies depending on whether
3018
3041
  # `DBSubnetGroupName` is specified.
@@ -3526,12 +3549,19 @@ module Aws::RDS
3526
3549
  #
3527
3550
  # @!attribute [rw] publicly_accessible
3528
3551
  # 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.
3552
+ # accessible.
3553
+ #
3554
+ # When the DB instance is publicly accessible, its DNS endpoint
3555
+ # resolves to the private IP address from within the DB instance's
3556
+ # VPC, and to the public IP address from outside of the DB instance's
3557
+ # VPC. Access to the DB instance is ultimately controlled by the
3558
+ # security group it uses, and that public access is not permitted if
3559
+ # the security group assigned to the DB instance doesn't permit it.
3560
+ #
3561
+ # When the DB instance isn't publicly accessible, it is an internal
3562
+ # DB instance with a DNS name that resolves to a private IP address.
3563
+ #
3564
+ # For more information, see CreateDBInstance.
3535
3565
  # @return [Boolean]
3536
3566
  #
3537
3567
  # @!attribute [rw] tags
@@ -4925,6 +4955,21 @@ module Aws::RDS
4925
4955
  # DB cluster.
4926
4956
  # @return [Array<Types::DomainMembership>]
4927
4957
  #
4958
+ # @!attribute [rw] global_write_forwarding_status
4959
+ # Specifies whether a secondary cluster in an Aurora global database
4960
+ # has write forwarding enabled, not enabled, or is in the process of
4961
+ # enabling it.
4962
+ # @return [String]
4963
+ #
4964
+ # @!attribute [rw] global_write_forwarding_requested
4965
+ # Specifies whether you have requested to enable write forwarding for
4966
+ # a secondary cluster in an Aurora global database. Because write
4967
+ # forwarding takes time to enable, check the value of
4968
+ # `GlobalWriteForwardingStatus` to confirm that the request has
4969
+ # completed before using the write forwarding feature for this
4970
+ # cluster.
4971
+ # @return [Boolean]
4972
+ #
4928
4973
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
4929
4974
  #
4930
4975
  class DBCluster < Struct.new(
@@ -4979,7 +5024,9 @@ module Aws::RDS
4979
5024
  :activity_stream_kinesis_stream_name,
4980
5025
  :copy_tags_to_snapshot,
4981
5026
  :cross_account_clone,
4982
- :domain_memberships)
5027
+ :domain_memberships,
5028
+ :global_write_forwarding_status,
5029
+ :global_write_forwarding_requested)
4983
5030
  include Aws::Structure
4984
5031
  end
4985
5032
 
@@ -5994,11 +6041,19 @@ module Aws::RDS
5994
6041
  # @return [String]
5995
6042
  #
5996
6043
  # @!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.
6044
+ # Specifies the accessibility options for the DB instance.
6045
+ #
6046
+ # When the DB instance is publicly accessible, its DNS endpoint
6047
+ # resolves to the private IP address from within the DB instance's
6048
+ # VPC, and to the public IP address from outside of the DB instance's
6049
+ # VPC. Access to the DB instance is ultimately controlled by the
6050
+ # security group it uses, and that public access is not permitted if
6051
+ # the security group assigned to the DB instance doesn't permit it.
6052
+ #
6053
+ # When the DB instance isn't publicly accessible, it is an internal
6054
+ # DB instance with a DNS name that resolves to a private IP address.
6055
+ #
6056
+ # For more information, see CreateDBInstance.
6002
6057
  # @return [Boolean]
6003
6058
  #
6004
6059
  # @!attribute [rw] status_infos
@@ -7105,8 +7160,8 @@ module Aws::RDS
7105
7160
  # @return [String]
7106
7161
  #
7107
7162
  # @!attribute [rw] snapshot_create_time
7108
- # Provides the time when the snapshot was taken, in Universal
7109
- # Coordinated Time (UTC).
7163
+ # Specifies when the snapshot was taken in Coodinated Universal Time
7164
+ # (UTC).
7110
7165
  # @return [Time]
7111
7166
  #
7112
7167
  # @!attribute [rw] engine
@@ -7136,8 +7191,8 @@ module Aws::RDS
7136
7191
  # @return [String]
7137
7192
  #
7138
7193
  # @!attribute [rw] instance_create_time
7139
- # Specifies the time when the snapshot was taken, in Universal
7140
- # Coordinated Time (UTC).
7194
+ # Specifies the time in Coordinated Universal Time (UTC) when the DB
7195
+ # instance, from which the snapshot was taken, was created.
7141
7196
  # @return [Time]
7142
7197
  #
7143
7198
  # @!attribute [rw] master_username
@@ -11633,12 +11688,19 @@ module Aws::RDS
11633
11688
  # which it is associated.
11634
11689
  # @return [Boolean]
11635
11690
  #
11691
+ # @!attribute [rw] global_write_forwarding_status
11692
+ # Specifies whether a secondary cluster in an Aurora global database
11693
+ # has write forwarding enabled, not enabled, or is in the process of
11694
+ # enabling it.
11695
+ # @return [String]
11696
+ #
11636
11697
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterMember AWS API Documentation
11637
11698
  #
11638
11699
  class GlobalClusterMember < Struct.new(
11639
11700
  :db_cluster_arn,
11640
11701
  :readers,
11641
- :is_writer)
11702
+ :is_writer,
11703
+ :global_write_forwarding_status)
11642
11704
  include Aws::Structure
11643
11705
  end
11644
11706
 
@@ -12303,6 +12365,7 @@ module Aws::RDS
12303
12365
  # deletion_protection: false,
12304
12366
  # enable_http_endpoint: false,
12305
12367
  # copy_tags_to_snapshot: false,
12368
+ # enable_global_write_forwarding: false,
12306
12369
  # }
12307
12370
  #
12308
12371
  # @!attribute [rw] db_cluster_identifier
@@ -12463,6 +12526,10 @@ module Aws::RDS
12463
12526
  # The target backtrack window, in seconds. To disable backtracking,
12464
12527
  # set this value to 0.
12465
12528
  #
12529
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
12530
+ #
12531
+ # </note>
12532
+ #
12466
12533
  # Default: 0
12467
12534
  #
12468
12535
  # Constraints:
@@ -12579,6 +12646,15 @@ module Aws::RDS
12579
12646
  # to snapshots of the DB cluster. The default is not to copy them.
12580
12647
  # @return [Boolean]
12581
12648
  #
12649
+ # @!attribute [rw] enable_global_write_forwarding
12650
+ # A value that indicates whether to enable write operations to be
12651
+ # forwarded from this cluster to the primary cluster in an Aurora
12652
+ # global database. The resulting changes are replicated back to this
12653
+ # cluster. This parameter only applies to DB clusters that are
12654
+ # secondary clusters in an Aurora global database. By default, Aurora
12655
+ # disallows write operations for secondary clusters.
12656
+ # @return [Boolean]
12657
+ #
12582
12658
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
12583
12659
  #
12584
12660
  class ModifyDBClusterMessage < Struct.new(
@@ -12604,7 +12680,8 @@ module Aws::RDS
12604
12680
  :scaling_configuration,
12605
12681
  :deletion_protection,
12606
12682
  :enable_http_endpoint,
12607
- :copy_tags_to_snapshot)
12683
+ :copy_tags_to_snapshot,
12684
+ :enable_global_write_forwarding)
12608
12685
  include Aws::Structure
12609
12686
  end
12610
12687
 
@@ -12680,6 +12757,11 @@ module Aws::RDS
12680
12757
  #
12681
12758
  # To manage authorization for other AWS accounts to copy or restore a
12682
12759
  # manual DB cluster snapshot, set this value to `restore`.
12760
+ #
12761
+ # <note markdown="1"> To view the list of attributes available to modify, use the
12762
+ # DescribeDBClusterSnapshotAttributes API action.
12763
+ #
12764
+ # </note>
12683
12765
  # @return [String]
12684
12766
  #
12685
12767
  # @!attribute [rw] values_to_add
@@ -13299,11 +13381,17 @@ module Aws::RDS
13299
13381
  #
13300
13382
  # @!attribute [rw] publicly_accessible
13301
13383
  # 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.
13384
+ # accessible.
13385
+ #
13386
+ # When the DB instance is publicly accessible, its DNS endpoint
13387
+ # resolves to the private IP address from within the DB instance's
13388
+ # VPC, and to the public IP address from outside of the DB instance's
13389
+ # VPC. Access to the DB instance is ultimately controlled by the
13390
+ # security group it uses, and that public access is not permitted if
13391
+ # the security group assigned to the DB instance doesn't permit it.
13392
+ #
13393
+ # When the DB instance isn't publicly accessible, it is an internal
13394
+ # DB instance with a DNS name that resolves to a private IP address.
13307
13395
  #
13308
13396
  # `PubliclyAccessible` only applies to DB instances in a VPC. The DB
13309
13397
  # instance must be part of a public subnet and `PubliclyAccessible`
@@ -13746,6 +13834,11 @@ module Aws::RDS
13746
13834
  #
13747
13835
  # To manage authorization for other AWS accounts to copy or restore a
13748
13836
  # manual DB snapshot, set this value to `restore`.
13837
+ #
13838
+ # <note markdown="1"> To view the list of attributes available to modify, use the
13839
+ # DescribeDBSnapshotAttributes API action.
13840
+ #
13841
+ # </note>
13749
13842
  # @return [String]
13750
13843
  #
13751
13844
  # @!attribute [rw] values_to_add
@@ -16113,7 +16206,7 @@ module Aws::RDS
16113
16206
  #
16114
16207
  # @!attribute [rw] db_cluster_identifier
16115
16208
  # 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.
16209
+ # Amazon S3 bucket. This parameter isn't case-sensitive.
16117
16210
  #
16118
16211
  # Constraints:
16119
16212
  #
@@ -16323,9 +16416,9 @@ module Aws::RDS
16323
16416
  # @!attribute [rw] source_engine_version
16324
16417
  # The version of the database that the backup files were created from.
16325
16418
  #
16326
- # MySQL version 5.5 and 5.6 are supported.
16419
+ # MySQL versions 5.5, 5.6, and 5.7 are supported.
16327
16420
  #
16328
- # Example: `5.6.22`
16421
+ # Example: `5.6.40`
16329
16422
  # @return [String]
16330
16423
  #
16331
16424
  # @!attribute [rw] s3_bucket_name
@@ -16350,6 +16443,10 @@ module Aws::RDS
16350
16443
  # The target backtrack window, in seconds. To disable backtracking,
16351
16444
  # set this value to 0.
16352
16445
  #
16446
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
16447
+ #
16448
+ # </note>
16449
+ #
16353
16450
  # Default: 0
16354
16451
  #
16355
16452
  # Constraints:
@@ -16644,6 +16741,10 @@ module Aws::RDS
16644
16741
  # The target backtrack window, in seconds. To disable backtracking,
16645
16742
  # set this value to 0.
16646
16743
  #
16744
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
16745
+ #
16746
+ # </note>
16747
+ #
16647
16748
  # Default: 0
16648
16749
  #
16649
16750
  # Constraints:
@@ -16936,6 +17037,10 @@ module Aws::RDS
16936
17037
  # The target backtrack window, in seconds. To disable backtracking,
16937
17038
  # set this value to 0.
16938
17039
  #
17040
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
17041
+ #
17042
+ # </note>
17043
+ #
16939
17044
  # Default: 0
16940
17045
  #
16941
17046
  # Constraints:
@@ -17166,12 +17271,19 @@ module Aws::RDS
17166
17271
  #
17167
17272
  # @!attribute [rw] publicly_accessible
17168
17273
  # 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.
17274
+ # accessible.
17275
+ #
17276
+ # When the DB instance is publicly accessible, its DNS endpoint
17277
+ # resolves to the private IP address from within the DB instance's
17278
+ # VPC, and to the public IP address from outside of the DB instance's
17279
+ # VPC. Access to the DB instance is ultimately controlled by the
17280
+ # security group it uses, and that public access is not permitted if
17281
+ # the security group assigned to the DB instance doesn't permit it.
17282
+ #
17283
+ # When the DB instance isn't publicly accessible, it is an internal
17284
+ # DB instance with a DNS name that resolves to a private IP address.
17285
+ #
17286
+ # For more information, see CreateDBInstance.
17175
17287
  # @return [Boolean]
17176
17288
  #
17177
17289
  # @!attribute [rw] auto_minor_version_upgrade
@@ -17719,12 +17831,19 @@ module Aws::RDS
17719
17831
  #
17720
17832
  # @!attribute [rw] publicly_accessible
17721
17833
  # 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.
17834
+ # accessible.
17835
+ #
17836
+ # When the DB instance is publicly accessible, its DNS endpoint
17837
+ # resolves to the private IP address from within the DB instance's
17838
+ # VPC, and to the public IP address from outside of the DB instance's
17839
+ # VPC. Access to the DB instance is ultimately controlled by the
17840
+ # security group it uses, and that public access is not permitted if
17841
+ # the security group assigned to the DB instance doesn't permit it.
17842
+ #
17843
+ # When the DB instance isn't publicly accessible, it is an internal
17844
+ # DB instance with a DNS name that resolves to a private IP address.
17845
+ #
17846
+ # For more information, see CreateDBInstance.
17728
17847
  # @return [Boolean]
17729
17848
  #
17730
17849
  # @!attribute [rw] tags
@@ -17824,9 +17943,11 @@ module Aws::RDS
17824
17943
  # @return [String]
17825
17944
  #
17826
17945
  # @!attribute [rw] source_engine_version
17827
- # The engine version of your source database.
17946
+ # The version of the database that the backup files were created from.
17947
+ #
17948
+ # MySQL versions 5.6 and 5.7 are supported.
17828
17949
  #
17829
- # Valid Values: `5.6`
17950
+ # Example: `5.6.40`
17830
17951
  # @return [String]
17831
17952
  #
17832
17953
  # @!attribute [rw] s3_bucket_name
@@ -18112,12 +18233,19 @@ module Aws::RDS
18112
18233
  #
18113
18234
  # @!attribute [rw] publicly_accessible
18114
18235
  # 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.
18236
+ # accessible.
18237
+ #
18238
+ # When the DB instance is publicly accessible, its DNS endpoint
18239
+ # resolves to the private IP address from within the DB instance's
18240
+ # VPC, and to the public IP address from outside of the DB instance's
18241
+ # VPC. Access to the DB instance is ultimately controlled by the
18242
+ # security group it uses, and that public access is not permitted if
18243
+ # the security group assigned to the DB instance doesn't permit it.
18244
+ #
18245
+ # When the DB instance isn't publicly accessible, it is an internal
18246
+ # DB instance with a DNS name that resolves to a private IP address.
18247
+ #
18248
+ # For more information, see CreateDBInstance.
18121
18249
  # @return [Boolean]
18122
18250
  #
18123
18251
  # @!attribute [rw] auto_minor_version_upgrade