aws-sdk-rds 1.82.0 → 1.87.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +3 -1
- data/lib/aws-sdk-rds/account_quota.rb +2 -0
- data/lib/aws-sdk-rds/certificate.rb +2 -0
- data/lib/aws-sdk-rds/client.rb +209 -51
- data/lib/aws-sdk-rds/client_api.rb +10 -0
- data/lib/aws-sdk-rds/customizations.rb +2 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +48 -0
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
- data/lib/aws-sdk-rds/db_engine.rb +2 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +2 -0
- data/lib/aws-sdk-rds/db_instance.rb +59 -25
- data/lib/aws-sdk-rds/db_log_file.rb +2 -0
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +2 -0
- data/lib/aws-sdk-rds/db_security_group.rb +2 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +18 -9
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +2 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +2 -0
- data/lib/aws-sdk-rds/errors.rb +2 -0
- data/lib/aws-sdk-rds/event.rb +2 -0
- data/lib/aws-sdk-rds/event_category_map.rb +2 -0
- data/lib/aws-sdk-rds/event_subscription.rb +2 -0
- data/lib/aws-sdk-rds/option_group.rb +2 -0
- data/lib/aws-sdk-rds/option_group_option.rb +2 -0
- data/lib/aws-sdk-rds/parameter.rb +2 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +2 -0
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +2 -0
- data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -0
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +2 -0
- data/lib/aws-sdk-rds/resource.rb +24 -5
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
- data/lib/aws-sdk-rds/types.rb +190 -48
- data/lib/aws-sdk-rds/waiters.rb +2 -0
- metadata +4 -4
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -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
|
-
#
|
1133
|
-
#
|
1134
|
-
#
|
1135
|
-
#
|
1136
|
-
#
|
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.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -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.
|
3012
|
-
#
|
3013
|
-
#
|
3014
|
-
#
|
3015
|
-
#
|
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.
|
3530
|
-
#
|
3531
|
-
#
|
3532
|
-
#
|
3533
|
-
#
|
3534
|
-
#
|
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.
|
5998
|
-
#
|
5999
|
-
#
|
6000
|
-
#
|
6001
|
-
#
|
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
|
-
#
|
7109
|
-
#
|
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
|
7140
|
-
#
|
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
|
@@ -10430,6 +10485,7 @@ module Aws::RDS
|
|
10430
10485
|
# engine_version: "String",
|
10431
10486
|
# db_instance_class: "String",
|
10432
10487
|
# license_model: "String",
|
10488
|
+
# availability_zone_group: "String",
|
10433
10489
|
# vpc: false,
|
10434
10490
|
# filters: [
|
10435
10491
|
# {
|
@@ -10461,6 +10517,15 @@ module Aws::RDS
|
|
10461
10517
|
# the available offerings matching the specified license model.
|
10462
10518
|
# @return [String]
|
10463
10519
|
#
|
10520
|
+
# @!attribute [rw] availability_zone_group
|
10521
|
+
# The Availability Zone group associated with a Local Zone. Specify
|
10522
|
+
# this parameter to retrieve available offerings for the Local Zones
|
10523
|
+
# in the group.
|
10524
|
+
#
|
10525
|
+
# Omit this parameter to show the available offerings in the specified
|
10526
|
+
# AWS Region.
|
10527
|
+
# @return [String]
|
10528
|
+
#
|
10464
10529
|
# @!attribute [rw] vpc
|
10465
10530
|
# A value that indicates whether to show only VPC or non-VPC
|
10466
10531
|
# offerings.
|
@@ -10495,6 +10560,7 @@ module Aws::RDS
|
|
10495
10560
|
:engine_version,
|
10496
10561
|
:db_instance_class,
|
10497
10562
|
:license_model,
|
10563
|
+
:availability_zone_group,
|
10498
10564
|
:vpc,
|
10499
10565
|
:filters,
|
10500
10566
|
:max_records,
|
@@ -11622,12 +11688,19 @@ module Aws::RDS
|
|
11622
11688
|
# which it is associated.
|
11623
11689
|
# @return [Boolean]
|
11624
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
|
+
#
|
11625
11697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterMember AWS API Documentation
|
11626
11698
|
#
|
11627
11699
|
class GlobalClusterMember < Struct.new(
|
11628
11700
|
:db_cluster_arn,
|
11629
11701
|
:readers,
|
11630
|
-
:is_writer
|
11702
|
+
:is_writer,
|
11703
|
+
:global_write_forwarding_status)
|
11631
11704
|
include Aws::Structure
|
11632
11705
|
end
|
11633
11706
|
|
@@ -12292,6 +12365,7 @@ module Aws::RDS
|
|
12292
12365
|
# deletion_protection: false,
|
12293
12366
|
# enable_http_endpoint: false,
|
12294
12367
|
# copy_tags_to_snapshot: false,
|
12368
|
+
# enable_global_write_forwarding: false,
|
12295
12369
|
# }
|
12296
12370
|
#
|
12297
12371
|
# @!attribute [rw] db_cluster_identifier
|
@@ -12452,6 +12526,10 @@ module Aws::RDS
|
|
12452
12526
|
# The target backtrack window, in seconds. To disable backtracking,
|
12453
12527
|
# set this value to 0.
|
12454
12528
|
#
|
12529
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
12530
|
+
#
|
12531
|
+
# </note>
|
12532
|
+
#
|
12455
12533
|
# Default: 0
|
12456
12534
|
#
|
12457
12535
|
# Constraints:
|
@@ -12568,6 +12646,15 @@ module Aws::RDS
|
|
12568
12646
|
# to snapshots of the DB cluster. The default is not to copy them.
|
12569
12647
|
# @return [Boolean]
|
12570
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
|
+
#
|
12571
12658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
12572
12659
|
#
|
12573
12660
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -12593,7 +12680,8 @@ module Aws::RDS
|
|
12593
12680
|
:scaling_configuration,
|
12594
12681
|
:deletion_protection,
|
12595
12682
|
:enable_http_endpoint,
|
12596
|
-
:copy_tags_to_snapshot
|
12683
|
+
:copy_tags_to_snapshot,
|
12684
|
+
:enable_global_write_forwarding)
|
12597
12685
|
include Aws::Structure
|
12598
12686
|
end
|
12599
12687
|
|
@@ -12669,6 +12757,11 @@ module Aws::RDS
|
|
12669
12757
|
#
|
12670
12758
|
# To manage authorization for other AWS accounts to copy or restore a
|
12671
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>
|
12672
12765
|
# @return [String]
|
12673
12766
|
#
|
12674
12767
|
# @!attribute [rw] values_to_add
|
@@ -13288,11 +13381,17 @@ module Aws::RDS
|
|
13288
13381
|
#
|
13289
13382
|
# @!attribute [rw] publicly_accessible
|
13290
13383
|
# A value that indicates whether the DB instance is publicly
|
13291
|
-
# accessible.
|
13292
|
-
#
|
13293
|
-
#
|
13294
|
-
#
|
13295
|
-
#
|
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.
|
13296
13395
|
#
|
13297
13396
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
13298
13397
|
# instance must be part of a public subnet and `PubliclyAccessible`
|
@@ -13735,6 +13834,11 @@ module Aws::RDS
|
|
13735
13834
|
#
|
13736
13835
|
# To manage authorization for other AWS accounts to copy or restore a
|
13737
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>
|
13738
13842
|
# @return [String]
|
13739
13843
|
#
|
13740
13844
|
# @!attribute [rw] values_to_add
|
@@ -14644,6 +14748,10 @@ module Aws::RDS
|
|
14644
14748
|
# The license model for a DB instance.
|
14645
14749
|
# @return [String]
|
14646
14750
|
#
|
14751
|
+
# @!attribute [rw] availability_zone_group
|
14752
|
+
# The Availability Zone group for a DB instance.
|
14753
|
+
# @return [String]
|
14754
|
+
#
|
14647
14755
|
# @!attribute [rw] availability_zones
|
14648
14756
|
# A list of Availability Zones for a DB instance.
|
14649
14757
|
# @return [Array<Types::AvailabilityZone>]
|
@@ -14728,8 +14836,8 @@ module Aws::RDS
|
|
14728
14836
|
# @return [Array<String>]
|
14729
14837
|
#
|
14730
14838
|
# @!attribute [rw] supports_storage_autoscaling
|
14731
|
-
# Whether
|
14732
|
-
#
|
14839
|
+
# Whether Amazon RDS can automatically scale storage for DB instances
|
14840
|
+
# that use the specified DB instance class.
|
14733
14841
|
# @return [Boolean]
|
14734
14842
|
#
|
14735
14843
|
# @!attribute [rw] supports_kerberos_authentication
|
@@ -14743,6 +14851,7 @@ module Aws::RDS
|
|
14743
14851
|
:engine_version,
|
14744
14852
|
:db_instance_class,
|
14745
14853
|
:license_model,
|
14854
|
+
:availability_zone_group,
|
14746
14855
|
:availability_zones,
|
14747
14856
|
:multi_az_capable,
|
14748
14857
|
:read_replica_capable,
|
@@ -16334,6 +16443,10 @@ module Aws::RDS
|
|
16334
16443
|
# The target backtrack window, in seconds. To disable backtracking,
|
16335
16444
|
# set this value to 0.
|
16336
16445
|
#
|
16446
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
16447
|
+
#
|
16448
|
+
# </note>
|
16449
|
+
#
|
16337
16450
|
# Default: 0
|
16338
16451
|
#
|
16339
16452
|
# Constraints:
|
@@ -16628,6 +16741,10 @@ module Aws::RDS
|
|
16628
16741
|
# The target backtrack window, in seconds. To disable backtracking,
|
16629
16742
|
# set this value to 0.
|
16630
16743
|
#
|
16744
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
16745
|
+
#
|
16746
|
+
# </note>
|
16747
|
+
#
|
16631
16748
|
# Default: 0
|
16632
16749
|
#
|
16633
16750
|
# Constraints:
|
@@ -16920,6 +17037,10 @@ module Aws::RDS
|
|
16920
17037
|
# The target backtrack window, in seconds. To disable backtracking,
|
16921
17038
|
# set this value to 0.
|
16922
17039
|
#
|
17040
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
17041
|
+
#
|
17042
|
+
# </note>
|
17043
|
+
#
|
16923
17044
|
# Default: 0
|
16924
17045
|
#
|
16925
17046
|
# Constraints:
|
@@ -17150,12 +17271,19 @@ module Aws::RDS
|
|
17150
17271
|
#
|
17151
17272
|
# @!attribute [rw] publicly_accessible
|
17152
17273
|
# A value that indicates whether the DB instance is publicly
|
17153
|
-
# accessible.
|
17154
|
-
#
|
17155
|
-
#
|
17156
|
-
#
|
17157
|
-
#
|
17158
|
-
#
|
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.
|
17159
17287
|
# @return [Boolean]
|
17160
17288
|
#
|
17161
17289
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -17703,12 +17831,19 @@ module Aws::RDS
|
|
17703
17831
|
#
|
17704
17832
|
# @!attribute [rw] publicly_accessible
|
17705
17833
|
# A value that indicates whether the DB instance is publicly
|
17706
|
-
# accessible.
|
17707
|
-
#
|
17708
|
-
#
|
17709
|
-
#
|
17710
|
-
#
|
17711
|
-
#
|
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.
|
17712
17847
|
# @return [Boolean]
|
17713
17848
|
#
|
17714
17849
|
# @!attribute [rw] tags
|
@@ -18096,12 +18231,19 @@ module Aws::RDS
|
|
18096
18231
|
#
|
18097
18232
|
# @!attribute [rw] publicly_accessible
|
18098
18233
|
# A value that indicates whether the DB instance is publicly
|
18099
|
-
# accessible.
|
18100
|
-
#
|
18101
|
-
#
|
18102
|
-
#
|
18103
|
-
#
|
18104
|
-
#
|
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.
|
18105
18247
|
# @return [Boolean]
|
18106
18248
|
#
|
18107
18249
|
# @!attribute [rw] auto_minor_version_upgrade
|