aws-sdk-rds 1.54.0 → 1.55.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 +1 -1
- data/lib/aws-sdk-rds/client.rb +398 -416
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +78 -79
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +5 -5
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +11 -12
- data/lib/aws-sdk-rds/db_engine.rb +8 -10
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/db_instance.rb +200 -211
- data/lib/aws-sdk-rds/db_parameter_group.rb +4 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +28 -29
- data/lib/aws-sdk-rds/event_subscription.rb +3 -4
- data/lib/aws-sdk-rds/option_group.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +80 -85
- data/lib/aws-sdk-rds/types.rb +427 -525
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -23,91 +23,8 @@ module Aws::RDS
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# Describes a quota for an AWS account
|
27
|
-
#
|
28
|
-
# The following are account quotas:
|
29
|
-
#
|
30
|
-
# * `AllocatedStorage` - The total allocated storage per account, in
|
31
|
-
# GiB. The used value is the total allocated storage in the account,
|
32
|
-
# in GiB.
|
33
|
-
#
|
34
|
-
# * `AuthorizationsPerDBSecurityGroup` - The number of ingress rules per
|
35
|
-
# DB security group. The used value is the highest number of ingress
|
36
|
-
# rules in a DB security group in the account. Other DB security
|
37
|
-
# groups in the account might have a lower number of ingress rules.
|
38
|
-
#
|
39
|
-
# * `CustomEndpointsPerDBCluster` - The number of custom endpoints per
|
40
|
-
# DB cluster. The used value is the highest number of custom endpoints
|
41
|
-
# in a DB clusters in the account. Other DB clusters in the account
|
42
|
-
# might have a lower number of custom endpoints.
|
43
|
-
#
|
44
|
-
# * `DBClusterParameterGroups` - The number of DB cluster parameter
|
45
|
-
# groups per account, excluding default parameter groups. The used
|
46
|
-
# value is the count of nondefault DB cluster parameter groups in the
|
47
|
-
# account.
|
48
|
-
#
|
49
|
-
# * `DBClusterRoles` - The number of associated AWS Identity and Access
|
50
|
-
# Management (IAM) roles per DB cluster. The used value is the highest
|
51
|
-
# number of associated IAM roles for a DB cluster in the account.
|
52
|
-
# Other DB clusters in the account might have a lower number of
|
53
|
-
# associated IAM roles.
|
54
|
-
#
|
55
|
-
# * `DBClusters` - The number of DB clusters per account. The used value
|
56
|
-
# is the count of DB clusters in the account.
|
57
|
-
#
|
58
|
-
# * `DBInstanceRoles` - The number of associated IAM roles per DB
|
59
|
-
# instance. The used value is the highest number of associated IAM
|
60
|
-
# roles for a DB instance in the account. Other DB instances in the
|
61
|
-
# account might have a lower number of associated IAM roles.
|
62
|
-
#
|
63
|
-
# * `DBInstances` - The number of DB instances per account. The used
|
64
|
-
# value is the count of the DB instances in the account.
|
65
|
-
#
|
66
|
-
# * `DBParameterGroups` - The number of DB parameter groups per account,
|
67
|
-
# excluding default parameter groups. The used value is the count of
|
68
|
-
# nondefault DB parameter groups in the account.
|
69
|
-
#
|
70
|
-
# * `DBSecurityGroups` - The number of DB security groups (not VPC
|
71
|
-
# security groups) per account, excluding the default security group.
|
72
|
-
# The used value is the count of nondefault DB security groups in the
|
73
|
-
# account.
|
74
|
-
#
|
75
|
-
# * `DBSubnetGroups` - The number of DB subnet groups per account. The
|
76
|
-
# used value is the count of the DB subnet groups in the account.
|
77
|
-
#
|
78
|
-
# * `EventSubscriptions` - The number of event subscriptions per
|
79
|
-
# account. The used value is the count of the event subscriptions in
|
80
|
-
# the account.
|
81
|
-
#
|
82
|
-
# * `ManualSnapshots` - The number of manual DB snapshots per account.
|
83
|
-
# The used value is the count of the manual DB snapshots in the
|
84
|
-
# account.
|
85
|
-
#
|
86
|
-
# * `OptionGroups` - The number of DB option groups per account,
|
87
|
-
# excluding default option groups. The used value is the count of
|
88
|
-
# nondefault DB option groups in the account.
|
89
|
-
#
|
90
|
-
# * `ReadReplicasPerMaster` - The number of Read Replicas per DB
|
91
|
-
# instance. The used value is the highest number of Read Replicas for
|
92
|
-
# a DB instance in the account. Other DB instances in the account
|
93
|
-
# might have a lower number of Read Replicas.
|
94
|
-
#
|
95
|
-
# * `ReservedDBInstances` - The number of reserved DB instances per
|
96
|
-
# account. The used value is the count of the active reserved DB
|
97
|
-
# instances in the account.
|
98
|
-
#
|
99
|
-
# * `SubnetsPerDBSubnetGroup` - The number of subnets per DB subnet
|
100
|
-
# group. The used value is highest number of subnets for a DB subnet
|
101
|
-
# group in the account. Other DB subnet groups in the account might
|
102
|
-
# have a lower number of subnets.
|
103
|
-
#
|
104
|
-
# For more information, see [Limits][1] in the *Amazon RDS User Guide*
|
105
|
-
# and [Limits][2] in the *Amazon Aurora User Guide*.
|
106
|
-
#
|
107
|
-
#
|
108
|
-
#
|
109
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html
|
110
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html
|
26
|
+
# Describes a quota for an AWS account, for example, the number of DB
|
27
|
+
# instances allowed.
|
111
28
|
#
|
112
29
|
# @!attribute [rw] account_quota_name
|
113
30
|
# The name of the Amazon RDS quota for this AWS account.
|
@@ -512,17 +429,15 @@ module Aws::RDS
|
|
512
429
|
# @return [Time]
|
513
430
|
#
|
514
431
|
# @!attribute [rw] force
|
515
|
-
# A value that
|
516
|
-
#
|
517
|
-
#
|
432
|
+
# A value that, if specified, forces the DB cluster to backtrack when
|
433
|
+
# binary logging is enabled. Otherwise, an error occurs when binary
|
434
|
+
# logging is enabled.
|
518
435
|
# @return [Boolean]
|
519
436
|
#
|
520
437
|
# @!attribute [rw] use_earliest_time_on_point_in_time_unavailable
|
521
|
-
#
|
522
|
-
#
|
523
|
-
#
|
524
|
-
# parameter is disabled and *BacktrackTo* is set to a timestamp
|
525
|
-
# earlier than the earliest backtrack time, an error occurs.
|
438
|
+
# If *BacktrackTo* is set to a timestamp earlier than the earliest
|
439
|
+
# backtrack time, this value backtracks the DB cluster to the earliest
|
440
|
+
# possible backtrack time. Otherwise, an error occurs.
|
526
441
|
# @return [Boolean]
|
527
442
|
#
|
528
443
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BacktrackDBClusterMessage AWS API Documentation
|
@@ -868,9 +783,9 @@ module Aws::RDS
|
|
868
783
|
# @return [String]
|
869
784
|
#
|
870
785
|
# @!attribute [rw] copy_tags
|
871
|
-
#
|
872
|
-
#
|
873
|
-
#
|
786
|
+
# True to copy all tags from the source DB cluster snapshot to the
|
787
|
+
# target DB cluster snapshot, and otherwise false. The default is
|
788
|
+
# false.
|
874
789
|
# @return [Boolean]
|
875
790
|
#
|
876
791
|
# @!attribute [rw] tags
|
@@ -1102,8 +1017,8 @@ module Aws::RDS
|
|
1102
1017
|
# @return [Array<Types::Tag>]
|
1103
1018
|
#
|
1104
1019
|
# @!attribute [rw] copy_tags
|
1105
|
-
#
|
1106
|
-
# snapshot
|
1020
|
+
# True to copy all tags from the source DB snapshot to the target DB
|
1021
|
+
# snapshot, and otherwise false. The default is false.
|
1107
1022
|
# @return [Boolean]
|
1108
1023
|
#
|
1109
1024
|
# @!attribute [rw] pre_signed_url
|
@@ -1579,7 +1494,7 @@ module Aws::RDS
|
|
1579
1494
|
# @return [Array<Types::Tag>]
|
1580
1495
|
#
|
1581
1496
|
# @!attribute [rw] storage_encrypted
|
1582
|
-
#
|
1497
|
+
# Specifies whether the DB cluster is encrypted.
|
1583
1498
|
# @return [Boolean]
|
1584
1499
|
#
|
1585
1500
|
# @!attribute [rw] kms_key_id
|
@@ -1598,7 +1513,7 @@ module Aws::RDS
|
|
1598
1513
|
# source. Otherwise, Amazon RDS will use your default encryption
|
1599
1514
|
# key.
|
1600
1515
|
#
|
1601
|
-
# * If the `StorageEncrypted` parameter is
|
1516
|
+
# * If the `StorageEncrypted` parameter is true and
|
1602
1517
|
# `ReplicationSourceIdentifier` is not specified, then Amazon RDS
|
1603
1518
|
# will use your default encryption key.
|
1604
1519
|
#
|
@@ -1654,9 +1569,10 @@ module Aws::RDS
|
|
1654
1569
|
# @return [String]
|
1655
1570
|
#
|
1656
1571
|
# @!attribute [rw] enable_iam_database_authentication
|
1657
|
-
#
|
1658
|
-
#
|
1659
|
-
#
|
1572
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1573
|
+
# accounts to database accounts, and otherwise false.
|
1574
|
+
#
|
1575
|
+
# Default: `false`
|
1660
1576
|
# @return [Boolean]
|
1661
1577
|
#
|
1662
1578
|
# @!attribute [rw] backtrack_window
|
@@ -1695,9 +1611,9 @@ module Aws::RDS
|
|
1695
1611
|
# @return [Types::ScalingConfiguration]
|
1696
1612
|
#
|
1697
1613
|
# @!attribute [rw] deletion_protection
|
1698
|
-
#
|
1699
|
-
#
|
1700
|
-
#
|
1614
|
+
# Indicates whether the DB cluster should have deletion protection
|
1615
|
+
# enabled. The database can't be deleted when this value is set to
|
1616
|
+
# true. The default is false.
|
1701
1617
|
# @return [Boolean]
|
1702
1618
|
#
|
1703
1619
|
# @!attribute [rw] global_cluster_identifier
|
@@ -1706,8 +1622,8 @@ module Aws::RDS
|
|
1706
1622
|
# @return [String]
|
1707
1623
|
#
|
1708
1624
|
# @!attribute [rw] copy_tags_to_snapshot
|
1709
|
-
#
|
1710
|
-
#
|
1625
|
+
# True to copy all tags from the DB cluster to snapshots of the DB
|
1626
|
+
# cluster, and otherwise false. The default is false.
|
1711
1627
|
# @return [Boolean]
|
1712
1628
|
#
|
1713
1629
|
# @!attribute [rw] destination_region
|
@@ -2083,10 +1999,10 @@ module Aws::RDS
|
|
2083
1999
|
# following:
|
2084
2000
|
#
|
2085
2001
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2086
|
-
#
|
2002
|
+
# 32768.
|
2087
2003
|
#
|
2088
2004
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2089
|
-
#
|
2005
|
+
# 32768.
|
2090
2006
|
#
|
2091
2007
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2092
2008
|
#
|
@@ -2096,10 +2012,10 @@ module Aws::RDS
|
|
2096
2012
|
# following:
|
2097
2013
|
#
|
2098
2014
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2099
|
-
#
|
2015
|
+
# 32768.
|
2100
2016
|
#
|
2101
2017
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2102
|
-
#
|
2018
|
+
# 32768.
|
2103
2019
|
#
|
2104
2020
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2105
2021
|
#
|
@@ -2109,10 +2025,10 @@ module Aws::RDS
|
|
2109
2025
|
# following:
|
2110
2026
|
#
|
2111
2027
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2112
|
-
#
|
2028
|
+
# 32768.
|
2113
2029
|
#
|
2114
2030
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2115
|
-
#
|
2031
|
+
# 32768.
|
2116
2032
|
#
|
2117
2033
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2118
2034
|
#
|
@@ -2122,10 +2038,10 @@ module Aws::RDS
|
|
2122
2038
|
# following:
|
2123
2039
|
#
|
2124
2040
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2125
|
-
#
|
2041
|
+
# 32768.
|
2126
2042
|
#
|
2127
2043
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2128
|
-
#
|
2044
|
+
# 32768.
|
2129
2045
|
#
|
2130
2046
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
2131
2047
|
#
|
@@ -2330,8 +2246,8 @@ module Aws::RDS
|
|
2330
2246
|
#
|
2331
2247
|
# Example: `us-east-1d`
|
2332
2248
|
#
|
2333
|
-
# Constraint: The
|
2334
|
-
# the
|
2249
|
+
# Constraint: The AvailabilityZone parameter can't be specified if
|
2250
|
+
# the MultiAZ parameter is set to `true`. The specified Availability
|
2335
2251
|
# Zone must be in the same AWS Region as the current endpoint.
|
2336
2252
|
#
|
2337
2253
|
#
|
@@ -2480,9 +2396,9 @@ module Aws::RDS
|
|
2480
2396
|
# @return [Integer]
|
2481
2397
|
#
|
2482
2398
|
# @!attribute [rw] multi_az
|
2483
|
-
# A value that
|
2484
|
-
# deployment. You can't set the
|
2485
|
-
#
|
2399
|
+
# A value that specifies whether the DB instance is a Multi-AZ
|
2400
|
+
# deployment. You can't set the AvailabilityZone parameter if the
|
2401
|
+
# MultiAZ parameter is set to true.
|
2486
2402
|
# @return [Boolean]
|
2487
2403
|
#
|
2488
2404
|
# @!attribute [rw] engine_version
|
@@ -2535,9 +2451,10 @@ module Aws::RDS
|
|
2535
2451
|
# @return [String]
|
2536
2452
|
#
|
2537
2453
|
# @!attribute [rw] auto_minor_version_upgrade
|
2538
|
-
#
|
2539
|
-
#
|
2540
|
-
#
|
2454
|
+
# Indicates that minor engine upgrades are applied automatically to
|
2455
|
+
# the DB instance during the maintenance window.
|
2456
|
+
#
|
2457
|
+
# Default: `true`
|
2541
2458
|
# @return [Boolean]
|
2542
2459
|
#
|
2543
2460
|
# @!attribute [rw] license_model
|
@@ -2582,11 +2499,10 @@ module Aws::RDS
|
|
2582
2499
|
# @return [String]
|
2583
2500
|
#
|
2584
2501
|
# @!attribute [rw] publicly_accessible
|
2585
|
-
#
|
2586
|
-
#
|
2587
|
-
#
|
2588
|
-
#
|
2589
|
-
# publicly accessible, it is an internal instance with a DNS name that
|
2502
|
+
# Specifies the accessibility options for the DB instance. A value of
|
2503
|
+
# true specifies an Internet-facing instance with a publicly
|
2504
|
+
# resolvable DNS name, which resolves to a public IP address. A value
|
2505
|
+
# of false specifies an internal instance with a DNS name that
|
2590
2506
|
# resolves to a private IP address.
|
2591
2507
|
#
|
2592
2508
|
# Default: The default behavior varies depending on whether
|
@@ -2627,7 +2543,8 @@ module Aws::RDS
|
|
2627
2543
|
# If you specify `io1`, you must also include a value for the `Iops`
|
2628
2544
|
# parameter.
|
2629
2545
|
#
|
2630
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2546
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2547
|
+
# `standard`
|
2631
2548
|
# @return [String]
|
2632
2549
|
#
|
2633
2550
|
# @!attribute [rw] tde_credential_arn
|
@@ -2641,13 +2558,14 @@ module Aws::RDS
|
|
2641
2558
|
# @return [String]
|
2642
2559
|
#
|
2643
2560
|
# @!attribute [rw] storage_encrypted
|
2644
|
-
#
|
2645
|
-
# default, it is not encrypted.
|
2561
|
+
# Specifies whether the DB instance is encrypted.
|
2646
2562
|
#
|
2647
2563
|
# **Amazon Aurora**
|
2648
2564
|
#
|
2649
2565
|
# Not applicable. The encryption for DB instances is managed by the DB
|
2650
2566
|
# cluster.
|
2567
|
+
#
|
2568
|
+
# Default: false
|
2651
2569
|
# @return [Boolean]
|
2652
2570
|
#
|
2653
2571
|
# @!attribute [rw] kms_key_id
|
@@ -2664,11 +2582,11 @@ module Aws::RDS
|
|
2664
2582
|
# Not applicable. The KMS key identifier is managed by the DB cluster.
|
2665
2583
|
# For more information, see `CreateDBCluster`.
|
2666
2584
|
#
|
2667
|
-
# If `StorageEncrypted` is
|
2668
|
-
# the `KmsKeyId` parameter, then Amazon RDS will use your
|
2669
|
-
# encryption key. AWS KMS creates the default encryption key
|
2670
|
-
# AWS account. Your AWS account has a different default
|
2671
|
-
# for each AWS Region.
|
2585
|
+
# If the `StorageEncrypted` parameter is true, and you do not specify
|
2586
|
+
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
2587
|
+
# default encryption key. AWS KMS creates the default encryption key
|
2588
|
+
# for your AWS account. Your AWS account has a different default
|
2589
|
+
# encryption key for each AWS Region.
|
2672
2590
|
# @return [String]
|
2673
2591
|
#
|
2674
2592
|
# @!attribute [rw] domain
|
@@ -2686,8 +2604,8 @@ module Aws::RDS
|
|
2686
2604
|
# @return [String]
|
2687
2605
|
#
|
2688
2606
|
# @!attribute [rw] copy_tags_to_snapshot
|
2689
|
-
#
|
2690
|
-
#
|
2607
|
+
# True to copy all tags from the DB instance to snapshots of the DB
|
2608
|
+
# instance, and otherwise false. The default is false.
|
2691
2609
|
#
|
2692
2610
|
# **Amazon Aurora**
|
2693
2611
|
#
|
@@ -2752,9 +2670,8 @@ module Aws::RDS
|
|
2752
2670
|
# @return [String]
|
2753
2671
|
#
|
2754
2672
|
# @!attribute [rw] enable_iam_database_authentication
|
2755
|
-
#
|
2756
|
-
#
|
2757
|
-
# mapping is disabled.
|
2673
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2674
|
+
# accounts to database accounts, and otherwise false.
|
2758
2675
|
#
|
2759
2676
|
# You can enable IAM database authentication for the following
|
2760
2677
|
# database engines:
|
@@ -2769,11 +2686,13 @@ module Aws::RDS
|
|
2769
2686
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2770
2687
|
#
|
2771
2688
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
2689
|
+
#
|
2690
|
+
# Default: `false`
|
2772
2691
|
# @return [Boolean]
|
2773
2692
|
#
|
2774
2693
|
# @!attribute [rw] enable_performance_insights
|
2775
|
-
#
|
2776
|
-
#
|
2694
|
+
# True to enable Performance Insights for the DB instance, and
|
2695
|
+
# otherwise false.
|
2777
2696
|
#
|
2778
2697
|
# For more information, see [Using Amazon Performance Insights][1] in
|
2779
2698
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -2787,11 +2706,6 @@ module Aws::RDS
|
|
2787
2706
|
# The AWS KMS key identifier for encryption of Performance Insights
|
2788
2707
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2789
2708
|
# identifier, or the KMS key alias for the KMS encryption key.
|
2790
|
-
#
|
2791
|
-
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
2792
|
-
# then Amazon RDS uses your default encryption key. AWS KMS creates
|
2793
|
-
# the default encryption key for your AWS account. Your AWS account
|
2794
|
-
# has a different default encryption key for each AWS Region.
|
2795
2709
|
# @return [String]
|
2796
2710
|
#
|
2797
2711
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -2817,10 +2731,10 @@ module Aws::RDS
|
|
2817
2731
|
# @return [Array<Types::ProcessorFeature>]
|
2818
2732
|
#
|
2819
2733
|
# @!attribute [rw] deletion_protection
|
2820
|
-
#
|
2821
|
-
#
|
2822
|
-
#
|
2823
|
-
#
|
2734
|
+
# Indicates if the DB instance should have deletion protection
|
2735
|
+
# enabled. The database can't be deleted when this value is set to
|
2736
|
+
# true. The default is false. For more information, see [ Deleting a
|
2737
|
+
# DB Instance][1].
|
2824
2738
|
#
|
2825
2739
|
#
|
2826
2740
|
#
|
@@ -2997,8 +2911,7 @@ module Aws::RDS
|
|
2997
2911
|
# @return [Integer]
|
2998
2912
|
#
|
2999
2913
|
# @!attribute [rw] multi_az
|
3000
|
-
#
|
3001
|
-
# deployment.
|
2914
|
+
# Specifies whether the Read Replica is in a Multi-AZ deployment.
|
3002
2915
|
#
|
3003
2916
|
# You can create a Read Replica as a Multi-AZ DB instance. RDS creates
|
3004
2917
|
# a standby of your replica in another Availability Zone for failover
|
@@ -3008,8 +2921,8 @@ module Aws::RDS
|
|
3008
2921
|
# @return [Boolean]
|
3009
2922
|
#
|
3010
2923
|
# @!attribute [rw] auto_minor_version_upgrade
|
3011
|
-
#
|
3012
|
-
#
|
2924
|
+
# Indicates that minor engine upgrades are applied automatically to
|
2925
|
+
# the Read Replica during the maintenance window.
|
3013
2926
|
#
|
3014
2927
|
# Default: Inherits from the source DB instance
|
3015
2928
|
# @return [Boolean]
|
@@ -3025,13 +2938,12 @@ module Aws::RDS
|
|
3025
2938
|
# @return [String]
|
3026
2939
|
#
|
3027
2940
|
# @!attribute [rw] publicly_accessible
|
3028
|
-
#
|
3029
|
-
#
|
3030
|
-
#
|
3031
|
-
#
|
3032
|
-
# publicly accessible, it is an internal instance with a DNS name that
|
2941
|
+
# Specifies the accessibility options for the DB instance. A value of
|
2942
|
+
# true specifies an Internet-facing instance with a publicly
|
2943
|
+
# resolvable DNS name, which resolves to a public IP address. A value
|
2944
|
+
# of false specifies an internal instance with a DNS name that
|
3033
2945
|
# resolves to a private IP address. For more information, see
|
3034
|
-
# CreateDBInstance
|
2946
|
+
# `CreateDBInstance`.
|
3035
2947
|
# @return [Boolean]
|
3036
2948
|
#
|
3037
2949
|
# @!attribute [rw] tags
|
@@ -3087,13 +2999,13 @@ module Aws::RDS
|
|
3087
2999
|
# If you specify `io1`, you must also include a value for the `Iops`
|
3088
3000
|
# parameter.
|
3089
3001
|
#
|
3090
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
3002
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
3003
|
+
# `standard`
|
3091
3004
|
# @return [String]
|
3092
3005
|
#
|
3093
3006
|
# @!attribute [rw] copy_tags_to_snapshot
|
3094
|
-
#
|
3095
|
-
# Replica
|
3096
|
-
# copied.
|
3007
|
+
# True to copy all tags from the Read Replica to snapshots of the Read
|
3008
|
+
# Replica, and otherwise false. The default is false.
|
3097
3009
|
# @return [Boolean]
|
3098
3010
|
#
|
3099
3011
|
# @!attribute [rw] monitoring_interval
|
@@ -3197,9 +3109,8 @@ module Aws::RDS
|
|
3197
3109
|
# @return [String]
|
3198
3110
|
#
|
3199
3111
|
# @!attribute [rw] enable_iam_database_authentication
|
3200
|
-
#
|
3201
|
-
#
|
3202
|
-
# mapping is disabled.
|
3112
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
3113
|
+
# accounts to database accounts, and otherwise false.
|
3203
3114
|
#
|
3204
3115
|
# You can enable IAM database authentication for the following
|
3205
3116
|
# database engines
|
@@ -3209,11 +3120,13 @@ module Aws::RDS
|
|
3209
3120
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3210
3121
|
#
|
3211
3122
|
# * Aurora MySQL 5.6 or higher
|
3123
|
+
#
|
3124
|
+
# Default: `false`
|
3212
3125
|
# @return [Boolean]
|
3213
3126
|
#
|
3214
3127
|
# @!attribute [rw] enable_performance_insights
|
3215
|
-
#
|
3216
|
-
#
|
3128
|
+
# True to enable Performance Insights for the Read Replica, and
|
3129
|
+
# otherwise false.
|
3217
3130
|
#
|
3218
3131
|
# For more information, see [Using Amazon Performance Insights][1] in
|
3219
3132
|
# the *Amazon RDS User Guide*.
|
@@ -3227,11 +3140,6 @@ module Aws::RDS
|
|
3227
3140
|
# The AWS KMS key identifier for encryption of Performance Insights
|
3228
3141
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
3229
3142
|
# identifier, or the KMS key alias for the KMS encryption key.
|
3230
|
-
#
|
3231
|
-
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
3232
|
-
# then Amazon RDS uses your default encryption key. AWS KMS creates
|
3233
|
-
# the default encryption key for your AWS account. Your AWS account
|
3234
|
-
# has a different default encryption key for each AWS Region.
|
3235
3143
|
# @return [String]
|
3236
3144
|
#
|
3237
3145
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -3256,15 +3164,15 @@ module Aws::RDS
|
|
3256
3164
|
# @return [Array<Types::ProcessorFeature>]
|
3257
3165
|
#
|
3258
3166
|
# @!attribute [rw] use_default_processor_features
|
3259
|
-
# A value that
|
3260
|
-
#
|
3167
|
+
# A value that specifies that the DB instance class of the DB instance
|
3168
|
+
# uses its default processor features.
|
3261
3169
|
# @return [Boolean]
|
3262
3170
|
#
|
3263
3171
|
# @!attribute [rw] deletion_protection
|
3264
|
-
#
|
3265
|
-
#
|
3266
|
-
#
|
3267
|
-
#
|
3172
|
+
# Indicates if the DB instance should have deletion protection
|
3173
|
+
# enabled. The database can't be deleted when this value is set to
|
3174
|
+
# true. The default is false. For more information, see [ Deleting a
|
3175
|
+
# DB Instance][1].
|
3268
3176
|
#
|
3269
3177
|
#
|
3270
3178
|
#
|
@@ -3694,9 +3602,8 @@ module Aws::RDS
|
|
3694
3602
|
# @return [Array<String>]
|
3695
3603
|
#
|
3696
3604
|
# @!attribute [rw] enabled
|
3697
|
-
# A value
|
3698
|
-
#
|
3699
|
-
# is created but not active.
|
3605
|
+
# A Boolean value; set to **true** to activate the subscription, set
|
3606
|
+
# to **false** to create the subscription but not active it.
|
3700
3607
|
# @return [Boolean]
|
3701
3608
|
#
|
3702
3609
|
# @!attribute [rw] tags
|
@@ -3766,8 +3673,7 @@ module Aws::RDS
|
|
3766
3673
|
#
|
3767
3674
|
# @!attribute [rw] deletion_protection
|
3768
3675
|
# The deletion protection setting for the new global database. The
|
3769
|
-
# global database can't be deleted when
|
3770
|
-
# enabled.
|
3676
|
+
# global database can't be deleted when this value is set to true.
|
3771
3677
|
# @return [Boolean]
|
3772
3678
|
#
|
3773
3679
|
# @!attribute [rw] database_name
|
@@ -4033,7 +3939,7 @@ module Aws::RDS
|
|
4033
3939
|
# @return [Boolean]
|
4034
3940
|
#
|
4035
3941
|
# @!attribute [rw] kms_key_id
|
4036
|
-
# If `StorageEncrypted` is
|
3942
|
+
# If `StorageEncrypted` is true, the AWS KMS key identifier for the
|
4037
3943
|
# encrypted DB cluster.
|
4038
3944
|
# @return [String]
|
4039
3945
|
#
|
@@ -4055,8 +3961,8 @@ module Aws::RDS
|
|
4055
3961
|
# @return [Array<Types::DBClusterRole>]
|
4056
3962
|
#
|
4057
3963
|
# @!attribute [rw] iam_database_authentication_enabled
|
4058
|
-
#
|
4059
|
-
#
|
3964
|
+
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
3965
|
+
# to database accounts is enabled, and otherwise false.
|
4060
3966
|
# @return [Boolean]
|
4061
3967
|
#
|
4062
3968
|
# @!attribute [rw] clone_group_id
|
@@ -4126,7 +4032,7 @@ module Aws::RDS
|
|
4126
4032
|
#
|
4127
4033
|
# @!attribute [rw] deletion_protection
|
4128
4034
|
# Indicates if the DB cluster has deletion protection enabled. The
|
4129
|
-
# database can't be deleted when
|
4035
|
+
# database can't be deleted when this value is set to true.
|
4130
4036
|
# @return [Boolean]
|
4131
4037
|
#
|
4132
4038
|
# @!attribute [rw] http_endpoint_enabled
|
@@ -4135,8 +4041,8 @@ module Aws::RDS
|
|
4135
4041
|
#
|
4136
4042
|
# </note>
|
4137
4043
|
#
|
4138
|
-
#
|
4139
|
-
#
|
4044
|
+
# Value that is `true` if the HTTP endpoint for an Aurora Serverless
|
4045
|
+
# DB cluster is enabled and `false` otherwise.
|
4140
4046
|
#
|
4141
4047
|
# When enabled, the HTTP endpoint provides a connectionless web
|
4142
4048
|
# service API for running SQL queries on the Aurora Serverless DB
|
@@ -4422,8 +4328,8 @@ module Aws::RDS
|
|
4422
4328
|
# @return [String]
|
4423
4329
|
#
|
4424
4330
|
# @!attribute [rw] is_cluster_writer
|
4425
|
-
#
|
4426
|
-
#
|
4331
|
+
# Value that is `true` if the cluster member is the primary instance
|
4332
|
+
# for the DB cluster and `false` otherwise.
|
4427
4333
|
# @return [Boolean]
|
4428
4334
|
#
|
4429
4335
|
# @!attribute [rw] db_cluster_parameter_group_status
|
@@ -4900,6 +4806,11 @@ module Aws::RDS
|
|
4900
4806
|
# ^
|
4901
4807
|
# @return [Array<String>]
|
4902
4808
|
#
|
4809
|
+
# @!attribute [rw] status
|
4810
|
+
# The status of the DB engine version, either `available` or
|
4811
|
+
# `deprecated`.
|
4812
|
+
# @return [String]
|
4813
|
+
#
|
4903
4814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
4904
4815
|
#
|
4905
4816
|
class DBEngineVersion < Struct.new(
|
@@ -4916,7 +4827,8 @@ module Aws::RDS
|
|
4916
4827
|
:supports_log_exports_to_cloudwatch_logs,
|
4917
4828
|
:supports_read_replica,
|
4918
4829
|
:supported_engine_modes,
|
4919
|
-
:supported_feature_names
|
4830
|
+
:supported_feature_names,
|
4831
|
+
:status)
|
4920
4832
|
include Aws::Structure
|
4921
4833
|
end
|
4922
4834
|
|
@@ -5268,8 +5180,8 @@ module Aws::RDS
|
|
5268
5180
|
#
|
5269
5181
|
# @!attribute [rw] deletion_protection
|
5270
5182
|
# Indicates if the DB instance has deletion protection enabled. The
|
5271
|
-
# database can't be deleted when
|
5272
|
-
#
|
5183
|
+
# database can't be deleted when this value is set to true. For more
|
5184
|
+
# information, see [ Deleting a DB Instance][1].
|
5273
5185
|
#
|
5274
5186
|
#
|
5275
5187
|
#
|
@@ -6173,26 +6085,25 @@ module Aws::RDS
|
|
6173
6085
|
# @return [String]
|
6174
6086
|
#
|
6175
6087
|
# @!attribute [rw] skip_final_snapshot
|
6176
|
-
#
|
6177
|
-
#
|
6178
|
-
#
|
6179
|
-
#
|
6180
|
-
# deleted. By default, skip is not specified, and the DB cluster
|
6181
|
-
# snapshot is created. By default, this parameter is disabled.
|
6088
|
+
# Determines whether a final DB cluster snapshot is created before the
|
6089
|
+
# DB cluster is deleted. If `true` is specified, no DB cluster
|
6090
|
+
# snapshot is created. If `false` is specified, a DB cluster snapshot
|
6091
|
+
# is created before the DB cluster is deleted.
|
6182
6092
|
#
|
6183
6093
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
6184
|
-
# `SkipFinalSnapshot` is
|
6094
|
+
# `SkipFinalSnapshot` is `false`.
|
6185
6095
|
#
|
6186
6096
|
# </note>
|
6097
|
+
#
|
6098
|
+
# Default: `false`
|
6187
6099
|
# @return [Boolean]
|
6188
6100
|
#
|
6189
6101
|
# @!attribute [rw] final_db_snapshot_identifier
|
6190
6102
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
6191
|
-
# created when `SkipFinalSnapshot` is
|
6103
|
+
# created when `SkipFinalSnapshot` is set to `false`.
|
6192
6104
|
#
|
6193
|
-
# <note markdown="1"> Specifying this parameter and also
|
6194
|
-
#
|
6195
|
-
# in an error.
|
6105
|
+
# <note markdown="1"> Specifying this parameter and also setting the `SkipFinalShapshot`
|
6106
|
+
# parameter to true results in an error.
|
6196
6107
|
#
|
6197
6108
|
# </note>
|
6198
6109
|
#
|
@@ -6345,31 +6256,32 @@ module Aws::RDS
|
|
6345
6256
|
# @return [String]
|
6346
6257
|
#
|
6347
6258
|
# @!attribute [rw] skip_final_snapshot
|
6348
|
-
# A value that indicates whether
|
6349
|
-
#
|
6350
|
-
#
|
6351
|
-
#
|
6352
|
-
# specified, and the DB snapshot is created.
|
6259
|
+
# A value that indicates whether a final DB snapshot is created before
|
6260
|
+
# the DB instance is deleted. If `true` is specified, no DB snapshot
|
6261
|
+
# is created. If `false` is specified, a DB snapshot is created before
|
6262
|
+
# the DB instance is deleted.
|
6353
6263
|
#
|
6354
|
-
#
|
6355
|
-
#
|
6356
|
-
#
|
6357
|
-
#
|
6264
|
+
# When a DB instance is in a failure state and has a status of
|
6265
|
+
# `failed`, `incompatible-restore`, or `incompatible-network`, you can
|
6266
|
+
# only delete it when the `SkipFinalSnapshot` parameter is set to
|
6267
|
+
# `true`.
|
6358
6268
|
#
|
6359
|
-
# Specify
|
6269
|
+
# Specify `true` when deleting a Read Replica.
|
6360
6270
|
#
|
6361
|
-
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if
|
6362
|
-
#
|
6271
|
+
# <note markdown="1"> The `FinalDBSnapshotIdentifier` parameter must be specified if
|
6272
|
+
# `SkipFinalSnapshot` is `false`.
|
6363
6273
|
#
|
6364
6274
|
# </note>
|
6275
|
+
#
|
6276
|
+
# Default: `false`
|
6365
6277
|
# @return [Boolean]
|
6366
6278
|
#
|
6367
6279
|
# @!attribute [rw] final_db_snapshot_identifier
|
6368
|
-
# The `DBSnapshotIdentifier` of the new
|
6369
|
-
# `SkipFinalSnapshot`
|
6280
|
+
# The `DBSnapshotIdentifier` of the new DB snapshot created when
|
6281
|
+
# `SkipFinalSnapshot` is set to `false`.
|
6370
6282
|
#
|
6371
|
-
# <note markdown="1"> Specifying this parameter and also
|
6372
|
-
#
|
6283
|
+
# <note markdown="1"> Specifying this parameter and also setting the `SkipFinalShapshot`
|
6284
|
+
# parameter to `true` results in an error.
|
6373
6285
|
#
|
6374
6286
|
# </note>
|
6375
6287
|
#
|
@@ -6387,8 +6299,7 @@ module Aws::RDS
|
|
6387
6299
|
# @!attribute [rw] delete_automated_backups
|
6388
6300
|
# A value that indicates whether to remove automated backups
|
6389
6301
|
# immediately after the DB instance is deleted. This parameter isn't
|
6390
|
-
# case-sensitive.
|
6391
|
-
# immediately after the DB instance is deleted.
|
6302
|
+
# case-sensitive. This parameter defaults to `true`.
|
6392
6303
|
# @return [Boolean]
|
6393
6304
|
#
|
6394
6305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceMessage AWS API Documentation
|
@@ -7083,10 +6994,10 @@ module Aws::RDS
|
|
7083
6994
|
#
|
7084
6995
|
# If you don't specify a `SnapshotType` value, then both automated
|
7085
6996
|
# and manual DB cluster snapshots are returned. You can include shared
|
7086
|
-
# DB cluster snapshots with these results by
|
7087
|
-
# `IncludeShared` parameter
|
7088
|
-
# snapshots with these results by
|
7089
|
-
# parameter
|
6997
|
+
# DB cluster snapshots with these results by setting the
|
6998
|
+
# `IncludeShared` parameter to `true`. You can include public DB
|
6999
|
+
# cluster snapshots with these results by setting the `IncludePublic`
|
7000
|
+
# parameter to `true`.
|
7090
7001
|
#
|
7091
7002
|
# The `IncludeShared` and `IncludePublic` parameters don't apply for
|
7092
7003
|
# `SnapshotType` values of `manual` or `automated`. The
|
@@ -7118,10 +7029,9 @@ module Aws::RDS
|
|
7118
7029
|
# @return [String]
|
7119
7030
|
#
|
7120
7031
|
# @!attribute [rw] include_shared
|
7121
|
-
#
|
7122
|
-
#
|
7123
|
-
#
|
7124
|
-
# not included.
|
7032
|
+
# True to include shared manual DB cluster snapshots from other AWS
|
7033
|
+
# accounts that this AWS account has been given permission to copy or
|
7034
|
+
# restore, and otherwise false. The default is `false`.
|
7125
7035
|
#
|
7126
7036
|
# You can give an AWS account permission to restore a manual DB
|
7127
7037
|
# cluster snapshot from another AWS account by the
|
@@ -7129,12 +7039,12 @@ module Aws::RDS
|
|
7129
7039
|
# @return [Boolean]
|
7130
7040
|
#
|
7131
7041
|
# @!attribute [rw] include_public
|
7132
|
-
#
|
7133
|
-
#
|
7134
|
-
#
|
7042
|
+
# True to include manual DB cluster snapshots that are public and can
|
7043
|
+
# be copied or restored by any AWS account, and otherwise false. The
|
7044
|
+
# default is `false`. The default is false.
|
7135
7045
|
#
|
7136
7046
|
# You can share a manual DB cluster snapshot as public by using the
|
7137
|
-
# ModifyDBClusterSnapshotAttribute API action.
|
7047
|
+
# `ModifyDBClusterSnapshotAttribute` API action.
|
7138
7048
|
# @return [Boolean]
|
7139
7049
|
#
|
7140
7050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshotsMessage AWS API Documentation
|
@@ -7236,6 +7146,7 @@ module Aws::RDS
|
|
7236
7146
|
# default_only: false,
|
7237
7147
|
# list_supported_character_sets: false,
|
7238
7148
|
# list_supported_timezones: false,
|
7149
|
+
# include_all: false,
|
7239
7150
|
# }
|
7240
7151
|
#
|
7241
7152
|
# @!attribute [rw] engine
|
@@ -7281,29 +7192,27 @@ module Aws::RDS
|
|
7281
7192
|
# @return [String]
|
7282
7193
|
#
|
7283
7194
|
# @!attribute [rw] default_only
|
7284
|
-
#
|
7285
|
-
#
|
7286
|
-
# returned.
|
7195
|
+
# Indicates that only the default version of the specified engine or
|
7196
|
+
# engine and major version combination is returned.
|
7287
7197
|
# @return [Boolean]
|
7288
7198
|
#
|
7289
7199
|
# @!attribute [rw] list_supported_character_sets
|
7290
|
-
#
|
7291
|
-
# for each engine version.
|
7292
|
-
#
|
7293
|
-
# If this parameter is enabled and the requested engine supports the
|
7200
|
+
# If this parameter is specified and the requested engine supports the
|
7294
7201
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
7295
7202
|
# includes a list of supported character sets for each engine version.
|
7296
7203
|
# @return [Boolean]
|
7297
7204
|
#
|
7298
7205
|
# @!attribute [rw] list_supported_timezones
|
7299
|
-
#
|
7300
|
-
# each engine version.
|
7301
|
-
#
|
7302
|
-
# If this parameter is enabled and the requested engine supports the
|
7206
|
+
# If this parameter is specified and the requested engine supports the
|
7303
7207
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
7304
7208
|
# list of supported time zones for each engine version.
|
7305
7209
|
# @return [Boolean]
|
7306
7210
|
#
|
7211
|
+
# @!attribute [rw] include_all
|
7212
|
+
# Whether to include non-available engine versions in the list. The
|
7213
|
+
# default is to list only available engine versions.
|
7214
|
+
# @return [Boolean]
|
7215
|
+
#
|
7307
7216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersionsMessage AWS API Documentation
|
7308
7217
|
#
|
7309
7218
|
class DescribeDBEngineVersionsMessage < Struct.new(
|
@@ -7315,7 +7224,8 @@ module Aws::RDS
|
|
7315
7224
|
:marker,
|
7316
7225
|
:default_only,
|
7317
7226
|
:list_supported_character_sets,
|
7318
|
-
:list_supported_timezones
|
7227
|
+
:list_supported_timezones,
|
7228
|
+
:include_all)
|
7319
7229
|
include Aws::Structure
|
7320
7230
|
end
|
7321
7231
|
|
@@ -7869,9 +7779,9 @@ module Aws::RDS
|
|
7869
7779
|
# If you don't specify a `SnapshotType` value, then both automated
|
7870
7780
|
# and manual snapshots are returned. Shared and public DB snapshots
|
7871
7781
|
# are not included in the returned results by default. You can include
|
7872
|
-
# shared snapshots with these results by
|
7873
|
-
# parameter
|
7874
|
-
#
|
7782
|
+
# shared snapshots with these results by setting the `IncludeShared`
|
7783
|
+
# parameter to `true`. You can include public snapshots with these
|
7784
|
+
# results by setting the `IncludePublic` parameter to `true`.
|
7875
7785
|
#
|
7876
7786
|
# The `IncludeShared` and `IncludePublic` parameters don't apply for
|
7877
7787
|
# `SnapshotType` values of `manual` or `automated`. The
|
@@ -7907,10 +7817,9 @@ module Aws::RDS
|
|
7907
7817
|
# @return [String]
|
7908
7818
|
#
|
7909
7819
|
# @!attribute [rw] include_shared
|
7910
|
-
#
|
7911
|
-
#
|
7912
|
-
#
|
7913
|
-
# not included.
|
7820
|
+
# True to include shared manual DB snapshots from other AWS accounts
|
7821
|
+
# that this AWS account has been given permission to copy or restore,
|
7822
|
+
# and otherwise false. The default is `false`.
|
7914
7823
|
#
|
7915
7824
|
# You can give an AWS account permission to restore a manual DB
|
7916
7825
|
# snapshot from another AWS account by using the
|
@@ -7918,12 +7827,12 @@ module Aws::RDS
|
|
7918
7827
|
# @return [Boolean]
|
7919
7828
|
#
|
7920
7829
|
# @!attribute [rw] include_public
|
7921
|
-
#
|
7922
|
-
#
|
7923
|
-
#
|
7830
|
+
# True to include manual DB snapshots that are public and can be
|
7831
|
+
# copied or restored by any AWS account, and otherwise false. The
|
7832
|
+
# default is false.
|
7924
7833
|
#
|
7925
7834
|
# You can share a manual DB snapshot as public by using the
|
7926
|
-
# ModifyDBSnapshotAttribute API.
|
7835
|
+
# `ModifyDBSnapshotAttribute` API.
|
7927
7836
|
# @return [Boolean]
|
7928
7837
|
#
|
7929
7838
|
# @!attribute [rw] dbi_resource_id
|
@@ -8559,8 +8468,8 @@ module Aws::RDS
|
|
8559
8468
|
# @return [String]
|
8560
8469
|
#
|
8561
8470
|
# @!attribute [rw] vpc
|
8562
|
-
#
|
8563
|
-
# offerings.
|
8471
|
+
# The VPC filter value. Specify this parameter to show only the
|
8472
|
+
# available VPC or non-VPC offerings.
|
8564
8473
|
# @return [Boolean]
|
8565
8474
|
#
|
8566
8475
|
# @!attribute [rw] filters
|
@@ -8720,8 +8629,8 @@ module Aws::RDS
|
|
8720
8629
|
# @return [String]
|
8721
8630
|
#
|
8722
8631
|
# @!attribute [rw] multi_az
|
8723
|
-
#
|
8724
|
-
#
|
8632
|
+
# The Multi-AZ filter value. Specify this parameter to show only those
|
8633
|
+
# reservations matching the specified Multi-AZ parameter.
|
8725
8634
|
# @return [Boolean]
|
8726
8635
|
#
|
8727
8636
|
# @!attribute [rw] filters
|
@@ -8820,8 +8729,8 @@ module Aws::RDS
|
|
8820
8729
|
# @return [String]
|
8821
8730
|
#
|
8822
8731
|
# @!attribute [rw] multi_az
|
8823
|
-
#
|
8824
|
-
#
|
8732
|
+
# The Multi-AZ filter value. Specify this parameter to show only the
|
8733
|
+
# available offerings matching the specified Multi-AZ parameter.
|
8825
8734
|
# @return [Boolean]
|
8826
8735
|
#
|
8827
8736
|
# @!attribute [rw] filters
|
@@ -9683,8 +9592,7 @@ module Aws::RDS
|
|
9683
9592
|
#
|
9684
9593
|
# Constraints:
|
9685
9594
|
#
|
9686
|
-
# * Value must be `
|
9687
|
-
# `256`.
|
9595
|
+
# * Value must be `2`, `4`, `8`, `16`, `32`, `64`, `128`, or `256`.
|
9688
9596
|
#
|
9689
9597
|
# ^
|
9690
9598
|
# @return [Integer]
|
@@ -9822,22 +9730,22 @@ module Aws::RDS
|
|
9822
9730
|
# @return [String]
|
9823
9731
|
#
|
9824
9732
|
# @!attribute [rw] apply_immediately
|
9825
|
-
# A value that
|
9733
|
+
# A value that specifies whether the modifications in this request and
|
9826
9734
|
# any pending modifications are asynchronously applied as soon as
|
9827
9735
|
# possible, regardless of the `PreferredMaintenanceWindow` setting for
|
9828
|
-
# the DB cluster. If this parameter is
|
9829
|
-
# cluster are applied during the next maintenance window.
|
9736
|
+
# the DB cluster. If this parameter is set to `false`, changes to the
|
9737
|
+
# DB cluster are applied during the next maintenance window.
|
9830
9738
|
#
|
9831
9739
|
# The `ApplyImmediately` parameter only affects the
|
9832
9740
|
# `EnableIAMDatabaseAuthentication`, `MasterUserPassword`, and
|
9833
|
-
# `NewDBClusterIdentifier` values. If the `ApplyImmediately`
|
9834
|
-
#
|
9835
|
-
# `MasterUserPassword`, and
|
9836
|
-
# applied during the next
|
9837
|
-
#
|
9838
|
-
# `ApplyImmediately` parameter.
|
9741
|
+
# `NewDBClusterIdentifier` values. If you set the `ApplyImmediately`
|
9742
|
+
# parameter value to false, then changes to the
|
9743
|
+
# `EnableIAMDatabaseAuthentication`, `MasterUserPassword`, and
|
9744
|
+
# `NewDBClusterIdentifier` values are applied during the next
|
9745
|
+
# maintenance window. All other changes are applied immediately,
|
9746
|
+
# regardless of the value of the `ApplyImmediately` parameter.
|
9839
9747
|
#
|
9840
|
-
#
|
9748
|
+
# Default: `false`
|
9841
9749
|
# @return [Boolean]
|
9842
9750
|
#
|
9843
9751
|
# @!attribute [rw] backup_retention_period
|
@@ -9882,11 +9790,11 @@ module Aws::RDS
|
|
9882
9790
|
# A value that indicates that the DB cluster should be associated with
|
9883
9791
|
# the specified option group. Changing this parameter doesn't result
|
9884
9792
|
# in an outage except in the following case, and the change is applied
|
9885
|
-
# during the next maintenance window unless the `ApplyImmediately`
|
9886
|
-
#
|
9887
|
-
# option group that enables OEM, this change can cause a
|
9888
|
-
# (sub-second) period during which new connections are rejected
|
9889
|
-
# existing connections are not interrupted.
|
9793
|
+
# during the next maintenance window unless the `ApplyImmediately`
|
9794
|
+
# parameter is set to `true` for this request. If the parameter change
|
9795
|
+
# results in an option group that enables OEM, this change can cause a
|
9796
|
+
# brief (sub-second) period during which new connections are rejected
|
9797
|
+
# but existing connections are not interrupted.
|
9890
9798
|
#
|
9891
9799
|
# Permanent options can't be removed from an option group. The option
|
9892
9800
|
# group can't be removed from a DB cluster once it is associated with
|
@@ -9940,9 +9848,10 @@ module Aws::RDS
|
|
9940
9848
|
# @return [String]
|
9941
9849
|
#
|
9942
9850
|
# @!attribute [rw] enable_iam_database_authentication
|
9943
|
-
#
|
9944
|
-
#
|
9945
|
-
#
|
9851
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
9852
|
+
# accounts to database accounts, and otherwise false.
|
9853
|
+
#
|
9854
|
+
# Default: `false`
|
9946
9855
|
# @return [Boolean]
|
9947
9856
|
#
|
9948
9857
|
# @!attribute [rw] backtrack_window
|
@@ -9967,10 +9876,11 @@ module Aws::RDS
|
|
9967
9876
|
# @!attribute [rw] engine_version
|
9968
9877
|
# The version number of the database engine to which you want to
|
9969
9878
|
# upgrade. Changing this parameter results in an outage. The change is
|
9970
|
-
# applied during the next maintenance window unless
|
9971
|
-
# is
|
9879
|
+
# applied during the next maintenance window unless the
|
9880
|
+
# ApplyImmediately parameter is set to true.
|
9972
9881
|
#
|
9973
|
-
# For a list of valid engine versions, use
|
9882
|
+
# For a list of valid engine versions, use the
|
9883
|
+
# `DescribeDBEngineVersions` action.
|
9974
9884
|
# @return [String]
|
9975
9885
|
#
|
9976
9886
|
# @!attribute [rw] scaling_configuration
|
@@ -9979,9 +9889,8 @@ module Aws::RDS
|
|
9979
9889
|
# @return [Types::ScalingConfiguration]
|
9980
9890
|
#
|
9981
9891
|
# @!attribute [rw] deletion_protection
|
9982
|
-
#
|
9983
|
-
#
|
9984
|
-
# protection is enabled. By default, deletion protection is disabled.
|
9892
|
+
# Indicates if the DB cluster has deletion protection enabled. The
|
9893
|
+
# database can't be deleted when this value is set to true.
|
9985
9894
|
# @return [Boolean]
|
9986
9895
|
#
|
9987
9896
|
# @!attribute [rw] enable_http_endpoint
|
@@ -10008,8 +9917,8 @@ module Aws::RDS
|
|
10008
9917
|
# @return [Boolean]
|
10009
9918
|
#
|
10010
9919
|
# @!attribute [rw] copy_tags_to_snapshot
|
10011
|
-
#
|
10012
|
-
#
|
9920
|
+
# True to copy all tags from the DB cluster to snapshots of the DB
|
9921
|
+
# cluster, and otherwise false. The default is false.
|
10013
9922
|
# @return [Boolean]
|
10014
9923
|
#
|
10015
9924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
@@ -10250,7 +10159,7 @@ module Aws::RDS
|
|
10250
10159
|
#
|
10251
10160
|
# If you modify the DB instance class, an outage occurs during the
|
10252
10161
|
# change. The change is applied during the next maintenance window,
|
10253
|
-
# unless `ApplyImmediately` is
|
10162
|
+
# unless `ApplyImmediately` is specified as `true` for this request.
|
10254
10163
|
#
|
10255
10164
|
# Default: Uses existing setting
|
10256
10165
|
#
|
@@ -10268,7 +10177,7 @@ module Aws::RDS
|
|
10268
10177
|
#
|
10269
10178
|
# Changing the subnet group causes an outage during the change. The
|
10270
10179
|
# change is applied during the next maintenance window, unless you
|
10271
|
-
#
|
10180
|
+
# specify `true` for the `ApplyImmediately` parameter.
|
10272
10181
|
#
|
10273
10182
|
# Constraints: If supplied, must match the name of an existing
|
10274
10183
|
# DBSubnetGroup.
|
@@ -10310,19 +10219,22 @@ module Aws::RDS
|
|
10310
10219
|
# @return [Array<String>]
|
10311
10220
|
#
|
10312
10221
|
# @!attribute [rw] apply_immediately
|
10313
|
-
#
|
10314
|
-
#
|
10315
|
-
#
|
10316
|
-
#
|
10222
|
+
# Specifies whether the modifications in this request and any pending
|
10223
|
+
# modifications are asynchronously applied as soon as possible,
|
10224
|
+
# regardless of the `PreferredMaintenanceWindow` setting for the DB
|
10225
|
+
# instance.
|
10317
10226
|
#
|
10318
|
-
# If this parameter is
|
10227
|
+
# If this parameter is set to `false`, changes to the DB instance are
|
10319
10228
|
# applied during the next maintenance window. Some parameter changes
|
10320
10229
|
# can cause an outage and are applied on the next call to
|
10321
|
-
# RebootDBInstance
|
10322
|
-
# parameters in [Modifying a DB Instance
|
10323
|
-
#
|
10324
|
-
# `ApplyImmediately`
|
10325
|
-
# the changes are
|
10230
|
+
# `RebootDBInstance`, or the next failure reboot. Review the table of
|
10231
|
+
# parameters in [Modifying a DB Instance and Using the Apply
|
10232
|
+
# Immediately Parameter][1] in the *Amazon RDS User Guide.* to see the
|
10233
|
+
# impact that setting `ApplyImmediately` to `true` or `false` has for
|
10234
|
+
# each modified parameter and to determine when the changes are
|
10235
|
+
# applied.
|
10236
|
+
#
|
10237
|
+
# Default: `false`
|
10326
10238
|
#
|
10327
10239
|
#
|
10328
10240
|
#
|
@@ -10397,8 +10309,8 @@ module Aws::RDS
|
|
10397
10309
|
# Changing this parameter can result in an outage if you change from 0
|
10398
10310
|
# to a non-zero value or from a non-zero value to 0. These changes are
|
10399
10311
|
# applied during the next maintenance window unless the
|
10400
|
-
# `ApplyImmediately` parameter is
|
10401
|
-
# change the parameter from one non-zero value to another non-zero
|
10312
|
+
# `ApplyImmediately` parameter is set to `true` for this request. If
|
10313
|
+
# you change the parameter from one non-zero value to another non-zero
|
10402
10314
|
# value, the change is asynchronously applied as soon as possible.
|
10403
10315
|
#
|
10404
10316
|
# **Amazon Aurora**
|
@@ -10467,17 +10379,17 @@ module Aws::RDS
|
|
10467
10379
|
# @return [String]
|
10468
10380
|
#
|
10469
10381
|
# @!attribute [rw] multi_az
|
10470
|
-
#
|
10471
|
-
#
|
10472
|
-
#
|
10473
|
-
#
|
10382
|
+
# Specifies if the DB instance is a Multi-AZ deployment. Changing this
|
10383
|
+
# parameter doesn't result in an outage and the change is applied
|
10384
|
+
# during the next maintenance window unless the `ApplyImmediately`
|
10385
|
+
# parameter is set to `true` for this request.
|
10474
10386
|
# @return [Boolean]
|
10475
10387
|
#
|
10476
10388
|
# @!attribute [rw] engine_version
|
10477
10389
|
# The version number of the database engine to upgrade to. Changing
|
10478
10390
|
# this parameter results in an outage and the change is applied during
|
10479
10391
|
# the next maintenance window unless the `ApplyImmediately` parameter
|
10480
|
-
# is
|
10392
|
+
# is set to `true` for this request.
|
10481
10393
|
#
|
10482
10394
|
# For major version upgrades, if a nondefault DB parameter group is
|
10483
10395
|
# currently in use, a new DB parameter group in the DB parameter group
|
@@ -10490,21 +10402,21 @@ module Aws::RDS
|
|
10490
10402
|
# @return [String]
|
10491
10403
|
#
|
10492
10404
|
# @!attribute [rw] allow_major_version_upgrade
|
10493
|
-
#
|
10494
|
-
#
|
10495
|
-
#
|
10405
|
+
# Indicates that major version upgrades are allowed. Changing this
|
10406
|
+
# parameter doesn't result in an outage and the change is
|
10407
|
+
# asynchronously applied as soon as possible.
|
10496
10408
|
#
|
10497
|
-
# Constraints:
|
10498
|
-
#
|
10409
|
+
# Constraints: This parameter must be set to true when specifying a
|
10410
|
+
# value for the EngineVersion parameter that is a different major
|
10499
10411
|
# version than the DB instance's current version.
|
10500
10412
|
# @return [Boolean]
|
10501
10413
|
#
|
10502
10414
|
# @!attribute [rw] auto_minor_version_upgrade
|
10503
|
-
#
|
10504
|
-
#
|
10505
|
-
#
|
10506
|
-
#
|
10507
|
-
#
|
10415
|
+
# Indicates that minor version upgrades are applied automatically to
|
10416
|
+
# the DB instance during the maintenance window. Changing this
|
10417
|
+
# parameter doesn't result in an outage except in the following case
|
10418
|
+
# and the change is asynchronously applied as soon as possible. An
|
10419
|
+
# outage will result if this parameter is set to `true` during the
|
10508
10420
|
# maintenance window, and a newer minor version is available, and RDS
|
10509
10421
|
# has enabled auto patching for that engine version.
|
10510
10422
|
# @return [Boolean]
|
@@ -10522,10 +10434,10 @@ module Aws::RDS
|
|
10522
10434
|
#
|
10523
10435
|
# Changing this setting doesn't result in an outage and the change is
|
10524
10436
|
# applied during the next maintenance window unless the
|
10525
|
-
# `ApplyImmediately` parameter is
|
10526
|
-
# migrating from Provisioned IOPS to standard storage, set
|
10527
|
-
# to 0. The DB instance will require a reboot for the
|
10528
|
-
# storage type to take effect.
|
10437
|
+
# `ApplyImmediately` parameter is set to `true` for this request. If
|
10438
|
+
# you are migrating from Provisioned IOPS to standard storage, set
|
10439
|
+
# this value to 0. The DB instance will require a reboot for the
|
10440
|
+
# change in storage type to take effect.
|
10529
10441
|
#
|
10530
10442
|
# If you choose to migrate your DB instance from using standard
|
10531
10443
|
# storage to using Provisioned IOPS, or from using Provisioned IOPS to
|
@@ -10556,7 +10468,7 @@ module Aws::RDS
|
|
10556
10468
|
# specified option group. Changing this parameter doesn't result in
|
10557
10469
|
# an outage except in the following case and the change is applied
|
10558
10470
|
# during the next maintenance window unless the `ApplyImmediately`
|
10559
|
-
# parameter is
|
10471
|
+
# parameter is set to `true` for this request. If the parameter change
|
10560
10472
|
# results in an option group that enables OEM, this change can cause a
|
10561
10473
|
# brief (sub-second) period during which new connections are rejected
|
10562
10474
|
# but existing connections are not interrupted.
|
@@ -10570,9 +10482,9 @@ module Aws::RDS
|
|
10570
10482
|
# @!attribute [rw] new_db_instance_identifier
|
10571
10483
|
# The new DB instance identifier for the DB instance when renaming a
|
10572
10484
|
# DB instance. When you change the DB instance identifier, an instance
|
10573
|
-
# reboot
|
10574
|
-
# occur during the next maintenance window if
|
10575
|
-
# Immediately. This value is stored as a lowercase string.
|
10485
|
+
# reboot will occur immediately if you set `Apply Immediately` to
|
10486
|
+
# true, or will occur during the next maintenance window if `Apply
|
10487
|
+
# Immediately` to false. This value is stored as a lowercase string.
|
10576
10488
|
#
|
10577
10489
|
# Constraints:
|
10578
10490
|
#
|
@@ -10609,7 +10521,8 @@ module Aws::RDS
|
|
10609
10521
|
#
|
10610
10522
|
# Valid values: `standard | gp2 | io1`
|
10611
10523
|
#
|
10612
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
10524
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
10525
|
+
# `standard`
|
10613
10526
|
# @return [String]
|
10614
10527
|
#
|
10615
10528
|
# @!attribute [rw] tde_credential_arn
|
@@ -10635,8 +10548,8 @@ module Aws::RDS
|
|
10635
10548
|
# @return [String]
|
10636
10549
|
#
|
10637
10550
|
# @!attribute [rw] copy_tags_to_snapshot
|
10638
|
-
#
|
10639
|
-
#
|
10551
|
+
# True to copy all tags from the DB instance to snapshots of the DB
|
10552
|
+
# instance, and otherwise false. The default is false.
|
10640
10553
|
#
|
10641
10554
|
# **Amazon Aurora**
|
10642
10555
|
#
|
@@ -10708,20 +10621,21 @@ module Aws::RDS
|
|
10708
10621
|
# @return [Integer]
|
10709
10622
|
#
|
10710
10623
|
# @!attribute [rw] publicly_accessible
|
10711
|
-
#
|
10712
|
-
#
|
10713
|
-
# Internet-facing
|
10714
|
-
#
|
10715
|
-
#
|
10716
|
-
# resolves to a private IP address.
|
10624
|
+
# Boolean value that indicates if the DB instance has a publicly
|
10625
|
+
# resolvable DNS name. Set to `True` to make the DB instance
|
10626
|
+
# Internet-facing with a publicly resolvable DNS name, which resolves
|
10627
|
+
# to a public IP address. Set to `False` to make the DB instance
|
10628
|
+
# internal with a DNS name that resolves to a private IP address.
|
10717
10629
|
#
|
10718
10630
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
10719
10631
|
# instance must be part of a public subnet and `PubliclyAccessible`
|
10720
|
-
# must be
|
10632
|
+
# must be true in order for it to be publicly accessible.
|
10721
10633
|
#
|
10722
10634
|
# Changes to the `PubliclyAccessible` parameter are applied
|
10723
10635
|
# immediately regardless of the value of the `ApplyImmediately`
|
10724
10636
|
# parameter.
|
10637
|
+
#
|
10638
|
+
# Default: false
|
10725
10639
|
# @return [Boolean]
|
10726
10640
|
#
|
10727
10641
|
# @!attribute [rw] monitoring_role_arn
|
@@ -10760,9 +10674,8 @@ module Aws::RDS
|
|
10760
10674
|
# @return [Integer]
|
10761
10675
|
#
|
10762
10676
|
# @!attribute [rw] enable_iam_database_authentication
|
10763
|
-
#
|
10764
|
-
#
|
10765
|
-
# mapping is disabled.
|
10677
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
10678
|
+
# accounts to database accounts, and otherwise false.
|
10766
10679
|
#
|
10767
10680
|
# You can enable IAM database authentication for the following
|
10768
10681
|
# database engines
|
@@ -10778,11 +10691,13 @@ module Aws::RDS
|
|
10778
10691
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
10779
10692
|
#
|
10780
10693
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
10694
|
+
#
|
10695
|
+
# Default: `false`
|
10781
10696
|
# @return [Boolean]
|
10782
10697
|
#
|
10783
10698
|
# @!attribute [rw] enable_performance_insights
|
10784
|
-
#
|
10785
|
-
#
|
10699
|
+
# True to enable Performance Insights for the DB instance, and
|
10700
|
+
# otherwise false.
|
10786
10701
|
#
|
10787
10702
|
# For more information, see [Using Amazon Performance Insights][1] in
|
10788
10703
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -10796,11 +10711,6 @@ module Aws::RDS
|
|
10796
10711
|
# The AWS KMS key identifier for encryption of Performance Insights
|
10797
10712
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
10798
10713
|
# identifier, or the KMS key alias for the KMS encryption key.
|
10799
|
-
#
|
10800
|
-
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
10801
|
-
# then Amazon RDS uses your default encryption key. AWS KMS creates
|
10802
|
-
# the default encryption key for your AWS account. Your AWS account
|
10803
|
-
# has a different default encryption key for each AWS Region.
|
10804
10714
|
# @return [String]
|
10805
10715
|
#
|
10806
10716
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -10823,15 +10733,14 @@ module Aws::RDS
|
|
10823
10733
|
# @return [Array<Types::ProcessorFeature>]
|
10824
10734
|
#
|
10825
10735
|
# @!attribute [rw] use_default_processor_features
|
10826
|
-
# A value that
|
10827
|
-
#
|
10736
|
+
# A value that specifies that the DB instance class of the DB instance
|
10737
|
+
# uses its default processor features.
|
10828
10738
|
# @return [Boolean]
|
10829
10739
|
#
|
10830
10740
|
# @!attribute [rw] deletion_protection
|
10831
|
-
#
|
10832
|
-
#
|
10833
|
-
#
|
10834
|
-
# For more information, see [ Deleting a DB Instance][1].
|
10741
|
+
# Indicates if the DB instance has deletion protection enabled. The
|
10742
|
+
# database can't be deleted when this value is set to true. For more
|
10743
|
+
# information, see [ Deleting a DB Instance][1].
|
10835
10744
|
#
|
10836
10745
|
#
|
10837
10746
|
#
|
@@ -11189,7 +11098,7 @@ module Aws::RDS
|
|
11189
11098
|
# @return [Array<String>]
|
11190
11099
|
#
|
11191
11100
|
# @!attribute [rw] enabled
|
11192
|
-
# A value
|
11101
|
+
# A Boolean value; set to **true** to activate the subscription.
|
11193
11102
|
# @return [Boolean]
|
11194
11103
|
#
|
11195
11104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyEventSubscriptionMessage AWS API Documentation
|
@@ -11253,8 +11162,8 @@ module Aws::RDS
|
|
11253
11162
|
#
|
11254
11163
|
# @!attribute [rw] deletion_protection
|
11255
11164
|
# Indicates if the global database cluster has deletion protection
|
11256
|
-
# enabled. The global database cluster can't be deleted when
|
11257
|
-
#
|
11165
|
+
# enabled. The global database cluster can't be deleted when this
|
11166
|
+
# value is set to true.
|
11258
11167
|
# @return [Boolean]
|
11259
11168
|
#
|
11260
11169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalClusterMessage AWS API Documentation
|
@@ -11328,7 +11237,7 @@ module Aws::RDS
|
|
11328
11237
|
# @return [Array<String>]
|
11329
11238
|
#
|
11330
11239
|
# @!attribute [rw] apply_immediately
|
11331
|
-
#
|
11240
|
+
# Indicates whether the changes should be applied immediately, or
|
11332
11241
|
# during the next maintenance window for each instance associated with
|
11333
11242
|
# the option group.
|
11334
11243
|
# @return [Boolean]
|
@@ -12563,11 +12472,10 @@ module Aws::RDS
|
|
12563
12472
|
# @return [String]
|
12564
12473
|
#
|
12565
12474
|
# @!attribute [rw] force_failover
|
12566
|
-
#
|
12567
|
-
# Multi-AZ failover.
|
12475
|
+
# When `true`, the reboot is conducted through a MultiAZ failover.
|
12568
12476
|
#
|
12569
|
-
# Constraint: You can't
|
12570
|
-
# configured for
|
12477
|
+
# Constraint: You can't specify `true` if the instance is not
|
12478
|
+
# configured for MultiAZ.
|
12571
12479
|
# @return [Boolean]
|
12572
12480
|
#
|
12573
12481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstanceMessage AWS API Documentation
|
@@ -13001,16 +12909,16 @@ module Aws::RDS
|
|
13001
12909
|
# @return [String]
|
13002
12910
|
#
|
13003
12911
|
# @!attribute [rw] reset_all_parameters
|
13004
|
-
# A value that
|
13005
|
-
# cluster parameter group to their default values
|
13006
|
-
# parameter if there is a list of
|
13007
|
-
# `Parameters` parameter.
|
12912
|
+
# A value that is set to `true` to reset all parameters in the DB
|
12913
|
+
# cluster parameter group to their default values, and `false`
|
12914
|
+
# otherwise. You can't use this parameter if there is a list of
|
12915
|
+
# parameter names specified for the `Parameters` parameter.
|
13008
12916
|
# @return [Boolean]
|
13009
12917
|
#
|
13010
12918
|
# @!attribute [rw] parameters
|
13011
12919
|
# A list of parameter names in the DB cluster parameter group to reset
|
13012
12920
|
# to the default values. You can't use this parameter if the
|
13013
|
-
# `ResetAllParameters` parameter is
|
12921
|
+
# `ResetAllParameters` parameter is set to `true`.
|
13014
12922
|
# @return [Array<Types::Parameter>]
|
13015
12923
|
#
|
13016
12924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBClusterParameterGroupMessage AWS API Documentation
|
@@ -13056,9 +12964,10 @@ module Aws::RDS
|
|
13056
12964
|
# @return [String]
|
13057
12965
|
#
|
13058
12966
|
# @!attribute [rw] reset_all_parameters
|
13059
|
-
#
|
13060
|
-
# parameter group to default values.
|
13061
|
-
#
|
12967
|
+
# Specifies whether (`true`) or not (`false`) to reset all parameters
|
12968
|
+
# in the DB parameter group to default values.
|
12969
|
+
#
|
12970
|
+
# Default: `true`
|
13062
12971
|
# @return [Boolean]
|
13063
12972
|
#
|
13064
12973
|
# @!attribute [rw] parameters
|
@@ -13335,7 +13244,7 @@ module Aws::RDS
|
|
13335
13244
|
# @return [Array<Types::Tag>]
|
13336
13245
|
#
|
13337
13246
|
# @!attribute [rw] storage_encrypted
|
13338
|
-
#
|
13247
|
+
# Specifies whether the restored DB cluster is encrypted.
|
13339
13248
|
# @return [Boolean]
|
13340
13249
|
#
|
13341
13250
|
# @!attribute [rw] kms_key_id
|
@@ -13347,7 +13256,7 @@ module Aws::RDS
|
|
13347
13256
|
# cluster, then you can use the KMS key alias instead of the ARN for
|
13348
13257
|
# the KM encryption key.
|
13349
13258
|
#
|
13350
|
-
# If the StorageEncrypted parameter is
|
13259
|
+
# If the `StorageEncrypted` parameter is true, and you do not specify
|
13351
13260
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
13352
13261
|
# default encryption key. AWS KMS creates the default encryption key
|
13353
13262
|
# for your AWS account. Your AWS account has a different default
|
@@ -13355,9 +13264,10 @@ module Aws::RDS
|
|
13355
13264
|
# @return [String]
|
13356
13265
|
#
|
13357
13266
|
# @!attribute [rw] enable_iam_database_authentication
|
13358
|
-
#
|
13359
|
-
#
|
13360
|
-
#
|
13267
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
13268
|
+
# accounts to database accounts, and otherwise false.
|
13269
|
+
#
|
13270
|
+
# Default: `false`
|
13361
13271
|
# @return [Boolean]
|
13362
13272
|
#
|
13363
13273
|
# @!attribute [rw] source_engine
|
@@ -13419,15 +13329,14 @@ module Aws::RDS
|
|
13419
13329
|
# @return [Array<String>]
|
13420
13330
|
#
|
13421
13331
|
# @!attribute [rw] deletion_protection
|
13422
|
-
#
|
13423
|
-
#
|
13424
|
-
#
|
13332
|
+
# Indicates if the DB cluster should have deletion protection enabled.
|
13333
|
+
# The database can't be deleted when this value is set to true. The
|
13334
|
+
# default is false.
|
13425
13335
|
# @return [Boolean]
|
13426
13336
|
#
|
13427
13337
|
# @!attribute [rw] copy_tags_to_snapshot
|
13428
|
-
#
|
13429
|
-
#
|
13430
|
-
# to copy them.
|
13338
|
+
# True to copy all tags from the restored DB cluster to snapshots of
|
13339
|
+
# the restored DB cluster, and otherwise false. The default is false.
|
13431
13340
|
# @return [Boolean]
|
13432
13341
|
#
|
13433
13342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
@@ -13620,9 +13529,10 @@ module Aws::RDS
|
|
13620
13529
|
# @return [String]
|
13621
13530
|
#
|
13622
13531
|
# @!attribute [rw] enable_iam_database_authentication
|
13623
|
-
#
|
13624
|
-
#
|
13625
|
-
#
|
13532
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
13533
|
+
# accounts to database accounts, and otherwise false.
|
13534
|
+
#
|
13535
|
+
# Default: `false`
|
13626
13536
|
# @return [Boolean]
|
13627
13537
|
#
|
13628
13538
|
# @!attribute [rw] backtrack_window
|
@@ -13678,15 +13588,14 @@ module Aws::RDS
|
|
13678
13588
|
# @return [String]
|
13679
13589
|
#
|
13680
13590
|
# @!attribute [rw] deletion_protection
|
13681
|
-
#
|
13682
|
-
#
|
13683
|
-
#
|
13591
|
+
# Indicates if the DB cluster should have deletion protection enabled.
|
13592
|
+
# The database can't be deleted when this value is set to true. The
|
13593
|
+
# default is false.
|
13684
13594
|
# @return [Boolean]
|
13685
13595
|
#
|
13686
13596
|
# @!attribute [rw] copy_tags_to_snapshot
|
13687
|
-
#
|
13688
|
-
#
|
13689
|
-
# to copy them.
|
13597
|
+
# True to copy all tags from the restored DB cluster to snapshots of
|
13598
|
+
# the restored DB cluster, and otherwise false. The default is false.
|
13690
13599
|
# @return [Boolean]
|
13691
13600
|
#
|
13692
13601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
@@ -13809,19 +13718,18 @@ module Aws::RDS
|
|
13809
13718
|
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
13810
13719
|
# provided
|
13811
13720
|
#
|
13812
|
-
# * Can't be specified if
|
13813
|
-
# enabled
|
13721
|
+
# * Can't be specified if `UseLatestRestorableTime` parameter is true
|
13814
13722
|
#
|
13815
|
-
# * Can't be specified if
|
13816
|
-
# `copy-on-write`
|
13723
|
+
# * Can't be specified if `RestoreType` parameter is `copy-on-write`
|
13817
13724
|
#
|
13818
13725
|
# Example: `2015-03-07T23:45:00Z`
|
13819
13726
|
# @return [Time]
|
13820
13727
|
#
|
13821
13728
|
# @!attribute [rw] use_latest_restorable_time
|
13822
|
-
# A value that
|
13823
|
-
# latest restorable backup time
|
13824
|
-
#
|
13729
|
+
# A value that is set to `true` to restore the DB cluster to the
|
13730
|
+
# latest restorable backup time, and `false` otherwise.
|
13731
|
+
#
|
13732
|
+
# Default: `false`
|
13825
13733
|
#
|
13826
13734
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
13827
13735
|
# provided.
|
@@ -13891,9 +13799,10 @@ module Aws::RDS
|
|
13891
13799
|
# @return [String]
|
13892
13800
|
#
|
13893
13801
|
# @!attribute [rw] enable_iam_database_authentication
|
13894
|
-
#
|
13895
|
-
#
|
13896
|
-
#
|
13802
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
13803
|
+
# accounts to database accounts, and otherwise false.
|
13804
|
+
#
|
13805
|
+
# Default: `false`
|
13897
13806
|
# @return [Boolean]
|
13898
13807
|
#
|
13899
13808
|
# @!attribute [rw] backtrack_window
|
@@ -13939,15 +13848,14 @@ module Aws::RDS
|
|
13939
13848
|
# @return [String]
|
13940
13849
|
#
|
13941
13850
|
# @!attribute [rw] deletion_protection
|
13942
|
-
#
|
13943
|
-
#
|
13944
|
-
#
|
13851
|
+
# Indicates if the DB cluster should have deletion protection enabled.
|
13852
|
+
# The database can't be deleted when this value is set to true. The
|
13853
|
+
# default is false.
|
13945
13854
|
# @return [Boolean]
|
13946
13855
|
#
|
13947
13856
|
# @!attribute [rw] copy_tags_to_snapshot
|
13948
|
-
#
|
13949
|
-
#
|
13950
|
-
# to copy them.
|
13857
|
+
# True to copy all tags from the restored DB cluster to snapshots of
|
13858
|
+
# the restored DB cluster, and otherwise false. The default is false.
|
13951
13859
|
# @return [Boolean]
|
13952
13860
|
#
|
13953
13861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
@@ -14084,8 +13992,8 @@ module Aws::RDS
|
|
14084
13992
|
#
|
14085
13993
|
# Default: A random, system-chosen Availability Zone.
|
14086
13994
|
#
|
14087
|
-
# Constraint: You can't specify the
|
14088
|
-
#
|
13995
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
13996
|
+
# MultiAZ parameter is set to `true`.
|
14089
13997
|
#
|
14090
13998
|
# Example: `us-east-1a`
|
14091
13999
|
# @return [String]
|
@@ -14100,26 +14008,24 @@ module Aws::RDS
|
|
14100
14008
|
# @return [String]
|
14101
14009
|
#
|
14102
14010
|
# @!attribute [rw] multi_az
|
14103
|
-
#
|
14104
|
-
# deployment.
|
14011
|
+
# Specifies if the DB instance is a Multi-AZ deployment.
|
14105
14012
|
#
|
14106
|
-
# Constraint: You can't specify the
|
14107
|
-
#
|
14013
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
14014
|
+
# MultiAZ parameter is set to `true`.
|
14108
14015
|
# @return [Boolean]
|
14109
14016
|
#
|
14110
14017
|
# @!attribute [rw] publicly_accessible
|
14111
|
-
#
|
14112
|
-
#
|
14113
|
-
#
|
14114
|
-
#
|
14115
|
-
# publicly accessible, it is an internal instance with a DNS name that
|
14018
|
+
# Specifies the accessibility options for the DB instance. A value of
|
14019
|
+
# true specifies an Internet-facing instance with a publicly
|
14020
|
+
# resolvable DNS name, which resolves to a public IP address. A value
|
14021
|
+
# of false specifies an internal instance with a DNS name that
|
14116
14022
|
# resolves to a private IP address. For more information, see
|
14117
|
-
# CreateDBInstance
|
14023
|
+
# `CreateDBInstance`.
|
14118
14024
|
# @return [Boolean]
|
14119
14025
|
#
|
14120
14026
|
# @!attribute [rw] auto_minor_version_upgrade
|
14121
|
-
#
|
14122
|
-
#
|
14027
|
+
# Indicates that minor version upgrades are applied automatically to
|
14028
|
+
# the DB instance during the maintenance window.
|
14123
14029
|
# @return [Boolean]
|
14124
14030
|
#
|
14125
14031
|
# @!attribute [rw] license_model
|
@@ -14221,7 +14127,8 @@ module Aws::RDS
|
|
14221
14127
|
# If you specify `io1`, you must also include a value for the `Iops`
|
14222
14128
|
# parameter.
|
14223
14129
|
#
|
14224
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
14130
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
14131
|
+
# `standard`
|
14225
14132
|
# @return [String]
|
14226
14133
|
#
|
14227
14134
|
# @!attribute [rw] tde_credential_arn
|
@@ -14247,9 +14154,8 @@ module Aws::RDS
|
|
14247
14154
|
# @return [String]
|
14248
14155
|
#
|
14249
14156
|
# @!attribute [rw] copy_tags_to_snapshot
|
14250
|
-
#
|
14251
|
-
#
|
14252
|
-
# copied.
|
14157
|
+
# True to copy all tags from the restored DB instance to snapshots of
|
14158
|
+
# the restored DB instance, and otherwise false. The default is false.
|
14253
14159
|
# @return [Boolean]
|
14254
14160
|
#
|
14255
14161
|
# @!attribute [rw] domain_iam_role_name
|
@@ -14258,9 +14164,8 @@ module Aws::RDS
|
|
14258
14164
|
# @return [String]
|
14259
14165
|
#
|
14260
14166
|
# @!attribute [rw] enable_iam_database_authentication
|
14261
|
-
#
|
14262
|
-
#
|
14263
|
-
# mapping is disabled.
|
14167
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
14168
|
+
# accounts to database accounts, and otherwise false.
|
14264
14169
|
#
|
14265
14170
|
# You can enable IAM database authentication for the following
|
14266
14171
|
# database engines
|
@@ -14268,6 +14173,8 @@ module Aws::RDS
|
|
14268
14173
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
14269
14174
|
#
|
14270
14175
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
14176
|
+
#
|
14177
|
+
# Default: `false`
|
14271
14178
|
# @return [Boolean]
|
14272
14179
|
#
|
14273
14180
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -14287,8 +14194,8 @@ module Aws::RDS
|
|
14287
14194
|
# @return [Array<Types::ProcessorFeature>]
|
14288
14195
|
#
|
14289
14196
|
# @!attribute [rw] use_default_processor_features
|
14290
|
-
# A value that
|
14291
|
-
#
|
14197
|
+
# A value that specifies that the DB instance class of the DB instance
|
14198
|
+
# uses its default processor features.
|
14292
14199
|
# @return [Boolean]
|
14293
14200
|
#
|
14294
14201
|
# @!attribute [rw] db_parameter_group_name
|
@@ -14308,10 +14215,10 @@ module Aws::RDS
|
|
14308
14215
|
# @return [String]
|
14309
14216
|
#
|
14310
14217
|
# @!attribute [rw] deletion_protection
|
14311
|
-
#
|
14312
|
-
#
|
14313
|
-
#
|
14314
|
-
#
|
14218
|
+
# Indicates if the DB instance should have deletion protection
|
14219
|
+
# enabled. The database can't be deleted when this value is set to
|
14220
|
+
# true. The default is false. For more information, see [ Deleting a
|
14221
|
+
# DB Instance][1].
|
14315
14222
|
#
|
14316
14223
|
#
|
14317
14224
|
#
|
@@ -14517,8 +14424,8 @@ module Aws::RDS
|
|
14517
14424
|
#
|
14518
14425
|
# Example: `us-east-1d`
|
14519
14426
|
#
|
14520
|
-
# Constraint: The
|
14521
|
-
# the
|
14427
|
+
# Constraint: The AvailabilityZone parameter can't be specified if
|
14428
|
+
# the MultiAZ parameter is set to `true`. The specified Availability
|
14522
14429
|
# Zone must be in the same AWS Region as the current endpoint.
|
14523
14430
|
#
|
14524
14431
|
#
|
@@ -14595,9 +14502,9 @@ module Aws::RDS
|
|
14595
14502
|
# @return [Integer]
|
14596
14503
|
#
|
14597
14504
|
# @!attribute [rw] multi_az
|
14598
|
-
#
|
14599
|
-
#
|
14600
|
-
#
|
14505
|
+
# Specifies whether the DB instance is a Multi-AZ deployment. If
|
14506
|
+
# MultiAZ is set to `true`, you can't set the AvailabilityZone
|
14507
|
+
# parameter.
|
14601
14508
|
# @return [Boolean]
|
14602
14509
|
#
|
14603
14510
|
# @!attribute [rw] engine_version
|
@@ -14608,9 +14515,11 @@ module Aws::RDS
|
|
14608
14515
|
# @return [String]
|
14609
14516
|
#
|
14610
14517
|
# @!attribute [rw] auto_minor_version_upgrade
|
14611
|
-
#
|
14612
|
-
# automatically to the DB instance during the maintenance window
|
14613
|
-
#
|
14518
|
+
# True to indicate that minor engine upgrades are applied
|
14519
|
+
# automatically to the DB instance during the maintenance window, and
|
14520
|
+
# otherwise false.
|
14521
|
+
#
|
14522
|
+
# Default: `true`
|
14614
14523
|
# @return [Boolean]
|
14615
14524
|
#
|
14616
14525
|
# @!attribute [rw] license_model
|
@@ -14636,13 +14545,12 @@ module Aws::RDS
|
|
14636
14545
|
# @return [String]
|
14637
14546
|
#
|
14638
14547
|
# @!attribute [rw] publicly_accessible
|
14639
|
-
#
|
14640
|
-
#
|
14641
|
-
#
|
14642
|
-
#
|
14643
|
-
# publicly accessible, it is an internal instance with a DNS name that
|
14548
|
+
# Specifies the accessibility options for the DB instance. A value of
|
14549
|
+
# true specifies an Internet-facing instance with a publicly
|
14550
|
+
# resolvable DNS name, which resolves to a public IP address. A value
|
14551
|
+
# of false specifies an internal instance with a DNS name that
|
14644
14552
|
# resolves to a private IP address. For more information, see
|
14645
|
-
# CreateDBInstance
|
14553
|
+
# `CreateDBInstance`.
|
14646
14554
|
# @return [Boolean]
|
14647
14555
|
#
|
14648
14556
|
# @!attribute [rw] tags
|
@@ -14663,12 +14571,12 @@ module Aws::RDS
|
|
14663
14571
|
# If you specify `io1`, you must also include a value for the `Iops`
|
14664
14572
|
# parameter.
|
14665
14573
|
#
|
14666
|
-
# Default: `io1` if the `Iops` parameter is specified; otherwise
|
14574
|
+
# Default: `io1` if the `Iops` parameter is specified; otherwise
|
14575
|
+
# `standard`
|
14667
14576
|
# @return [String]
|
14668
14577
|
#
|
14669
14578
|
# @!attribute [rw] storage_encrypted
|
14670
|
-
#
|
14671
|
-
# not.
|
14579
|
+
# Specifies whether the new DB instance is encrypted or not.
|
14672
14580
|
# @return [Boolean]
|
14673
14581
|
#
|
14674
14582
|
# @!attribute [rw] kms_key_id
|
@@ -14680,16 +14588,18 @@ module Aws::RDS
|
|
14680
14588
|
# instance, then you can use the KMS key alias instead of the ARN for
|
14681
14589
|
# the KM encryption key.
|
14682
14590
|
#
|
14683
|
-
# If the `StorageEncrypted` parameter is
|
14684
|
-
#
|
14685
|
-
#
|
14686
|
-
#
|
14687
|
-
#
|
14591
|
+
# If the `StorageEncrypted` parameter is true, and you do not specify
|
14592
|
+
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
14593
|
+
# default encryption key. AWS KMS creates the default encryption key
|
14594
|
+
# for your AWS account. Your AWS account has a different default
|
14595
|
+
# encryption key for each AWS Region.
|
14688
14596
|
# @return [String]
|
14689
14597
|
#
|
14690
14598
|
# @!attribute [rw] copy_tags_to_snapshot
|
14691
|
-
#
|
14692
|
-
#
|
14599
|
+
# True to copy all tags from the restored DB instance to snapshots of
|
14600
|
+
# the restored DB instance, and otherwise false.
|
14601
|
+
#
|
14602
|
+
# Default: false.
|
14693
14603
|
# @return [Boolean]
|
14694
14604
|
#
|
14695
14605
|
# @!attribute [rw] monitoring_interval
|
@@ -14721,9 +14631,10 @@ module Aws::RDS
|
|
14721
14631
|
# @return [String]
|
14722
14632
|
#
|
14723
14633
|
# @!attribute [rw] enable_iam_database_authentication
|
14724
|
-
#
|
14725
|
-
#
|
14726
|
-
#
|
14634
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
14635
|
+
# accounts to database accounts, and otherwise false.
|
14636
|
+
#
|
14637
|
+
# Default: `false`
|
14727
14638
|
# @return [Boolean]
|
14728
14639
|
#
|
14729
14640
|
# @!attribute [rw] source_engine
|
@@ -14753,8 +14664,8 @@ module Aws::RDS
|
|
14753
14664
|
# @return [String]
|
14754
14665
|
#
|
14755
14666
|
# @!attribute [rw] enable_performance_insights
|
14756
|
-
#
|
14757
|
-
#
|
14667
|
+
# True to enable Performance Insights for the DB instance, and
|
14668
|
+
# otherwise false.
|
14758
14669
|
#
|
14759
14670
|
# For more information, see [Using Amazon Performance Insights][1] in
|
14760
14671
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -14768,11 +14679,6 @@ module Aws::RDS
|
|
14768
14679
|
# The AWS KMS key identifier for encryption of Performance Insights
|
14769
14680
|
# data. The KMS key ID is the Amazon Resource Name (ARN), the KMS key
|
14770
14681
|
# identifier, or the KMS key alias for the KMS encryption key.
|
14771
|
-
#
|
14772
|
-
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
14773
|
-
# then Amazon RDS uses your default encryption key. AWS KMS creates
|
14774
|
-
# the default encryption key for your AWS account. Your AWS account
|
14775
|
-
# has a different default encryption key for each AWS Region.
|
14776
14682
|
# @return [String]
|
14777
14683
|
#
|
14778
14684
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -14797,15 +14703,15 @@ module Aws::RDS
|
|
14797
14703
|
# @return [Array<Types::ProcessorFeature>]
|
14798
14704
|
#
|
14799
14705
|
# @!attribute [rw] use_default_processor_features
|
14800
|
-
# A value that
|
14801
|
-
#
|
14706
|
+
# A value that specifies that the DB instance class of the DB instance
|
14707
|
+
# uses its default processor features.
|
14802
14708
|
# @return [Boolean]
|
14803
14709
|
#
|
14804
14710
|
# @!attribute [rw] deletion_protection
|
14805
|
-
#
|
14806
|
-
#
|
14807
|
-
#
|
14808
|
-
#
|
14711
|
+
# Indicates if the DB instance should have deletion protection
|
14712
|
+
# enabled. The database can't be deleted when this value is set to
|
14713
|
+
# true. The default is false. For more information, see [ Deleting a
|
14714
|
+
# DB Instance][1].
|
14809
14715
|
#
|
14810
14716
|
#
|
14811
14717
|
#
|
@@ -14954,18 +14860,18 @@ module Aws::RDS
|
|
14954
14860
|
#
|
14955
14861
|
# * Must be before the latest restorable time for the DB instance
|
14956
14862
|
#
|
14957
|
-
# * Can't be specified if
|
14958
|
-
# enabled
|
14863
|
+
# * Can't be specified if UseLatestRestorableTime parameter is true
|
14959
14864
|
#
|
14960
14865
|
# Example: `2009-09-07T23:45:00Z`
|
14961
14866
|
# @return [Time]
|
14962
14867
|
#
|
14963
14868
|
# @!attribute [rw] use_latest_restorable_time
|
14964
|
-
#
|
14965
|
-
# latest backup time.
|
14966
|
-
# the latest backup time.
|
14869
|
+
# Specifies whether (`true`) or not (`false`) the DB instance is
|
14870
|
+
# restored from the latest backup time.
|
14967
14871
|
#
|
14968
|
-
#
|
14872
|
+
# Default: `false`
|
14873
|
+
#
|
14874
|
+
# Constraints: Can't be specified if RestoreTime parameter is
|
14969
14875
|
# provided.
|
14970
14876
|
# @return [Boolean]
|
14971
14877
|
#
|
@@ -14996,8 +14902,8 @@ module Aws::RDS
|
|
14996
14902
|
#
|
14997
14903
|
# Default: A random, system-chosen Availability Zone.
|
14998
14904
|
#
|
14999
|
-
# Constraint: You can't specify the
|
15000
|
-
#
|
14905
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
14906
|
+
# MultiAZ parameter is set to true.
|
15001
14907
|
#
|
15002
14908
|
# Example: `us-east-1a`
|
15003
14909
|
# @return [String]
|
@@ -15012,26 +14918,24 @@ module Aws::RDS
|
|
15012
14918
|
# @return [String]
|
15013
14919
|
#
|
15014
14920
|
# @!attribute [rw] multi_az
|
15015
|
-
#
|
15016
|
-
# deployment.
|
14921
|
+
# Specifies if the DB instance is a Multi-AZ deployment.
|
15017
14922
|
#
|
15018
|
-
# Constraint: You can't specify the
|
15019
|
-
#
|
14923
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
14924
|
+
# MultiAZ parameter is set to `true`.
|
15020
14925
|
# @return [Boolean]
|
15021
14926
|
#
|
15022
14927
|
# @!attribute [rw] publicly_accessible
|
15023
|
-
#
|
15024
|
-
#
|
15025
|
-
#
|
15026
|
-
#
|
15027
|
-
# publicly accessible, it is an internal instance with a DNS name that
|
14928
|
+
# Specifies the accessibility options for the DB instance. A value of
|
14929
|
+
# true specifies an Internet-facing instance with a publicly
|
14930
|
+
# resolvable DNS name, which resolves to a public IP address. A value
|
14931
|
+
# of false specifies an internal instance with a DNS name that
|
15028
14932
|
# resolves to a private IP address. For more information, see
|
15029
|
-
# CreateDBInstance
|
14933
|
+
# `CreateDBInstance`.
|
15030
14934
|
# @return [Boolean]
|
15031
14935
|
#
|
15032
14936
|
# @!attribute [rw] auto_minor_version_upgrade
|
15033
|
-
#
|
15034
|
-
#
|
14937
|
+
# Indicates that minor version upgrades are applied automatically to
|
14938
|
+
# the DB instance during the maintenance window.
|
15035
14939
|
# @return [Boolean]
|
15036
14940
|
#
|
15037
14941
|
# @!attribute [rw] license_model
|
@@ -15106,9 +15010,8 @@ module Aws::RDS
|
|
15106
15010
|
# @return [String]
|
15107
15011
|
#
|
15108
15012
|
# @!attribute [rw] copy_tags_to_snapshot
|
15109
|
-
#
|
15110
|
-
#
|
15111
|
-
# copied.
|
15013
|
+
# True to copy all tags from the restored DB instance to snapshots of
|
15014
|
+
# the restored DB instance, and otherwise false. The default is false.
|
15112
15015
|
# @return [Boolean]
|
15113
15016
|
#
|
15114
15017
|
# @!attribute [rw] tags
|
@@ -15128,7 +15031,8 @@ module Aws::RDS
|
|
15128
15031
|
# If you specify `io1`, you must also include a value for the `Iops`
|
15129
15032
|
# parameter.
|
15130
15033
|
#
|
15131
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
15034
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
15035
|
+
# `standard`
|
15132
15036
|
# @return [String]
|
15133
15037
|
#
|
15134
15038
|
# @!attribute [rw] tde_credential_arn
|
@@ -15159,9 +15063,8 @@ module Aws::RDS
|
|
15159
15063
|
# @return [String]
|
15160
15064
|
#
|
15161
15065
|
# @!attribute [rw] enable_iam_database_authentication
|
15162
|
-
#
|
15163
|
-
#
|
15164
|
-
# mapping is disabled.
|
15066
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
15067
|
+
# accounts to database accounts, and otherwise false.
|
15165
15068
|
#
|
15166
15069
|
# You can enable IAM database authentication for the following
|
15167
15070
|
# database engines
|
@@ -15169,6 +15072,8 @@ module Aws::RDS
|
|
15169
15072
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
15170
15073
|
#
|
15171
15074
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
15075
|
+
#
|
15076
|
+
# Default: `false`
|
15172
15077
|
# @return [Boolean]
|
15173
15078
|
#
|
15174
15079
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -15188,8 +15093,8 @@ module Aws::RDS
|
|
15188
15093
|
# @return [Array<Types::ProcessorFeature>]
|
15189
15094
|
#
|
15190
15095
|
# @!attribute [rw] use_default_processor_features
|
15191
|
-
# A value that
|
15192
|
-
#
|
15096
|
+
# A value that specifies that the DB instance class of the DB instance
|
15097
|
+
# uses its default processor features.
|
15193
15098
|
# @return [Boolean]
|
15194
15099
|
#
|
15195
15100
|
# @!attribute [rw] db_parameter_group_name
|
@@ -15209,10 +15114,10 @@ module Aws::RDS
|
|
15209
15114
|
# @return [String]
|
15210
15115
|
#
|
15211
15116
|
# @!attribute [rw] deletion_protection
|
15212
|
-
#
|
15213
|
-
#
|
15214
|
-
#
|
15215
|
-
#
|
15117
|
+
# Indicates if the DB instance should have deletion protection
|
15118
|
+
# enabled. The database can't be deleted when this value is set to
|
15119
|
+
# true. The default is false. For more information, see [ Deleting a
|
15120
|
+
# DB Instance][1].
|
15216
15121
|
#
|
15217
15122
|
#
|
15218
15123
|
#
|
@@ -15385,8 +15290,8 @@ module Aws::RDS
|
|
15385
15290
|
# The minimum capacity for an Aurora DB cluster in `serverless` DB
|
15386
15291
|
# engine mode.
|
15387
15292
|
#
|
15388
|
-
# Valid capacity values are `
|
15389
|
-
#
|
15293
|
+
# Valid capacity values are `2`, `4`, `8`, `16`, `32`, `64`, `128`,
|
15294
|
+
# and `256`.
|
15390
15295
|
#
|
15391
15296
|
# The minimum capacity must be less than or equal to the maximum
|
15392
15297
|
# capacity.
|
@@ -15396,15 +15301,15 @@ module Aws::RDS
|
|
15396
15301
|
# The maximum capacity for an Aurora DB cluster in `serverless` DB
|
15397
15302
|
# engine mode.
|
15398
15303
|
#
|
15399
|
-
# Valid capacity values are `
|
15400
|
-
#
|
15304
|
+
# Valid capacity values are `2`, `4`, `8`, `16`, `32`, `64`, `128`,
|
15305
|
+
# and `256`.
|
15401
15306
|
#
|
15402
15307
|
# The maximum capacity must be greater than or equal to the minimum
|
15403
15308
|
# capacity.
|
15404
15309
|
# @return [Integer]
|
15405
15310
|
#
|
15406
15311
|
# @!attribute [rw] auto_pause
|
15407
|
-
# A value that
|
15312
|
+
# A value that specifies whether to allow or disallow automatic pause
|
15408
15313
|
# for an Aurora DB cluster in `serverless` DB engine mode. A DB
|
15409
15314
|
# cluster can be paused only when it's idle (it has no connections).
|
15410
15315
|
#
|
@@ -15424,14 +15329,11 @@ module Aws::RDS
|
|
15424
15329
|
# The action to take when the timeout is reached, either
|
15425
15330
|
# `ForceApplyCapacityChange` or `RollbackCapacityChange`.
|
15426
15331
|
#
|
15427
|
-
# `ForceApplyCapacityChange
|
15428
|
-
# as soon as possible.
|
15429
|
-
#
|
15430
|
-
# `RollbackCapacityChange`, the default, ignores the capacity change
|
15431
|
-
# if a scaling point is not found in the timeout period.
|
15332
|
+
# `ForceApplyCapacityChange`, the default, sets the capacity to the
|
15333
|
+
# specified value as soon as possible.
|
15432
15334
|
#
|
15433
|
-
#
|
15434
|
-
#
|
15335
|
+
# `RollbackCapacityChange` ignores the capacity change if a scaling
|
15336
|
+
# point is not found in the timeout period.
|
15435
15337
|
#
|
15436
15338
|
# For more information, see [ Autoscaling for Aurora Serverless][1] in
|
15437
15339
|
# the *Amazon Aurora User Guide*.
|
@@ -15794,7 +15696,7 @@ module Aws::RDS
|
|
15794
15696
|
#
|
15795
15697
|
# @!attribute [rw] auto_upgrade
|
15796
15698
|
# A value that indicates whether the target version is applied to any
|
15797
|
-
# source DB instances that have
|
15699
|
+
# source DB instances that have AutoMinorVersionUpgrade set to true.
|
15798
15700
|
# @return [Boolean]
|
15799
15701
|
#
|
15800
15702
|
# @!attribute [rw] is_major_version_upgrade
|