aws-sdk-rds 1.86.1 → 1.87.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 +177 -48
  6. data/lib/aws-sdk-rds/client_api.rb +8 -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 +48 -0
  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 +59 -25
  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 +24 -5
  34. data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
  35. data/lib/aws-sdk-rds/types.rb +172 -46
  36. data/lib/aws-sdk-rds/waiters.rb +2 -0
  37. metadata +2 -2
@@ -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.
@@ -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
@@ -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
@@ -18112,12 +18231,19 @@ module Aws::RDS
18112
18231
  #
18113
18232
  # @!attribute [rw] publicly_accessible
18114
18233
  # 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.
18234
+ # accessible.
18235
+ #
18236
+ # When the DB instance is publicly accessible, its DNS endpoint
18237
+ # resolves to the private IP address from within the DB instance's
18238
+ # VPC, and to the public IP address from outside of the DB instance's
18239
+ # VPC. Access to the DB instance is ultimately controlled by the
18240
+ # security group it uses, and that public access is not permitted if
18241
+ # the security group assigned to the DB instance doesn't permit it.
18242
+ #
18243
+ # When the DB instance isn't publicly accessible, it is an internal
18244
+ # DB instance with a DNS name that resolves to a private IP address.
18245
+ #
18246
+ # For more information, see CreateDBInstance.
18121
18247
  # @return [Boolean]
18122
18248
  #
18123
18249
  # @!attribute [rw] auto_minor_version_upgrade