aws-sdk-rds 1.55.0 → 1.56.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 +419 -394
- data/lib/aws-sdk-rds/db_cluster.rb +79 -78
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +5 -5
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +12 -11
- data/lib/aws-sdk-rds/db_engine.rb +13 -6
- data/lib/aws-sdk-rds/db_instance.rb +211 -200
- data/lib/aws-sdk-rds/db_parameter_group.rb +3 -4
- data/lib/aws-sdk-rds/db_snapshot.rb +29 -28
- data/lib/aws-sdk-rds/event_subscription.rb +4 -3
- data/lib/aws-sdk-rds/option_group.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +88 -78
- data/lib/aws-sdk-rds/types.rb +526 -414
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -23,8 +23,91 @@ module Aws::RDS
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# Describes a quota for an AWS account
|
27
|
-
#
|
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
|
28
111
|
#
|
29
112
|
# @!attribute [rw] account_quota_name
|
30
113
|
# The name of the Amazon RDS quota for this AWS account.
|
@@ -429,15 +512,17 @@ module Aws::RDS
|
|
429
512
|
# @return [Time]
|
430
513
|
#
|
431
514
|
# @!attribute [rw] force
|
432
|
-
# A value that
|
433
|
-
# binary logging is enabled. Otherwise, an error occurs when
|
434
|
-
# logging is enabled.
|
515
|
+
# A value that indicates whether to force the DB cluster to backtrack
|
516
|
+
# when binary logging is enabled. Otherwise, an error occurs when
|
517
|
+
# binary logging is enabled.
|
435
518
|
# @return [Boolean]
|
436
519
|
#
|
437
520
|
# @!attribute [rw] use_earliest_time_on_point_in_time_unavailable
|
438
|
-
#
|
439
|
-
# backtrack time
|
440
|
-
#
|
521
|
+
# A value that indicates whether to backtrack the DB cluster to the
|
522
|
+
# earliest possible backtrack time when *BacktrackTo* is set to a
|
523
|
+
# timestamp earlier than the earliest backtrack time. When this
|
524
|
+
# parameter is disabled and *BacktrackTo* is set to a timestamp
|
525
|
+
# earlier than the earliest backtrack time, an error occurs.
|
441
526
|
# @return [Boolean]
|
442
527
|
#
|
443
528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BacktrackDBClusterMessage AWS API Documentation
|
@@ -783,9 +868,9 @@ module Aws::RDS
|
|
783
868
|
# @return [String]
|
784
869
|
#
|
785
870
|
# @!attribute [rw] copy_tags
|
786
|
-
#
|
787
|
-
# target DB cluster snapshot
|
788
|
-
#
|
871
|
+
# A value that indicates whether to copy all tags from the source DB
|
872
|
+
# cluster snapshot to the target DB cluster snapshot. By default, tags
|
873
|
+
# are not copied.
|
789
874
|
# @return [Boolean]
|
790
875
|
#
|
791
876
|
# @!attribute [rw] tags
|
@@ -1017,8 +1102,8 @@ module Aws::RDS
|
|
1017
1102
|
# @return [Array<Types::Tag>]
|
1018
1103
|
#
|
1019
1104
|
# @!attribute [rw] copy_tags
|
1020
|
-
#
|
1021
|
-
# snapshot
|
1105
|
+
# A value that indicates whether to copy all tags from the source DB
|
1106
|
+
# snapshot to the target DB snapshot. By default, tags are not copied.
|
1022
1107
|
# @return [Boolean]
|
1023
1108
|
#
|
1024
1109
|
# @!attribute [rw] pre_signed_url
|
@@ -1494,7 +1579,7 @@ module Aws::RDS
|
|
1494
1579
|
# @return [Array<Types::Tag>]
|
1495
1580
|
#
|
1496
1581
|
# @!attribute [rw] storage_encrypted
|
1497
|
-
#
|
1582
|
+
# A value that indicates whether the DB cluster is encrypted.
|
1498
1583
|
# @return [Boolean]
|
1499
1584
|
#
|
1500
1585
|
# @!attribute [rw] kms_key_id
|
@@ -1513,7 +1598,7 @@ module Aws::RDS
|
|
1513
1598
|
# source. Otherwise, Amazon RDS will use your default encryption
|
1514
1599
|
# key.
|
1515
1600
|
#
|
1516
|
-
# * If the `StorageEncrypted` parameter is
|
1601
|
+
# * If the `StorageEncrypted` parameter is enabled and
|
1517
1602
|
# `ReplicationSourceIdentifier` is not specified, then Amazon RDS
|
1518
1603
|
# will use your default encryption key.
|
1519
1604
|
#
|
@@ -1569,10 +1654,9 @@ module Aws::RDS
|
|
1569
1654
|
# @return [String]
|
1570
1655
|
#
|
1571
1656
|
# @!attribute [rw] enable_iam_database_authentication
|
1572
|
-
#
|
1573
|
-
# accounts to database accounts
|
1574
|
-
#
|
1575
|
-
# Default: `false`
|
1657
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
1658
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
1659
|
+
# mapping is disabled.
|
1576
1660
|
# @return [Boolean]
|
1577
1661
|
#
|
1578
1662
|
# @!attribute [rw] backtrack_window
|
@@ -1611,9 +1695,9 @@ module Aws::RDS
|
|
1611
1695
|
# @return [Types::ScalingConfiguration]
|
1612
1696
|
#
|
1613
1697
|
# @!attribute [rw] deletion_protection
|
1614
|
-
#
|
1615
|
-
# enabled. The database can't be deleted when
|
1616
|
-
#
|
1698
|
+
# A value that indicates whether the DB cluster has deletion
|
1699
|
+
# protection enabled. The database can't be deleted when deletion
|
1700
|
+
# protection is enabled. By default, deletion protection is disabled.
|
1617
1701
|
# @return [Boolean]
|
1618
1702
|
#
|
1619
1703
|
# @!attribute [rw] global_cluster_identifier
|
@@ -1622,8 +1706,8 @@ module Aws::RDS
|
|
1622
1706
|
# @return [String]
|
1623
1707
|
#
|
1624
1708
|
# @!attribute [rw] copy_tags_to_snapshot
|
1625
|
-
#
|
1626
|
-
#
|
1709
|
+
# A value that indicates whether to copy all tags from the DB cluster
|
1710
|
+
# to snapshots of the DB cluster. The default is not to copy them.
|
1627
1711
|
# @return [Boolean]
|
1628
1712
|
#
|
1629
1713
|
# @!attribute [rw] destination_region
|
@@ -1999,10 +2083,10 @@ module Aws::RDS
|
|
1999
2083
|
# following:
|
2000
2084
|
#
|
2001
2085
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2002
|
-
#
|
2086
|
+
# 65536.
|
2003
2087
|
#
|
2004
2088
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2005
|
-
#
|
2089
|
+
# 65536.
|
2006
2090
|
#
|
2007
2091
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2008
2092
|
#
|
@@ -2012,10 +2096,10 @@ module Aws::RDS
|
|
2012
2096
|
# following:
|
2013
2097
|
#
|
2014
2098
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2015
|
-
#
|
2099
|
+
# 65536.
|
2016
2100
|
#
|
2017
2101
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2018
|
-
#
|
2102
|
+
# 65536.
|
2019
2103
|
#
|
2020
2104
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2021
2105
|
#
|
@@ -2025,10 +2109,10 @@ module Aws::RDS
|
|
2025
2109
|
# following:
|
2026
2110
|
#
|
2027
2111
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2028
|
-
#
|
2112
|
+
# 65536.
|
2029
2113
|
#
|
2030
2114
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2031
|
-
#
|
2115
|
+
# 65536.
|
2032
2116
|
#
|
2033
2117
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2034
2118
|
#
|
@@ -2038,10 +2122,10 @@ module Aws::RDS
|
|
2038
2122
|
# following:
|
2039
2123
|
#
|
2040
2124
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2041
|
-
#
|
2125
|
+
# 65536.
|
2042
2126
|
#
|
2043
2127
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2044
|
-
#
|
2128
|
+
# 65536.
|
2045
2129
|
#
|
2046
2130
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
2047
2131
|
#
|
@@ -2246,8 +2330,8 @@ module Aws::RDS
|
|
2246
2330
|
#
|
2247
2331
|
# Example: `us-east-1d`
|
2248
2332
|
#
|
2249
|
-
# Constraint: The AvailabilityZone parameter can't be specified if
|
2250
|
-
# the
|
2333
|
+
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
2334
|
+
# the DB instance is a Multi-AZ deployment. The specified Availability
|
2251
2335
|
# Zone must be in the same AWS Region as the current endpoint.
|
2252
2336
|
#
|
2253
2337
|
#
|
@@ -2396,9 +2480,9 @@ module Aws::RDS
|
|
2396
2480
|
# @return [Integer]
|
2397
2481
|
#
|
2398
2482
|
# @!attribute [rw] multi_az
|
2399
|
-
# A value that
|
2400
|
-
# deployment. You can't set the AvailabilityZone parameter if the
|
2401
|
-
#
|
2483
|
+
# A value that indicates whether the DB instance is a Multi-AZ
|
2484
|
+
# deployment. You can't set the `AvailabilityZone` parameter if the
|
2485
|
+
# DB instance is a Multi-AZ deployment.
|
2402
2486
|
# @return [Boolean]
|
2403
2487
|
#
|
2404
2488
|
# @!attribute [rw] engine_version
|
@@ -2451,10 +2535,9 @@ module Aws::RDS
|
|
2451
2535
|
# @return [String]
|
2452
2536
|
#
|
2453
2537
|
# @!attribute [rw] auto_minor_version_upgrade
|
2454
|
-
#
|
2455
|
-
# the DB instance during the maintenance window.
|
2456
|
-
#
|
2457
|
-
# Default: `true`
|
2538
|
+
# A value that indicates whether minor engine upgrades are applied
|
2539
|
+
# automatically to the DB instance during the maintenance window. By
|
2540
|
+
# default, minor engine upgrades are applied automatically.
|
2458
2541
|
# @return [Boolean]
|
2459
2542
|
#
|
2460
2543
|
# @!attribute [rw] license_model
|
@@ -2499,10 +2582,11 @@ module Aws::RDS
|
|
2499
2582
|
# @return [String]
|
2500
2583
|
#
|
2501
2584
|
# @!attribute [rw] publicly_accessible
|
2502
|
-
#
|
2503
|
-
#
|
2504
|
-
#
|
2505
|
-
#
|
2585
|
+
# A value that indicates whether the DB instance is publicly
|
2586
|
+
# accessible. When the DB instance is publicly accessible, it is an
|
2587
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
2588
|
+
# resolves to a public IP address. When the DB instance is not
|
2589
|
+
# publicly accessible, it is an internal instance with a DNS name that
|
2506
2590
|
# resolves to a private IP address.
|
2507
2591
|
#
|
2508
2592
|
# Default: The default behavior varies depending on whether
|
@@ -2543,8 +2627,7 @@ module Aws::RDS
|
|
2543
2627
|
# If you specify `io1`, you must also include a value for the `Iops`
|
2544
2628
|
# parameter.
|
2545
2629
|
#
|
2546
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2547
|
-
# `standard`
|
2630
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
2548
2631
|
# @return [String]
|
2549
2632
|
#
|
2550
2633
|
# @!attribute [rw] tde_credential_arn
|
@@ -2558,14 +2641,13 @@ module Aws::RDS
|
|
2558
2641
|
# @return [String]
|
2559
2642
|
#
|
2560
2643
|
# @!attribute [rw] storage_encrypted
|
2561
|
-
#
|
2644
|
+
# A value that indicates whether the DB instance is encrypted. By
|
2645
|
+
# default, it is not encrypted.
|
2562
2646
|
#
|
2563
2647
|
# **Amazon Aurora**
|
2564
2648
|
#
|
2565
2649
|
# Not applicable. The encryption for DB instances is managed by the DB
|
2566
2650
|
# cluster.
|
2567
|
-
#
|
2568
|
-
# Default: false
|
2569
2651
|
# @return [Boolean]
|
2570
2652
|
#
|
2571
2653
|
# @!attribute [rw] kms_key_id
|
@@ -2582,11 +2664,11 @@ module Aws::RDS
|
|
2582
2664
|
# Not applicable. The KMS key identifier is managed by the DB cluster.
|
2583
2665
|
# For more information, see `CreateDBCluster`.
|
2584
2666
|
#
|
2585
|
-
# If
|
2586
|
-
#
|
2587
|
-
#
|
2588
|
-
#
|
2589
|
-
#
|
2667
|
+
# If `StorageEncrypted` is enabled, and you do not specify a value for
|
2668
|
+
# the `KmsKeyId` parameter, then Amazon RDS will use your default
|
2669
|
+
# encryption key. AWS KMS creates the default encryption key for your
|
2670
|
+
# AWS account. Your AWS account has a different default encryption key
|
2671
|
+
# for each AWS Region.
|
2590
2672
|
# @return [String]
|
2591
2673
|
#
|
2592
2674
|
# @!attribute [rw] domain
|
@@ -2604,8 +2686,8 @@ module Aws::RDS
|
|
2604
2686
|
# @return [String]
|
2605
2687
|
#
|
2606
2688
|
# @!attribute [rw] copy_tags_to_snapshot
|
2607
|
-
#
|
2608
|
-
#
|
2689
|
+
# A value that indicates whether to copy tags from the DB instance to
|
2690
|
+
# snapshots of the DB instance. By default, tags are not copied.
|
2609
2691
|
#
|
2610
2692
|
# **Amazon Aurora**
|
2611
2693
|
#
|
@@ -2670,8 +2752,9 @@ module Aws::RDS
|
|
2670
2752
|
# @return [String]
|
2671
2753
|
#
|
2672
2754
|
# @!attribute [rw] enable_iam_database_authentication
|
2673
|
-
#
|
2674
|
-
# accounts to database accounts
|
2755
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
2756
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
2757
|
+
# mapping is disabled.
|
2675
2758
|
#
|
2676
2759
|
# You can enable IAM database authentication for the following
|
2677
2760
|
# database engines:
|
@@ -2686,13 +2769,11 @@ module Aws::RDS
|
|
2686
2769
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2687
2770
|
#
|
2688
2771
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
2689
|
-
#
|
2690
|
-
# Default: `false`
|
2691
2772
|
# @return [Boolean]
|
2692
2773
|
#
|
2693
2774
|
# @!attribute [rw] enable_performance_insights
|
2694
|
-
#
|
2695
|
-
#
|
2775
|
+
# A value that indicates whether to enable Performance Insights for
|
2776
|
+
# the DB instance.
|
2696
2777
|
#
|
2697
2778
|
# For more information, see [Using Amazon Performance Insights][1] in
|
2698
2779
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -2706,6 +2787,11 @@ module Aws::RDS
|
|
2706
2787
|
# The AWS KMS key identifier for encryption of Performance Insights
|
2707
2788
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2708
2789
|
# 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.
|
2709
2795
|
# @return [String]
|
2710
2796
|
#
|
2711
2797
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -2731,10 +2817,10 @@ module Aws::RDS
|
|
2731
2817
|
# @return [Array<Types::ProcessorFeature>]
|
2732
2818
|
#
|
2733
2819
|
# @!attribute [rw] deletion_protection
|
2734
|
-
#
|
2735
|
-
# enabled. The database can't be deleted when
|
2736
|
-
#
|
2737
|
-
# DB Instance][1].
|
2820
|
+
# A value that indicates whether the DB instance has deletion
|
2821
|
+
# protection enabled. The database can't be deleted when deletion
|
2822
|
+
# protection is enabled. By default, deletion protection is disabled.
|
2823
|
+
# For more information, see [ Deleting a DB Instance][1].
|
2738
2824
|
#
|
2739
2825
|
#
|
2740
2826
|
#
|
@@ -2911,7 +2997,8 @@ module Aws::RDS
|
|
2911
2997
|
# @return [Integer]
|
2912
2998
|
#
|
2913
2999
|
# @!attribute [rw] multi_az
|
2914
|
-
#
|
3000
|
+
# A value that indicates whether the Read Replica is in a Multi-AZ
|
3001
|
+
# deployment.
|
2915
3002
|
#
|
2916
3003
|
# You can create a Read Replica as a Multi-AZ DB instance. RDS creates
|
2917
3004
|
# a standby of your replica in another Availability Zone for failover
|
@@ -2921,8 +3008,8 @@ module Aws::RDS
|
|
2921
3008
|
# @return [Boolean]
|
2922
3009
|
#
|
2923
3010
|
# @!attribute [rw] auto_minor_version_upgrade
|
2924
|
-
#
|
2925
|
-
# the Read Replica during the maintenance window.
|
3011
|
+
# A value that indicates whether minor engine upgrades are applied
|
3012
|
+
# automatically to the Read Replica during the maintenance window.
|
2926
3013
|
#
|
2927
3014
|
# Default: Inherits from the source DB instance
|
2928
3015
|
# @return [Boolean]
|
@@ -2938,12 +3025,13 @@ module Aws::RDS
|
|
2938
3025
|
# @return [String]
|
2939
3026
|
#
|
2940
3027
|
# @!attribute [rw] publicly_accessible
|
2941
|
-
#
|
2942
|
-
#
|
2943
|
-
#
|
2944
|
-
#
|
3028
|
+
# A value that indicates whether the DB instance is publicly
|
3029
|
+
# accessible. When the DB instance is publicly accessible, it is an
|
3030
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
3031
|
+
# resolves to a public IP address. When the DB instance is not
|
3032
|
+
# publicly accessible, it is an internal instance with a DNS name that
|
2945
3033
|
# resolves to a private IP address. For more information, see
|
2946
|
-
#
|
3034
|
+
# CreateDBInstance.
|
2947
3035
|
# @return [Boolean]
|
2948
3036
|
#
|
2949
3037
|
# @!attribute [rw] tags
|
@@ -2999,13 +3087,13 @@ module Aws::RDS
|
|
2999
3087
|
# If you specify `io1`, you must also include a value for the `Iops`
|
3000
3088
|
# parameter.
|
3001
3089
|
#
|
3002
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
3003
|
-
# `standard`
|
3090
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
3004
3091
|
# @return [String]
|
3005
3092
|
#
|
3006
3093
|
# @!attribute [rw] copy_tags_to_snapshot
|
3007
|
-
#
|
3008
|
-
# Replica
|
3094
|
+
# A value that indicates whether to copy all tags from the Read
|
3095
|
+
# Replica to snapshots of the Read Replica. By default, tags are not
|
3096
|
+
# copied.
|
3009
3097
|
# @return [Boolean]
|
3010
3098
|
#
|
3011
3099
|
# @!attribute [rw] monitoring_interval
|
@@ -3109,8 +3197,9 @@ module Aws::RDS
|
|
3109
3197
|
# @return [String]
|
3110
3198
|
#
|
3111
3199
|
# @!attribute [rw] enable_iam_database_authentication
|
3112
|
-
#
|
3113
|
-
# accounts to database accounts
|
3200
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
3201
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
3202
|
+
# mapping is disabled.
|
3114
3203
|
#
|
3115
3204
|
# You can enable IAM database authentication for the following
|
3116
3205
|
# database engines
|
@@ -3120,13 +3209,11 @@ module Aws::RDS
|
|
3120
3209
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3121
3210
|
#
|
3122
3211
|
# * Aurora MySQL 5.6 or higher
|
3123
|
-
#
|
3124
|
-
# Default: `false`
|
3125
3212
|
# @return [Boolean]
|
3126
3213
|
#
|
3127
3214
|
# @!attribute [rw] enable_performance_insights
|
3128
|
-
#
|
3129
|
-
#
|
3215
|
+
# A value that indicates whether to enable Performance Insights for
|
3216
|
+
# the Read Replica.
|
3130
3217
|
#
|
3131
3218
|
# For more information, see [Using Amazon Performance Insights][1] in
|
3132
3219
|
# the *Amazon RDS User Guide*.
|
@@ -3140,6 +3227,11 @@ module Aws::RDS
|
|
3140
3227
|
# The AWS KMS key identifier for encryption of Performance Insights
|
3141
3228
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
3142
3229
|
# 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.
|
3143
3235
|
# @return [String]
|
3144
3236
|
#
|
3145
3237
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -3164,15 +3256,15 @@ module Aws::RDS
|
|
3164
3256
|
# @return [Array<Types::ProcessorFeature>]
|
3165
3257
|
#
|
3166
3258
|
# @!attribute [rw] use_default_processor_features
|
3167
|
-
# A value that
|
3168
|
-
# uses its default processor features.
|
3259
|
+
# A value that indicates whether the DB instance class of the DB
|
3260
|
+
# instance uses its default processor features.
|
3169
3261
|
# @return [Boolean]
|
3170
3262
|
#
|
3171
3263
|
# @!attribute [rw] deletion_protection
|
3172
|
-
#
|
3173
|
-
# enabled. The database can't be deleted when
|
3174
|
-
#
|
3175
|
-
# DB Instance][1].
|
3264
|
+
# A value that indicates whether the DB instance has deletion
|
3265
|
+
# protection enabled. The database can't be deleted when deletion
|
3266
|
+
# protection is enabled. By default, deletion protection is disabled.
|
3267
|
+
# For more information, see [ Deleting a DB Instance][1].
|
3176
3268
|
#
|
3177
3269
|
#
|
3178
3270
|
#
|
@@ -3602,8 +3694,9 @@ module Aws::RDS
|
|
3602
3694
|
# @return [Array<String>]
|
3603
3695
|
#
|
3604
3696
|
# @!attribute [rw] enabled
|
3605
|
-
# A
|
3606
|
-
#
|
3697
|
+
# A value that indicates whether to activate the subscription. If the
|
3698
|
+
# event notification subscription is not activated, the subscription
|
3699
|
+
# is created but not active.
|
3607
3700
|
# @return [Boolean]
|
3608
3701
|
#
|
3609
3702
|
# @!attribute [rw] tags
|
@@ -3673,7 +3766,8 @@ module Aws::RDS
|
|
3673
3766
|
#
|
3674
3767
|
# @!attribute [rw] deletion_protection
|
3675
3768
|
# The deletion protection setting for the new global database. The
|
3676
|
-
# global database can't be deleted when
|
3769
|
+
# global database can't be deleted when deletion protection is
|
3770
|
+
# enabled.
|
3677
3771
|
# @return [Boolean]
|
3678
3772
|
#
|
3679
3773
|
# @!attribute [rw] database_name
|
@@ -3939,7 +4033,7 @@ module Aws::RDS
|
|
3939
4033
|
# @return [Boolean]
|
3940
4034
|
#
|
3941
4035
|
# @!attribute [rw] kms_key_id
|
3942
|
-
# If `StorageEncrypted` is
|
4036
|
+
# If `StorageEncrypted` is enabled, the AWS KMS key identifier for the
|
3943
4037
|
# encrypted DB cluster.
|
3944
4038
|
# @return [String]
|
3945
4039
|
#
|
@@ -3961,8 +4055,8 @@ module Aws::RDS
|
|
3961
4055
|
# @return [Array<Types::DBClusterRole>]
|
3962
4056
|
#
|
3963
4057
|
# @!attribute [rw] iam_database_authentication_enabled
|
3964
|
-
#
|
3965
|
-
# to database accounts is enabled
|
4058
|
+
# A value that indicates whether the mapping of AWS Identity and
|
4059
|
+
# Access Management (IAM) accounts to database accounts is enabled.
|
3966
4060
|
# @return [Boolean]
|
3967
4061
|
#
|
3968
4062
|
# @!attribute [rw] clone_group_id
|
@@ -4032,7 +4126,7 @@ module Aws::RDS
|
|
4032
4126
|
#
|
4033
4127
|
# @!attribute [rw] deletion_protection
|
4034
4128
|
# Indicates if the DB cluster has deletion protection enabled. The
|
4035
|
-
# database can't be deleted when
|
4129
|
+
# database can't be deleted when deletion protection is enabled.
|
4036
4130
|
# @return [Boolean]
|
4037
4131
|
#
|
4038
4132
|
# @!attribute [rw] http_endpoint_enabled
|
@@ -4041,8 +4135,8 @@ module Aws::RDS
|
|
4041
4135
|
#
|
4042
4136
|
# </note>
|
4043
4137
|
#
|
4044
|
-
#
|
4045
|
-
# DB cluster is enabled
|
4138
|
+
# A value that indicates whether the HTTP endpoint for an Aurora
|
4139
|
+
# Serverless DB cluster is enabled.
|
4046
4140
|
#
|
4047
4141
|
# When enabled, the HTTP endpoint provides a connectionless web
|
4048
4142
|
# service API for running SQL queries on the Aurora Serverless DB
|
@@ -4328,8 +4422,8 @@ module Aws::RDS
|
|
4328
4422
|
# @return [String]
|
4329
4423
|
#
|
4330
4424
|
# @!attribute [rw] is_cluster_writer
|
4331
|
-
#
|
4332
|
-
# for the DB cluster
|
4425
|
+
# A value that indicates whehter the cluster member is the primary
|
4426
|
+
# instance for the DB cluster.
|
4333
4427
|
# @return [Boolean]
|
4334
4428
|
#
|
4335
4429
|
# @!attribute [rw] db_cluster_parameter_group_status
|
@@ -5180,8 +5274,8 @@ module Aws::RDS
|
|
5180
5274
|
#
|
5181
5275
|
# @!attribute [rw] deletion_protection
|
5182
5276
|
# Indicates if the DB instance has deletion protection enabled. The
|
5183
|
-
# database can't be deleted when
|
5184
|
-
# information, see [ Deleting a DB Instance][1].
|
5277
|
+
# database can't be deleted when deletion protection is enabled. For
|
5278
|
+
# more information, see [ Deleting a DB Instance][1].
|
5185
5279
|
#
|
5186
5280
|
#
|
5187
5281
|
#
|
@@ -6085,25 +6179,26 @@ module Aws::RDS
|
|
6085
6179
|
# @return [String]
|
6086
6180
|
#
|
6087
6181
|
# @!attribute [rw] skip_final_snapshot
|
6088
|
-
#
|
6089
|
-
# DB cluster is deleted. If
|
6090
|
-
# snapshot is created. If
|
6091
|
-
# is created before the DB cluster is
|
6182
|
+
# A value that indicates whether to skip the creation of a final DB
|
6183
|
+
# cluster snapshot before the DB cluster is deleted. If skip is
|
6184
|
+
# specified, no DB cluster snapshot is created. If skip is not
|
6185
|
+
# specified, a DB cluster snapshot is created before the DB cluster is
|
6186
|
+
# deleted. By default, skip is not specified, and the DB cluster
|
6187
|
+
# snapshot is created. By default, this parameter is disabled.
|
6092
6188
|
#
|
6093
6189
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
6094
|
-
# `SkipFinalSnapshot` is
|
6190
|
+
# `SkipFinalSnapshot` is disabled.
|
6095
6191
|
#
|
6096
6192
|
# </note>
|
6097
|
-
#
|
6098
|
-
# Default: `false`
|
6099
6193
|
# @return [Boolean]
|
6100
6194
|
#
|
6101
6195
|
# @!attribute [rw] final_db_snapshot_identifier
|
6102
6196
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
6103
|
-
# created when `SkipFinalSnapshot` is
|
6197
|
+
# created when `SkipFinalSnapshot` is disabled.
|
6104
6198
|
#
|
6105
|
-
# <note markdown="1"> Specifying this parameter and also
|
6106
|
-
#
|
6199
|
+
# <note markdown="1"> Specifying this parameter and also skipping the creation of a final
|
6200
|
+
# DB cluster snapshot with the `SkipFinalShapshot` parameter results
|
6201
|
+
# in an error.
|
6107
6202
|
#
|
6108
6203
|
# </note>
|
6109
6204
|
#
|
@@ -6256,32 +6351,31 @@ module Aws::RDS
|
|
6256
6351
|
# @return [String]
|
6257
6352
|
#
|
6258
6353
|
# @!attribute [rw] skip_final_snapshot
|
6259
|
-
# A value that indicates whether
|
6260
|
-
# the DB instance is deleted. If
|
6261
|
-
# is created. If
|
6262
|
-
# the DB instance is deleted.
|
6354
|
+
# A value that indicates whether to skip the creation of a final DB
|
6355
|
+
# snapshot before the DB instance is deleted. If skip is specified, no
|
6356
|
+
# DB snapshot is created. If skip is not specified, a DB snapshot is
|
6357
|
+
# created before the DB instance is deleted. By default, skip is not
|
6358
|
+
# specified, and the DB snapshot is created.
|
6263
6359
|
#
|
6264
|
-
#
|
6265
|
-
#
|
6266
|
-
#
|
6267
|
-
#
|
6360
|
+
# Note that when a DB instance is in a failure state and has a status
|
6361
|
+
# of 'failed', 'incompatible-restore', or
|
6362
|
+
# 'incompatible-network', it can only be deleted when skip is
|
6363
|
+
# specified.
|
6268
6364
|
#
|
6269
|
-
# Specify
|
6365
|
+
# Specify skip when deleting a Read Replica.
|
6270
6366
|
#
|
6271
|
-
# <note markdown="1"> The
|
6272
|
-
#
|
6367
|
+
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip is
|
6368
|
+
# not specified.
|
6273
6369
|
#
|
6274
6370
|
# </note>
|
6275
|
-
#
|
6276
|
-
# Default: `false`
|
6277
6371
|
# @return [Boolean]
|
6278
6372
|
#
|
6279
6373
|
# @!attribute [rw] final_db_snapshot_identifier
|
6280
|
-
# The `DBSnapshotIdentifier` of the new
|
6281
|
-
# `SkipFinalSnapshot` is
|
6374
|
+
# The `DBSnapshotIdentifier` of the new `DBSnapshot` created when the
|
6375
|
+
# `SkipFinalSnapshot` parameter is disabled.
|
6282
6376
|
#
|
6283
|
-
# <note markdown="1"> Specifying this parameter and also
|
6284
|
-
#
|
6377
|
+
# <note markdown="1"> Specifying this parameter and also specifying to skip final DB
|
6378
|
+
# snapshot creation in SkipFinalShapshot results in an error.
|
6285
6379
|
#
|
6286
6380
|
# </note>
|
6287
6381
|
#
|
@@ -6299,7 +6393,8 @@ module Aws::RDS
|
|
6299
6393
|
# @!attribute [rw] delete_automated_backups
|
6300
6394
|
# A value that indicates whether to remove automated backups
|
6301
6395
|
# immediately after the DB instance is deleted. This parameter isn't
|
6302
|
-
# case-sensitive.
|
6396
|
+
# case-sensitive. The default is to remove automated backups
|
6397
|
+
# immediately after the DB instance is deleted.
|
6303
6398
|
# @return [Boolean]
|
6304
6399
|
#
|
6305
6400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceMessage AWS API Documentation
|
@@ -6994,10 +7089,10 @@ module Aws::RDS
|
|
6994
7089
|
#
|
6995
7090
|
# If you don't specify a `SnapshotType` value, then both automated
|
6996
7091
|
# and manual DB cluster snapshots are returned. You can include shared
|
6997
|
-
# DB cluster snapshots with these results by
|
6998
|
-
# `IncludeShared` parameter
|
6999
|
-
#
|
7000
|
-
# parameter
|
7092
|
+
# DB cluster snapshots with these results by enabling the
|
7093
|
+
# `IncludeShared` parameter. You can include public DB cluster
|
7094
|
+
# snapshots with these results by enabling the `IncludePublic`
|
7095
|
+
# parameter.
|
7001
7096
|
#
|
7002
7097
|
# The `IncludeShared` and `IncludePublic` parameters don't apply for
|
7003
7098
|
# `SnapshotType` values of `manual` or `automated`. The
|
@@ -7029,9 +7124,10 @@ module Aws::RDS
|
|
7029
7124
|
# @return [String]
|
7030
7125
|
#
|
7031
7126
|
# @!attribute [rw] include_shared
|
7032
|
-
#
|
7033
|
-
# accounts that this AWS account has been
|
7034
|
-
#
|
7127
|
+
# A value that indicates whether to include shared manual DB cluster
|
7128
|
+
# snapshots from other AWS accounts that this AWS account has been
|
7129
|
+
# given permission to copy or restore. By default, these snapshots are
|
7130
|
+
# not included.
|
7035
7131
|
#
|
7036
7132
|
# You can give an AWS account permission to restore a manual DB
|
7037
7133
|
# cluster snapshot from another AWS account by the
|
@@ -7039,12 +7135,12 @@ module Aws::RDS
|
|
7039
7135
|
# @return [Boolean]
|
7040
7136
|
#
|
7041
7137
|
# @!attribute [rw] include_public
|
7042
|
-
#
|
7043
|
-
# be copied or restored by any AWS
|
7044
|
-
# default
|
7138
|
+
# A value that indicates whether to include manual DB cluster
|
7139
|
+
# snapshots that are public and can be copied or restored by any AWS
|
7140
|
+
# account. By default, the public snapshots are not included.
|
7045
7141
|
#
|
7046
7142
|
# You can share a manual DB cluster snapshot as public by using the
|
7047
|
-
#
|
7143
|
+
# ModifyDBClusterSnapshotAttribute API action.
|
7048
7144
|
# @return [Boolean]
|
7049
7145
|
#
|
7050
7146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshotsMessage AWS API Documentation
|
@@ -7192,25 +7288,33 @@ module Aws::RDS
|
|
7192
7288
|
# @return [String]
|
7193
7289
|
#
|
7194
7290
|
# @!attribute [rw] default_only
|
7195
|
-
#
|
7196
|
-
# engine and major version combination is
|
7291
|
+
# A value that indicates whether only the default version of the
|
7292
|
+
# specified engine or engine and major version combination is
|
7293
|
+
# returned.
|
7197
7294
|
# @return [Boolean]
|
7198
7295
|
#
|
7199
7296
|
# @!attribute [rw] list_supported_character_sets
|
7200
|
-
#
|
7297
|
+
# A value that indicates whether to list the supported character sets
|
7298
|
+
# for each engine version.
|
7299
|
+
#
|
7300
|
+
# If this parameter is enabled and the requested engine supports the
|
7201
7301
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
7202
7302
|
# includes a list of supported character sets for each engine version.
|
7203
7303
|
# @return [Boolean]
|
7204
7304
|
#
|
7205
7305
|
# @!attribute [rw] list_supported_timezones
|
7206
|
-
#
|
7306
|
+
# A value that indicates whether to list the supported time zones for
|
7307
|
+
# each engine version.
|
7308
|
+
#
|
7309
|
+
# If this parameter is enabled and the requested engine supports the
|
7207
7310
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
7208
7311
|
# list of supported time zones for each engine version.
|
7209
7312
|
# @return [Boolean]
|
7210
7313
|
#
|
7211
7314
|
# @!attribute [rw] include_all
|
7212
|
-
#
|
7213
|
-
# default is to list only available
|
7315
|
+
# A value that indicates whether to include engine versions that
|
7316
|
+
# aren't available in the list. The default is to list only available
|
7317
|
+
# engine versions.
|
7214
7318
|
# @return [Boolean]
|
7215
7319
|
#
|
7216
7320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersionsMessage AWS API Documentation
|
@@ -7779,9 +7883,9 @@ module Aws::RDS
|
|
7779
7883
|
# If you don't specify a `SnapshotType` value, then both automated
|
7780
7884
|
# and manual snapshots are returned. Shared and public DB snapshots
|
7781
7885
|
# are not included in the returned results by default. You can include
|
7782
|
-
# shared snapshots with these results by
|
7783
|
-
# parameter
|
7784
|
-
#
|
7886
|
+
# shared snapshots with these results by enabling the `IncludeShared`
|
7887
|
+
# parameter. You can include public snapshots with these results by
|
7888
|
+
# enabling the `IncludePublic` parameter.
|
7785
7889
|
#
|
7786
7890
|
# The `IncludeShared` and `IncludePublic` parameters don't apply for
|
7787
7891
|
# `SnapshotType` values of `manual` or `automated`. The
|
@@ -7817,9 +7921,10 @@ module Aws::RDS
|
|
7817
7921
|
# @return [String]
|
7818
7922
|
#
|
7819
7923
|
# @!attribute [rw] include_shared
|
7820
|
-
#
|
7821
|
-
# that this AWS account has been
|
7822
|
-
#
|
7924
|
+
# A value that indicates whether to include shared manual DB cluster
|
7925
|
+
# snapshots from other AWS accounts that this AWS account has been
|
7926
|
+
# given permission to copy or restore. By default, these snapshots are
|
7927
|
+
# not included.
|
7823
7928
|
#
|
7824
7929
|
# You can give an AWS account permission to restore a manual DB
|
7825
7930
|
# snapshot from another AWS account by using the
|
@@ -7827,12 +7932,12 @@ module Aws::RDS
|
|
7827
7932
|
# @return [Boolean]
|
7828
7933
|
#
|
7829
7934
|
# @!attribute [rw] include_public
|
7830
|
-
#
|
7831
|
-
# copied or restored by any AWS
|
7832
|
-
# default
|
7935
|
+
# A value that indicates whether to include manual DB cluster
|
7936
|
+
# snapshots that are public and can be copied or restored by any AWS
|
7937
|
+
# account. By default, the public snapshots are not included.
|
7833
7938
|
#
|
7834
7939
|
# You can share a manual DB snapshot as public by using the
|
7835
|
-
#
|
7940
|
+
# ModifyDBSnapshotAttribute API.
|
7836
7941
|
# @return [Boolean]
|
7837
7942
|
#
|
7838
7943
|
# @!attribute [rw] dbi_resource_id
|
@@ -8468,8 +8573,8 @@ module Aws::RDS
|
|
8468
8573
|
# @return [String]
|
8469
8574
|
#
|
8470
8575
|
# @!attribute [rw] vpc
|
8471
|
-
#
|
8472
|
-
#
|
8576
|
+
# A value that indicates whether to show only VPC or non-VPC
|
8577
|
+
# offerings.
|
8473
8578
|
# @return [Boolean]
|
8474
8579
|
#
|
8475
8580
|
# @!attribute [rw] filters
|
@@ -8629,8 +8734,8 @@ module Aws::RDS
|
|
8629
8734
|
# @return [String]
|
8630
8735
|
#
|
8631
8736
|
# @!attribute [rw] multi_az
|
8632
|
-
#
|
8633
|
-
#
|
8737
|
+
# A value that indicates whether to show only those reservations that
|
8738
|
+
# support Multi-AZ.
|
8634
8739
|
# @return [Boolean]
|
8635
8740
|
#
|
8636
8741
|
# @!attribute [rw] filters
|
@@ -8729,8 +8834,8 @@ module Aws::RDS
|
|
8729
8834
|
# @return [String]
|
8730
8835
|
#
|
8731
8836
|
# @!attribute [rw] multi_az
|
8732
|
-
#
|
8733
|
-
#
|
8837
|
+
# A value that indicates whether to show only those reservations that
|
8838
|
+
# support Multi-AZ.
|
8734
8839
|
# @return [Boolean]
|
8735
8840
|
#
|
8736
8841
|
# @!attribute [rw] filters
|
@@ -9592,7 +9697,8 @@ module Aws::RDS
|
|
9592
9697
|
#
|
9593
9698
|
# Constraints:
|
9594
9699
|
#
|
9595
|
-
# * Value must be `2`, `4`, `8`, `16`, `32`, `64`, `128`, or
|
9700
|
+
# * Value must be `1`, `2`, `4`, `8`, `16`, `32`, `64`, `128`, or
|
9701
|
+
# `256`.
|
9596
9702
|
#
|
9597
9703
|
# ^
|
9598
9704
|
# @return [Integer]
|
@@ -9730,22 +9836,22 @@ module Aws::RDS
|
|
9730
9836
|
# @return [String]
|
9731
9837
|
#
|
9732
9838
|
# @!attribute [rw] apply_immediately
|
9733
|
-
# A value that
|
9839
|
+
# A value that indicates whether the modifications in this request and
|
9734
9840
|
# any pending modifications are asynchronously applied as soon as
|
9735
9841
|
# possible, regardless of the `PreferredMaintenanceWindow` setting for
|
9736
|
-
# the DB cluster. If this parameter is
|
9737
|
-
#
|
9842
|
+
# the DB cluster. If this parameter is disabled, changes to the DB
|
9843
|
+
# cluster are applied during the next maintenance window.
|
9738
9844
|
#
|
9739
9845
|
# The `ApplyImmediately` parameter only affects the
|
9740
9846
|
# `EnableIAMDatabaseAuthentication`, `MasterUserPassword`, and
|
9741
|
-
# `NewDBClusterIdentifier` values. If
|
9742
|
-
#
|
9743
|
-
# `
|
9744
|
-
#
|
9745
|
-
#
|
9746
|
-
#
|
9847
|
+
# `NewDBClusterIdentifier` values. If the `ApplyImmediately` parameter
|
9848
|
+
# is disabled, then changes to the `EnableIAMDatabaseAuthentication`,
|
9849
|
+
# `MasterUserPassword`, and `NewDBClusterIdentifier` values are
|
9850
|
+
# applied during the next maintenance window. All other changes are
|
9851
|
+
# applied immediately, regardless of the value of the
|
9852
|
+
# `ApplyImmediately` parameter.
|
9747
9853
|
#
|
9748
|
-
#
|
9854
|
+
# By default, this parameter is disabled.
|
9749
9855
|
# @return [Boolean]
|
9750
9856
|
#
|
9751
9857
|
# @!attribute [rw] backup_retention_period
|
@@ -9790,11 +9896,11 @@ module Aws::RDS
|
|
9790
9896
|
# A value that indicates that the DB cluster should be associated with
|
9791
9897
|
# the specified option group. Changing this parameter doesn't result
|
9792
9898
|
# in an outage except in the following case, and the change is applied
|
9793
|
-
# during the next maintenance window unless the `ApplyImmediately`
|
9794
|
-
#
|
9795
|
-
#
|
9796
|
-
#
|
9797
|
-
#
|
9899
|
+
# during the next maintenance window unless the `ApplyImmediately` is
|
9900
|
+
# enabled for this request. If the parameter change results in an
|
9901
|
+
# option group that enables OEM, this change can cause a brief
|
9902
|
+
# (sub-second) period during which new connections are rejected but
|
9903
|
+
# existing connections are not interrupted.
|
9798
9904
|
#
|
9799
9905
|
# Permanent options can't be removed from an option group. The option
|
9800
9906
|
# group can't be removed from a DB cluster once it is associated with
|
@@ -9848,10 +9954,9 @@ module Aws::RDS
|
|
9848
9954
|
# @return [String]
|
9849
9955
|
#
|
9850
9956
|
# @!attribute [rw] enable_iam_database_authentication
|
9851
|
-
#
|
9852
|
-
# accounts to database accounts
|
9853
|
-
#
|
9854
|
-
# Default: `false`
|
9957
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
9958
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
9959
|
+
# mapping is disabled.
|
9855
9960
|
# @return [Boolean]
|
9856
9961
|
#
|
9857
9962
|
# @!attribute [rw] backtrack_window
|
@@ -9876,11 +9981,10 @@ module Aws::RDS
|
|
9876
9981
|
# @!attribute [rw] engine_version
|
9877
9982
|
# The version number of the database engine to which you want to
|
9878
9983
|
# upgrade. Changing this parameter results in an outage. The change is
|
9879
|
-
# applied during the next maintenance window unless
|
9880
|
-
#
|
9984
|
+
# applied during the next maintenance window unless `ApplyImmediately`
|
9985
|
+
# is enabled.
|
9881
9986
|
#
|
9882
|
-
# For a list of valid engine versions, use
|
9883
|
-
# `DescribeDBEngineVersions` action.
|
9987
|
+
# For a list of valid engine versions, use DescribeDBEngineVersions.
|
9884
9988
|
# @return [String]
|
9885
9989
|
#
|
9886
9990
|
# @!attribute [rw] scaling_configuration
|
@@ -9889,8 +9993,9 @@ module Aws::RDS
|
|
9889
9993
|
# @return [Types::ScalingConfiguration]
|
9890
9994
|
#
|
9891
9995
|
# @!attribute [rw] deletion_protection
|
9892
|
-
#
|
9893
|
-
# database can't be deleted when
|
9996
|
+
# A value that indicates whether the DB cluster has deletion
|
9997
|
+
# protection enabled. The database can't be deleted when deletion
|
9998
|
+
# protection is enabled. By default, deletion protection is disabled.
|
9894
9999
|
# @return [Boolean]
|
9895
10000
|
#
|
9896
10001
|
# @!attribute [rw] enable_http_endpoint
|
@@ -9917,8 +10022,8 @@ module Aws::RDS
|
|
9917
10022
|
# @return [Boolean]
|
9918
10023
|
#
|
9919
10024
|
# @!attribute [rw] copy_tags_to_snapshot
|
9920
|
-
#
|
9921
|
-
#
|
10025
|
+
# A value that indicates whether to copy all tags from the DB cluster
|
10026
|
+
# to snapshots of the DB cluster. The default is not to copy them.
|
9922
10027
|
# @return [Boolean]
|
9923
10028
|
#
|
9924
10029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
@@ -10159,7 +10264,7 @@ module Aws::RDS
|
|
10159
10264
|
#
|
10160
10265
|
# If you modify the DB instance class, an outage occurs during the
|
10161
10266
|
# change. The change is applied during the next maintenance window,
|
10162
|
-
# unless `ApplyImmediately` is
|
10267
|
+
# unless `ApplyImmediately` is enabled for this request.
|
10163
10268
|
#
|
10164
10269
|
# Default: Uses existing setting
|
10165
10270
|
#
|
@@ -10177,7 +10282,7 @@ module Aws::RDS
|
|
10177
10282
|
#
|
10178
10283
|
# Changing the subnet group causes an outage during the change. The
|
10179
10284
|
# change is applied during the next maintenance window, unless you
|
10180
|
-
#
|
10285
|
+
# enable `ApplyImmediately`.
|
10181
10286
|
#
|
10182
10287
|
# Constraints: If supplied, must match the name of an existing
|
10183
10288
|
# DBSubnetGroup.
|
@@ -10219,22 +10324,19 @@ module Aws::RDS
|
|
10219
10324
|
# @return [Array<String>]
|
10220
10325
|
#
|
10221
10326
|
# @!attribute [rw] apply_immediately
|
10222
|
-
#
|
10223
|
-
# modifications are asynchronously applied as soon as
|
10224
|
-
# regardless of the `PreferredMaintenanceWindow` setting for
|
10225
|
-
# instance.
|
10327
|
+
# A value that indicates whether the modifications in this request and
|
10328
|
+
# any pending modifications are asynchronously applied as soon as
|
10329
|
+
# possible, regardless of the `PreferredMaintenanceWindow` setting for
|
10330
|
+
# the DB instance. By default, this parameter is disabled.
|
10226
10331
|
#
|
10227
|
-
# If this parameter is
|
10332
|
+
# If this parameter is disabled, changes to the DB instance are
|
10228
10333
|
# applied during the next maintenance window. Some parameter changes
|
10229
10334
|
# can cause an outage and are applied on the next call to
|
10230
|
-
#
|
10231
|
-
# parameters in [Modifying a DB Instance
|
10232
|
-
#
|
10233
|
-
#
|
10234
|
-
#
|
10235
|
-
# applied.
|
10236
|
-
#
|
10237
|
-
# Default: `false`
|
10335
|
+
# RebootDBInstance, or the next failure reboot. Review the table of
|
10336
|
+
# parameters in [Modifying a DB Instance][1] in the *Amazon RDS User
|
10337
|
+
# Guide.* to see the impact of enabling or disabling
|
10338
|
+
# `ApplyImmediately` for each modified parameter and to determine when
|
10339
|
+
# the changes are applied.
|
10238
10340
|
#
|
10239
10341
|
#
|
10240
10342
|
#
|
@@ -10309,8 +10411,8 @@ module Aws::RDS
|
|
10309
10411
|
# Changing this parameter can result in an outage if you change from 0
|
10310
10412
|
# to a non-zero value or from a non-zero value to 0. These changes are
|
10311
10413
|
# applied during the next maintenance window unless the
|
10312
|
-
# `ApplyImmediately` parameter is
|
10313
|
-
#
|
10414
|
+
# `ApplyImmediately` parameter is enabled for this request. If you
|
10415
|
+
# change the parameter from one non-zero value to another non-zero
|
10314
10416
|
# value, the change is asynchronously applied as soon as possible.
|
10315
10417
|
#
|
10316
10418
|
# **Amazon Aurora**
|
@@ -10379,17 +10481,17 @@ module Aws::RDS
|
|
10379
10481
|
# @return [String]
|
10380
10482
|
#
|
10381
10483
|
# @!attribute [rw] multi_az
|
10382
|
-
#
|
10383
|
-
# parameter doesn't result in an outage and
|
10384
|
-
# during the next maintenance window unless the
|
10385
|
-
# parameter is
|
10484
|
+
# A value that indicates whether the DB instance is a Multi-AZ
|
10485
|
+
# deployment. Changing this parameter doesn't result in an outage and
|
10486
|
+
# the change is applied during the next maintenance window unless the
|
10487
|
+
# `ApplyImmediately` parameter is enabled for this request.
|
10386
10488
|
# @return [Boolean]
|
10387
10489
|
#
|
10388
10490
|
# @!attribute [rw] engine_version
|
10389
10491
|
# The version number of the database engine to upgrade to. Changing
|
10390
10492
|
# this parameter results in an outage and the change is applied during
|
10391
10493
|
# the next maintenance window unless the `ApplyImmediately` parameter
|
10392
|
-
# is
|
10494
|
+
# is eanbled for this request.
|
10393
10495
|
#
|
10394
10496
|
# For major version upgrades, if a nondefault DB parameter group is
|
10395
10497
|
# currently in use, a new DB parameter group in the DB parameter group
|
@@ -10402,21 +10504,21 @@ module Aws::RDS
|
|
10402
10504
|
# @return [String]
|
10403
10505
|
#
|
10404
10506
|
# @!attribute [rw] allow_major_version_upgrade
|
10405
|
-
#
|
10406
|
-
# parameter doesn't result in an outage and the change
|
10407
|
-
# asynchronously applied as soon as possible.
|
10507
|
+
# A value that indicates whether major version upgrades are allowed.
|
10508
|
+
# Changing this parameter doesn't result in an outage and the change
|
10509
|
+
# is asynchronously applied as soon as possible.
|
10408
10510
|
#
|
10409
|
-
# Constraints:
|
10410
|
-
# value for the EngineVersion parameter that is a different major
|
10511
|
+
# Constraints: Major version upgrades must be allowed when specifying
|
10512
|
+
# a value for the EngineVersion parameter that is a different major
|
10411
10513
|
# version than the DB instance's current version.
|
10412
10514
|
# @return [Boolean]
|
10413
10515
|
#
|
10414
10516
|
# @!attribute [rw] auto_minor_version_upgrade
|
10415
|
-
#
|
10416
|
-
# the DB instance during the maintenance window.
|
10417
|
-
# parameter doesn't result in an outage except in the
|
10418
|
-
# and the change is asynchronously applied as soon as
|
10419
|
-
# outage
|
10517
|
+
# A value that indicates whether minor version upgrades are applied
|
10518
|
+
# automatically to the DB instance during the maintenance window.
|
10519
|
+
# Changing this parameter doesn't result in an outage except in the
|
10520
|
+
# following case and the change is asynchronously applied as soon as
|
10521
|
+
# possible. An outage results if this parameter is enabled during the
|
10420
10522
|
# maintenance window, and a newer minor version is available, and RDS
|
10421
10523
|
# has enabled auto patching for that engine version.
|
10422
10524
|
# @return [Boolean]
|
@@ -10434,10 +10536,10 @@ module Aws::RDS
|
|
10434
10536
|
#
|
10435
10537
|
# Changing this setting doesn't result in an outage and the change is
|
10436
10538
|
# applied during the next maintenance window unless the
|
10437
|
-
# `ApplyImmediately` parameter is
|
10438
|
-
#
|
10439
|
-
#
|
10440
|
-
#
|
10539
|
+
# `ApplyImmediately` parameter is enabled for this request. If you are
|
10540
|
+
# migrating from Provisioned IOPS to standard storage, set this value
|
10541
|
+
# to 0. The DB instance will require a reboot for the change in
|
10542
|
+
# storage type to take effect.
|
10441
10543
|
#
|
10442
10544
|
# If you choose to migrate your DB instance from using standard
|
10443
10545
|
# storage to using Provisioned IOPS, or from using Provisioned IOPS to
|
@@ -10468,7 +10570,7 @@ module Aws::RDS
|
|
10468
10570
|
# specified option group. Changing this parameter doesn't result in
|
10469
10571
|
# an outage except in the following case and the change is applied
|
10470
10572
|
# during the next maintenance window unless the `ApplyImmediately`
|
10471
|
-
# parameter is
|
10573
|
+
# parameter is enabled for this request. If the parameter change
|
10472
10574
|
# results in an option group that enables OEM, this change can cause a
|
10473
10575
|
# brief (sub-second) period during which new connections are rejected
|
10474
10576
|
# but existing connections are not interrupted.
|
@@ -10482,9 +10584,9 @@ module Aws::RDS
|
|
10482
10584
|
# @!attribute [rw] new_db_instance_identifier
|
10483
10585
|
# The new DB instance identifier for the DB instance when renaming a
|
10484
10586
|
# DB instance. When you change the DB instance identifier, an instance
|
10485
|
-
# reboot
|
10486
|
-
#
|
10487
|
-
# Immediately
|
10587
|
+
# reboot occurs immediately if you enable `ApplyImmediately`, or will
|
10588
|
+
# occur during the next maintenance window if you disable Apply
|
10589
|
+
# Immediately. This value is stored as a lowercase string.
|
10488
10590
|
#
|
10489
10591
|
# Constraints:
|
10490
10592
|
#
|
@@ -10521,8 +10623,7 @@ module Aws::RDS
|
|
10521
10623
|
#
|
10522
10624
|
# Valid values: `standard | gp2 | io1`
|
10523
10625
|
#
|
10524
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
10525
|
-
# `standard`
|
10626
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
10526
10627
|
# @return [String]
|
10527
10628
|
#
|
10528
10629
|
# @!attribute [rw] tde_credential_arn
|
@@ -10548,8 +10649,8 @@ module Aws::RDS
|
|
10548
10649
|
# @return [String]
|
10549
10650
|
#
|
10550
10651
|
# @!attribute [rw] copy_tags_to_snapshot
|
10551
|
-
#
|
10552
|
-
#
|
10652
|
+
# A value that indicates whether to copy all tags from the DB instance
|
10653
|
+
# to snapshots of the DB instance. By default, tags are not copied.
|
10553
10654
|
#
|
10554
10655
|
# **Amazon Aurora**
|
10555
10656
|
#
|
@@ -10621,21 +10722,20 @@ module Aws::RDS
|
|
10621
10722
|
# @return [Integer]
|
10622
10723
|
#
|
10623
10724
|
# @!attribute [rw] publicly_accessible
|
10624
|
-
#
|
10625
|
-
#
|
10626
|
-
# Internet-facing with a publicly resolvable DNS name, which
|
10627
|
-
# to a public IP address.
|
10628
|
-
#
|
10725
|
+
# A value that indicates whether the DB instance is publicly
|
10726
|
+
# accessible. When the DB instance is publicly accessible, it is an
|
10727
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
10728
|
+
# resolves to a public IP address. When the DB instance is not
|
10729
|
+
# publicly accessible, it is an internal instance with a DNS name that
|
10730
|
+
# resolves to a private IP address.
|
10629
10731
|
#
|
10630
10732
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
10631
10733
|
# instance must be part of a public subnet and `PubliclyAccessible`
|
10632
|
-
# must be
|
10734
|
+
# must be enabled for it to be publicly accessible.
|
10633
10735
|
#
|
10634
10736
|
# Changes to the `PubliclyAccessible` parameter are applied
|
10635
10737
|
# immediately regardless of the value of the `ApplyImmediately`
|
10636
10738
|
# parameter.
|
10637
|
-
#
|
10638
|
-
# Default: false
|
10639
10739
|
# @return [Boolean]
|
10640
10740
|
#
|
10641
10741
|
# @!attribute [rw] monitoring_role_arn
|
@@ -10674,8 +10774,9 @@ module Aws::RDS
|
|
10674
10774
|
# @return [Integer]
|
10675
10775
|
#
|
10676
10776
|
# @!attribute [rw] enable_iam_database_authentication
|
10677
|
-
#
|
10678
|
-
# accounts to database accounts
|
10777
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
10778
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
10779
|
+
# mapping is disabled.
|
10679
10780
|
#
|
10680
10781
|
# You can enable IAM database authentication for the following
|
10681
10782
|
# database engines
|
@@ -10691,13 +10792,11 @@ module Aws::RDS
|
|
10691
10792
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
10692
10793
|
#
|
10693
10794
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
10694
|
-
#
|
10695
|
-
# Default: `false`
|
10696
10795
|
# @return [Boolean]
|
10697
10796
|
#
|
10698
10797
|
# @!attribute [rw] enable_performance_insights
|
10699
|
-
#
|
10700
|
-
#
|
10798
|
+
# A value that indicates whether to enable Performance Insights for
|
10799
|
+
# the DB instance.
|
10701
10800
|
#
|
10702
10801
|
# For more information, see [Using Amazon Performance Insights][1] in
|
10703
10802
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -10711,6 +10810,11 @@ module Aws::RDS
|
|
10711
10810
|
# The AWS KMS key identifier for encryption of Performance Insights
|
10712
10811
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
10713
10812
|
# identifier, or the KMS key alias for the KMS encryption key.
|
10813
|
+
#
|
10814
|
+
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
10815
|
+
# then Amazon RDS uses your default encryption key. AWS KMS creates
|
10816
|
+
# the default encryption key for your AWS account. Your AWS account
|
10817
|
+
# has a different default encryption key for each AWS Region.
|
10714
10818
|
# @return [String]
|
10715
10819
|
#
|
10716
10820
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -10733,14 +10837,15 @@ module Aws::RDS
|
|
10733
10837
|
# @return [Array<Types::ProcessorFeature>]
|
10734
10838
|
#
|
10735
10839
|
# @!attribute [rw] use_default_processor_features
|
10736
|
-
# A value that
|
10737
|
-
# uses its default processor features.
|
10840
|
+
# A value that indicates whether the DB instance class of the DB
|
10841
|
+
# instance uses its default processor features.
|
10738
10842
|
# @return [Boolean]
|
10739
10843
|
#
|
10740
10844
|
# @!attribute [rw] deletion_protection
|
10741
|
-
#
|
10742
|
-
# database can't be deleted when
|
10743
|
-
#
|
10845
|
+
# A value that indicates whether the DB instance has deletion
|
10846
|
+
# protection enabled. The database can't be deleted when deletion
|
10847
|
+
# protection is enabled. By default, deletion protection is disabled.
|
10848
|
+
# For more information, see [ Deleting a DB Instance][1].
|
10744
10849
|
#
|
10745
10850
|
#
|
10746
10851
|
#
|
@@ -11098,7 +11203,7 @@ module Aws::RDS
|
|
11098
11203
|
# @return [Array<String>]
|
11099
11204
|
#
|
11100
11205
|
# @!attribute [rw] enabled
|
11101
|
-
# A
|
11206
|
+
# A value that indicates whether to activate the subscription.
|
11102
11207
|
# @return [Boolean]
|
11103
11208
|
#
|
11104
11209
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyEventSubscriptionMessage AWS API Documentation
|
@@ -11162,8 +11267,8 @@ module Aws::RDS
|
|
11162
11267
|
#
|
11163
11268
|
# @!attribute [rw] deletion_protection
|
11164
11269
|
# Indicates if the global database cluster has deletion protection
|
11165
|
-
# enabled. The global database cluster can't be deleted when
|
11166
|
-
#
|
11270
|
+
# enabled. The global database cluster can't be deleted when deletion
|
11271
|
+
# protection is enabled.
|
11167
11272
|
# @return [Boolean]
|
11168
11273
|
#
|
11169
11274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalClusterMessage AWS API Documentation
|
@@ -11237,7 +11342,7 @@ module Aws::RDS
|
|
11237
11342
|
# @return [Array<String>]
|
11238
11343
|
#
|
11239
11344
|
# @!attribute [rw] apply_immediately
|
11240
|
-
#
|
11345
|
+
# A value that indicates whether to apply the change immediately or
|
11241
11346
|
# during the next maintenance window for each instance associated with
|
11242
11347
|
# the option group.
|
11243
11348
|
# @return [Boolean]
|
@@ -12472,10 +12577,11 @@ module Aws::RDS
|
|
12472
12577
|
# @return [String]
|
12473
12578
|
#
|
12474
12579
|
# @!attribute [rw] force_failover
|
12475
|
-
#
|
12580
|
+
# A value that indicates whether the reboot is conducted through a
|
12581
|
+
# Multi-AZ failover.
|
12476
12582
|
#
|
12477
|
-
# Constraint: You can't
|
12478
|
-
# configured for
|
12583
|
+
# Constraint: You can't enable force failover if the instance is not
|
12584
|
+
# configured for Multi-AZ.
|
12479
12585
|
# @return [Boolean]
|
12480
12586
|
#
|
12481
12587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstanceMessage AWS API Documentation
|
@@ -12909,16 +13015,16 @@ module Aws::RDS
|
|
12909
13015
|
# @return [String]
|
12910
13016
|
#
|
12911
13017
|
# @!attribute [rw] reset_all_parameters
|
12912
|
-
# A value that
|
12913
|
-
# cluster parameter group to their default values
|
12914
|
-
#
|
12915
|
-
#
|
13018
|
+
# A value that indicates whether to reset all parameters in the DB
|
13019
|
+
# cluster parameter group to their default values. You can't use this
|
13020
|
+
# parameter if there is a list of parameter names specified for the
|
13021
|
+
# `Parameters` parameter.
|
12916
13022
|
# @return [Boolean]
|
12917
13023
|
#
|
12918
13024
|
# @!attribute [rw] parameters
|
12919
13025
|
# A list of parameter names in the DB cluster parameter group to reset
|
12920
13026
|
# to the default values. You can't use this parameter if the
|
12921
|
-
# `ResetAllParameters` parameter is
|
13027
|
+
# `ResetAllParameters` parameter is enabled.
|
12922
13028
|
# @return [Array<Types::Parameter>]
|
12923
13029
|
#
|
12924
13030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ResetDBClusterParameterGroupMessage AWS API Documentation
|
@@ -12964,10 +13070,9 @@ module Aws::RDS
|
|
12964
13070
|
# @return [String]
|
12965
13071
|
#
|
12966
13072
|
# @!attribute [rw] reset_all_parameters
|
12967
|
-
#
|
12968
|
-
#
|
12969
|
-
#
|
12970
|
-
# Default: `true`
|
13073
|
+
# A value that indicates whether to reset all parameters in the DB
|
13074
|
+
# parameter group to default values. By default, all parameters in the
|
13075
|
+
# DB parameter group are reset to default values.
|
12971
13076
|
# @return [Boolean]
|
12972
13077
|
#
|
12973
13078
|
# @!attribute [rw] parameters
|
@@ -13244,7 +13349,7 @@ module Aws::RDS
|
|
13244
13349
|
# @return [Array<Types::Tag>]
|
13245
13350
|
#
|
13246
13351
|
# @!attribute [rw] storage_encrypted
|
13247
|
-
#
|
13352
|
+
# A value that indicates whether the restored DB cluster is encrypted.
|
13248
13353
|
# @return [Boolean]
|
13249
13354
|
#
|
13250
13355
|
# @!attribute [rw] kms_key_id
|
@@ -13256,7 +13361,7 @@ module Aws::RDS
|
|
13256
13361
|
# cluster, then you can use the KMS key alias instead of the ARN for
|
13257
13362
|
# the KM encryption key.
|
13258
13363
|
#
|
13259
|
-
# If the
|
13364
|
+
# If the StorageEncrypted parameter is enabled, and you do not specify
|
13260
13365
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
13261
13366
|
# default encryption key. AWS KMS creates the default encryption key
|
13262
13367
|
# for your AWS account. Your AWS account has a different default
|
@@ -13264,10 +13369,9 @@ module Aws::RDS
|
|
13264
13369
|
# @return [String]
|
13265
13370
|
#
|
13266
13371
|
# @!attribute [rw] enable_iam_database_authentication
|
13267
|
-
#
|
13268
|
-
# accounts to database accounts
|
13269
|
-
#
|
13270
|
-
# Default: `false`
|
13372
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
13373
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
13374
|
+
# mapping is disabled.
|
13271
13375
|
# @return [Boolean]
|
13272
13376
|
#
|
13273
13377
|
# @!attribute [rw] source_engine
|
@@ -13329,14 +13433,15 @@ module Aws::RDS
|
|
13329
13433
|
# @return [Array<String>]
|
13330
13434
|
#
|
13331
13435
|
# @!attribute [rw] deletion_protection
|
13332
|
-
#
|
13333
|
-
# The database can't be deleted when
|
13334
|
-
# default is
|
13436
|
+
# A value that indicates whether the DB cluster has deletion
|
13437
|
+
# protection enabled. The database can't be deleted when deletion
|
13438
|
+
# protection is enabled. By default, deletion protection is disabled.
|
13335
13439
|
# @return [Boolean]
|
13336
13440
|
#
|
13337
13441
|
# @!attribute [rw] copy_tags_to_snapshot
|
13338
|
-
#
|
13339
|
-
# the restored DB cluster
|
13442
|
+
# A value that indicates whether to copy all tags from the restored DB
|
13443
|
+
# cluster to snapshots of the restored DB cluster. The default is not
|
13444
|
+
# to copy them.
|
13340
13445
|
# @return [Boolean]
|
13341
13446
|
#
|
13342
13447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
@@ -13529,10 +13634,9 @@ module Aws::RDS
|
|
13529
13634
|
# @return [String]
|
13530
13635
|
#
|
13531
13636
|
# @!attribute [rw] enable_iam_database_authentication
|
13532
|
-
#
|
13533
|
-
# accounts to database accounts
|
13534
|
-
#
|
13535
|
-
# Default: `false`
|
13637
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
13638
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
13639
|
+
# mapping is disabled.
|
13536
13640
|
# @return [Boolean]
|
13537
13641
|
#
|
13538
13642
|
# @!attribute [rw] backtrack_window
|
@@ -13588,14 +13692,15 @@ module Aws::RDS
|
|
13588
13692
|
# @return [String]
|
13589
13693
|
#
|
13590
13694
|
# @!attribute [rw] deletion_protection
|
13591
|
-
#
|
13592
|
-
# The database can't be deleted when
|
13593
|
-
# default is
|
13695
|
+
# A value that indicates whether the DB cluster has deletion
|
13696
|
+
# protection enabled. The database can't be deleted when deletion
|
13697
|
+
# protection is enabled. By default, deletion protection is disabled.
|
13594
13698
|
# @return [Boolean]
|
13595
13699
|
#
|
13596
13700
|
# @!attribute [rw] copy_tags_to_snapshot
|
13597
|
-
#
|
13598
|
-
# the restored DB cluster
|
13701
|
+
# A value that indicates whether to copy all tags from the restored DB
|
13702
|
+
# cluster to snapshots of the restored DB cluster. The default is not
|
13703
|
+
# to copy them.
|
13599
13704
|
# @return [Boolean]
|
13600
13705
|
#
|
13601
13706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
@@ -13718,18 +13823,19 @@ module Aws::RDS
|
|
13718
13823
|
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
13719
13824
|
# provided
|
13720
13825
|
#
|
13721
|
-
# * Can't be specified if `UseLatestRestorableTime` parameter is
|
13826
|
+
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
13827
|
+
# enabled
|
13722
13828
|
#
|
13723
|
-
# * Can't be specified if `RestoreType` parameter is
|
13829
|
+
# * Can't be specified if the `RestoreType` parameter is
|
13830
|
+
# `copy-on-write`
|
13724
13831
|
#
|
13725
13832
|
# Example: `2015-03-07T23:45:00Z`
|
13726
13833
|
# @return [Time]
|
13727
13834
|
#
|
13728
13835
|
# @!attribute [rw] use_latest_restorable_time
|
13729
|
-
# A value that
|
13730
|
-
# latest restorable backup time,
|
13731
|
-
#
|
13732
|
-
# Default: `false`
|
13836
|
+
# A value that indicates whether to restore the DB cluster to the
|
13837
|
+
# latest restorable backup time. By default, the DB cluster is not
|
13838
|
+
# restored to the latest restorable backup time.
|
13733
13839
|
#
|
13734
13840
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
13735
13841
|
# provided.
|
@@ -13799,10 +13905,9 @@ module Aws::RDS
|
|
13799
13905
|
# @return [String]
|
13800
13906
|
#
|
13801
13907
|
# @!attribute [rw] enable_iam_database_authentication
|
13802
|
-
#
|
13803
|
-
# accounts to database accounts
|
13804
|
-
#
|
13805
|
-
# Default: `false`
|
13908
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
13909
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
13910
|
+
# mapping is disabled.
|
13806
13911
|
# @return [Boolean]
|
13807
13912
|
#
|
13808
13913
|
# @!attribute [rw] backtrack_window
|
@@ -13848,14 +13953,15 @@ module Aws::RDS
|
|
13848
13953
|
# @return [String]
|
13849
13954
|
#
|
13850
13955
|
# @!attribute [rw] deletion_protection
|
13851
|
-
#
|
13852
|
-
# The database can't be deleted when
|
13853
|
-
# default is
|
13956
|
+
# A value that indicates whether the DB cluster has deletion
|
13957
|
+
# protection enabled. The database can't be deleted when deletion
|
13958
|
+
# protection is enabled. By default, deletion protection is disabled.
|
13854
13959
|
# @return [Boolean]
|
13855
13960
|
#
|
13856
13961
|
# @!attribute [rw] copy_tags_to_snapshot
|
13857
|
-
#
|
13858
|
-
# the restored DB cluster
|
13962
|
+
# A value that indicates whether to copy all tags from the restored DB
|
13963
|
+
# cluster to snapshots of the restored DB cluster. The default is not
|
13964
|
+
# to copy them.
|
13859
13965
|
# @return [Boolean]
|
13860
13966
|
#
|
13861
13967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
@@ -13992,8 +14098,8 @@ module Aws::RDS
|
|
13992
14098
|
#
|
13993
14099
|
# Default: A random, system-chosen Availability Zone.
|
13994
14100
|
#
|
13995
|
-
# Constraint: You can't specify the AvailabilityZone parameter if
|
13996
|
-
#
|
14101
|
+
# Constraint: You can't specify the `AvailabilityZone` parameter if
|
14102
|
+
# the DB instance is a Multi-AZ deployment.
|
13997
14103
|
#
|
13998
14104
|
# Example: `us-east-1a`
|
13999
14105
|
# @return [String]
|
@@ -14008,24 +14114,26 @@ module Aws::RDS
|
|
14008
14114
|
# @return [String]
|
14009
14115
|
#
|
14010
14116
|
# @!attribute [rw] multi_az
|
14011
|
-
#
|
14117
|
+
# A value that indicates whether the DB instance is a Multi-AZ
|
14118
|
+
# deployment.
|
14012
14119
|
#
|
14013
|
-
# Constraint: You can't specify the AvailabilityZone parameter if
|
14014
|
-
#
|
14120
|
+
# Constraint: You can't specify the `AvailabilityZone` parameter if
|
14121
|
+
# the DB instance is a Multi-AZ deployment.
|
14015
14122
|
# @return [Boolean]
|
14016
14123
|
#
|
14017
14124
|
# @!attribute [rw] publicly_accessible
|
14018
|
-
#
|
14019
|
-
#
|
14020
|
-
#
|
14021
|
-
#
|
14125
|
+
# A value that indicates whether the DB instance is publicly
|
14126
|
+
# accessible. When the DB instance is publicly accessible, it is an
|
14127
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
14128
|
+
# resolves to a public IP address. When the DB instance is not
|
14129
|
+
# publicly accessible, it is an internal instance with a DNS name that
|
14022
14130
|
# resolves to a private IP address. For more information, see
|
14023
|
-
#
|
14131
|
+
# CreateDBInstance.
|
14024
14132
|
# @return [Boolean]
|
14025
14133
|
#
|
14026
14134
|
# @!attribute [rw] auto_minor_version_upgrade
|
14027
|
-
#
|
14028
|
-
# the DB instance during the maintenance window.
|
14135
|
+
# A value that indicates whether minor version upgrades are applied
|
14136
|
+
# automatically to the DB instance during the maintenance window.
|
14029
14137
|
# @return [Boolean]
|
14030
14138
|
#
|
14031
14139
|
# @!attribute [rw] license_model
|
@@ -14127,8 +14235,7 @@ module Aws::RDS
|
|
14127
14235
|
# If you specify `io1`, you must also include a value for the `Iops`
|
14128
14236
|
# parameter.
|
14129
14237
|
#
|
14130
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
14131
|
-
# `standard`
|
14238
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
14132
14239
|
# @return [String]
|
14133
14240
|
#
|
14134
14241
|
# @!attribute [rw] tde_credential_arn
|
@@ -14154,8 +14261,9 @@ module Aws::RDS
|
|
14154
14261
|
# @return [String]
|
14155
14262
|
#
|
14156
14263
|
# @!attribute [rw] copy_tags_to_snapshot
|
14157
|
-
#
|
14158
|
-
#
|
14264
|
+
# A value that indicates whether to copy all tags from the restored DB
|
14265
|
+
# instance to snapshots of the DB instance. By default, tags are not
|
14266
|
+
# copied.
|
14159
14267
|
# @return [Boolean]
|
14160
14268
|
#
|
14161
14269
|
# @!attribute [rw] domain_iam_role_name
|
@@ -14164,8 +14272,9 @@ module Aws::RDS
|
|
14164
14272
|
# @return [String]
|
14165
14273
|
#
|
14166
14274
|
# @!attribute [rw] enable_iam_database_authentication
|
14167
|
-
#
|
14168
|
-
# accounts to database accounts
|
14275
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
14276
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
14277
|
+
# mapping is disabled.
|
14169
14278
|
#
|
14170
14279
|
# You can enable IAM database authentication for the following
|
14171
14280
|
# database engines
|
@@ -14173,8 +14282,6 @@ module Aws::RDS
|
|
14173
14282
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
14174
14283
|
#
|
14175
14284
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
14176
|
-
#
|
14177
|
-
# Default: `false`
|
14178
14285
|
# @return [Boolean]
|
14179
14286
|
#
|
14180
14287
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -14194,8 +14301,8 @@ module Aws::RDS
|
|
14194
14301
|
# @return [Array<Types::ProcessorFeature>]
|
14195
14302
|
#
|
14196
14303
|
# @!attribute [rw] use_default_processor_features
|
14197
|
-
# A value that
|
14198
|
-
# uses its default processor features.
|
14304
|
+
# A value that indicates whether the DB instance class of the DB
|
14305
|
+
# instance uses its default processor features.
|
14199
14306
|
# @return [Boolean]
|
14200
14307
|
#
|
14201
14308
|
# @!attribute [rw] db_parameter_group_name
|
@@ -14215,10 +14322,10 @@ module Aws::RDS
|
|
14215
14322
|
# @return [String]
|
14216
14323
|
#
|
14217
14324
|
# @!attribute [rw] deletion_protection
|
14218
|
-
#
|
14219
|
-
# enabled. The database can't be deleted when
|
14220
|
-
#
|
14221
|
-
# DB Instance][1].
|
14325
|
+
# A value that indicates whether the DB instance has deletion
|
14326
|
+
# protection enabled. The database can't be deleted when deletion
|
14327
|
+
# protection is enabled. By default, deletion protection is disabled.
|
14328
|
+
# For more information, see [ Deleting a DB Instance][1].
|
14222
14329
|
#
|
14223
14330
|
#
|
14224
14331
|
#
|
@@ -14424,8 +14531,8 @@ module Aws::RDS
|
|
14424
14531
|
#
|
14425
14532
|
# Example: `us-east-1d`
|
14426
14533
|
#
|
14427
|
-
# Constraint: The AvailabilityZone parameter can't be specified if
|
14428
|
-
# the
|
14534
|
+
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
14535
|
+
# the DB instance is a Multi-AZ deployment. The specified Availability
|
14429
14536
|
# Zone must be in the same AWS Region as the current endpoint.
|
14430
14537
|
#
|
14431
14538
|
#
|
@@ -14502,9 +14609,9 @@ module Aws::RDS
|
|
14502
14609
|
# @return [Integer]
|
14503
14610
|
#
|
14504
14611
|
# @!attribute [rw] multi_az
|
14505
|
-
#
|
14506
|
-
#
|
14507
|
-
# parameter.
|
14612
|
+
# A value that indicates whether the DB instance is a Multi-AZ
|
14613
|
+
# deployment. If the DB instance is a Multi-AZ deployment, you can't
|
14614
|
+
# set the `AvailabilityZone` parameter.
|
14508
14615
|
# @return [Boolean]
|
14509
14616
|
#
|
14510
14617
|
# @!attribute [rw] engine_version
|
@@ -14515,11 +14622,9 @@ module Aws::RDS
|
|
14515
14622
|
# @return [String]
|
14516
14623
|
#
|
14517
14624
|
# @!attribute [rw] auto_minor_version_upgrade
|
14518
|
-
#
|
14519
|
-
# automatically to the DB instance during the maintenance window
|
14520
|
-
#
|
14521
|
-
#
|
14522
|
-
# Default: `true`
|
14625
|
+
# A value that indicates whether minor engine upgrades are applied
|
14626
|
+
# automatically to the DB instance during the maintenance window. By
|
14627
|
+
# default, minor engine upgrades are not applied automatically.
|
14523
14628
|
# @return [Boolean]
|
14524
14629
|
#
|
14525
14630
|
# @!attribute [rw] license_model
|
@@ -14545,12 +14650,13 @@ module Aws::RDS
|
|
14545
14650
|
# @return [String]
|
14546
14651
|
#
|
14547
14652
|
# @!attribute [rw] publicly_accessible
|
14548
|
-
#
|
14549
|
-
#
|
14550
|
-
#
|
14551
|
-
#
|
14653
|
+
# A value that indicates whether the DB instance is publicly
|
14654
|
+
# accessible. When the DB instance is publicly accessible, it is an
|
14655
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
14656
|
+
# resolves to a public IP address. When the DB instance is not
|
14657
|
+
# publicly accessible, it is an internal instance with a DNS name that
|
14552
14658
|
# resolves to a private IP address. For more information, see
|
14553
|
-
#
|
14659
|
+
# CreateDBInstance.
|
14554
14660
|
# @return [Boolean]
|
14555
14661
|
#
|
14556
14662
|
# @!attribute [rw] tags
|
@@ -14571,12 +14677,12 @@ module Aws::RDS
|
|
14571
14677
|
# If you specify `io1`, you must also include a value for the `Iops`
|
14572
14678
|
# parameter.
|
14573
14679
|
#
|
14574
|
-
# Default: `io1` if the `Iops` parameter is specified; otherwise
|
14575
|
-
# `standard`
|
14680
|
+
# Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
|
14576
14681
|
# @return [String]
|
14577
14682
|
#
|
14578
14683
|
# @!attribute [rw] storage_encrypted
|
14579
|
-
#
|
14684
|
+
# A value that indicates whether the new DB instance is encrypted or
|
14685
|
+
# not.
|
14580
14686
|
# @return [Boolean]
|
14581
14687
|
#
|
14582
14688
|
# @!attribute [rw] kms_key_id
|
@@ -14588,18 +14694,16 @@ module Aws::RDS
|
|
14588
14694
|
# instance, then you can use the KMS key alias instead of the ARN for
|
14589
14695
|
# the KM encryption key.
|
14590
14696
|
#
|
14591
|
-
# If the `StorageEncrypted` parameter is
|
14592
|
-
# a value for the `KmsKeyId` parameter, then Amazon RDS will
|
14593
|
-
# default encryption key. AWS KMS creates the default
|
14594
|
-
# for your AWS account. Your AWS account has a
|
14595
|
-
# encryption key for each AWS Region.
|
14697
|
+
# If the `StorageEncrypted` parameter is enabled, and you do not
|
14698
|
+
# specify a value for the `KmsKeyId` parameter, then Amazon RDS will
|
14699
|
+
# use your default encryption key. AWS KMS creates the default
|
14700
|
+
# encryption key for your AWS account. Your AWS account has a
|
14701
|
+
# different default encryption key for each AWS Region.
|
14596
14702
|
# @return [String]
|
14597
14703
|
#
|
14598
14704
|
# @!attribute [rw] copy_tags_to_snapshot
|
14599
|
-
#
|
14600
|
-
# the
|
14601
|
-
#
|
14602
|
-
# Default: false.
|
14705
|
+
# A value that indicates whether to copy all tags from the DB instance
|
14706
|
+
# to snapshots of the DB instance. By default, tags are not copied.
|
14603
14707
|
# @return [Boolean]
|
14604
14708
|
#
|
14605
14709
|
# @!attribute [rw] monitoring_interval
|
@@ -14631,10 +14735,9 @@ module Aws::RDS
|
|
14631
14735
|
# @return [String]
|
14632
14736
|
#
|
14633
14737
|
# @!attribute [rw] enable_iam_database_authentication
|
14634
|
-
#
|
14635
|
-
# accounts to database accounts
|
14636
|
-
#
|
14637
|
-
# Default: `false`
|
14738
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
14739
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
14740
|
+
# mapping is disabled.
|
14638
14741
|
# @return [Boolean]
|
14639
14742
|
#
|
14640
14743
|
# @!attribute [rw] source_engine
|
@@ -14664,8 +14767,8 @@ module Aws::RDS
|
|
14664
14767
|
# @return [String]
|
14665
14768
|
#
|
14666
14769
|
# @!attribute [rw] enable_performance_insights
|
14667
|
-
#
|
14668
|
-
#
|
14770
|
+
# A value that indicates whether to enable Performance Insights for
|
14771
|
+
# the DB instance.
|
14669
14772
|
#
|
14670
14773
|
# For more information, see [Using Amazon Performance Insights][1] in
|
14671
14774
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -14679,6 +14782,11 @@ module Aws::RDS
|
|
14679
14782
|
# The AWS KMS key identifier for encryption of Performance Insights
|
14680
14783
|
# data. The KMS key ID is the Amazon Resource Name (ARN), the KMS key
|
14681
14784
|
# identifier, or the KMS key alias for the KMS encryption key.
|
14785
|
+
#
|
14786
|
+
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
14787
|
+
# then Amazon RDS uses your default encryption key. AWS KMS creates
|
14788
|
+
# the default encryption key for your AWS account. Your AWS account
|
14789
|
+
# has a different default encryption key for each AWS Region.
|
14682
14790
|
# @return [String]
|
14683
14791
|
#
|
14684
14792
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -14703,15 +14811,15 @@ module Aws::RDS
|
|
14703
14811
|
# @return [Array<Types::ProcessorFeature>]
|
14704
14812
|
#
|
14705
14813
|
# @!attribute [rw] use_default_processor_features
|
14706
|
-
# A value that
|
14707
|
-
# uses its default processor features.
|
14814
|
+
# A value that indicates whether the DB instance class of the DB
|
14815
|
+
# instance uses its default processor features.
|
14708
14816
|
# @return [Boolean]
|
14709
14817
|
#
|
14710
14818
|
# @!attribute [rw] deletion_protection
|
14711
|
-
#
|
14712
|
-
# enabled. The database can't be deleted when
|
14713
|
-
#
|
14714
|
-
# DB Instance][1].
|
14819
|
+
# A value that indicates whether the DB instance has deletion
|
14820
|
+
# protection enabled. The database can't be deleted when deletion
|
14821
|
+
# protection is enabled. By default, deletion protection is disabled.
|
14822
|
+
# For more information, see [ Deleting a DB Instance][1].
|
14715
14823
|
#
|
14716
14824
|
#
|
14717
14825
|
#
|
@@ -14860,18 +14968,18 @@ module Aws::RDS
|
|
14860
14968
|
#
|
14861
14969
|
# * Must be before the latest restorable time for the DB instance
|
14862
14970
|
#
|
14863
|
-
# * Can't be specified if UseLatestRestorableTime parameter is
|
14971
|
+
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
14972
|
+
# enabled
|
14864
14973
|
#
|
14865
14974
|
# Example: `2009-09-07T23:45:00Z`
|
14866
14975
|
# @return [Time]
|
14867
14976
|
#
|
14868
14977
|
# @!attribute [rw] use_latest_restorable_time
|
14869
|
-
#
|
14870
|
-
#
|
14978
|
+
# A value that indicates whether the DB instance is restored from the
|
14979
|
+
# latest backup time. By default, the DB instance is not restored from
|
14980
|
+
# the latest backup time.
|
14871
14981
|
#
|
14872
|
-
#
|
14873
|
-
#
|
14874
|
-
# Constraints: Can't be specified if RestoreTime parameter is
|
14982
|
+
# Constraints: Can't be specified if the `RestoreTime` parameter is
|
14875
14983
|
# provided.
|
14876
14984
|
# @return [Boolean]
|
14877
14985
|
#
|
@@ -14902,8 +15010,8 @@ module Aws::RDS
|
|
14902
15010
|
#
|
14903
15011
|
# Default: A random, system-chosen Availability Zone.
|
14904
15012
|
#
|
14905
|
-
# Constraint: You can't specify the AvailabilityZone parameter if
|
14906
|
-
#
|
15013
|
+
# Constraint: You can't specify the `AvailabilityZone` parameter if
|
15014
|
+
# the DB instance is a Multi-AZ deployment.
|
14907
15015
|
#
|
14908
15016
|
# Example: `us-east-1a`
|
14909
15017
|
# @return [String]
|
@@ -14918,24 +15026,26 @@ module Aws::RDS
|
|
14918
15026
|
# @return [String]
|
14919
15027
|
#
|
14920
15028
|
# @!attribute [rw] multi_az
|
14921
|
-
#
|
15029
|
+
# A value that indicates whether the DB instance is a Multi-AZ
|
15030
|
+
# deployment.
|
14922
15031
|
#
|
14923
|
-
# Constraint: You can't specify the AvailabilityZone parameter if
|
14924
|
-
#
|
15032
|
+
# Constraint: You can't specify the `AvailabilityZone` parameter if
|
15033
|
+
# the DB instance is a Multi-AZ deployment.
|
14925
15034
|
# @return [Boolean]
|
14926
15035
|
#
|
14927
15036
|
# @!attribute [rw] publicly_accessible
|
14928
|
-
#
|
14929
|
-
#
|
14930
|
-
#
|
14931
|
-
#
|
15037
|
+
# A value that indicates whether the DB instance is publicly
|
15038
|
+
# accessible. When the DB instance is publicly accessible, it is an
|
15039
|
+
# Internet-facing instance with a publicly resolvable DNS name, which
|
15040
|
+
# resolves to a public IP address. When the DB instance is not
|
15041
|
+
# publicly accessible, it is an internal instance with a DNS name that
|
14932
15042
|
# resolves to a private IP address. For more information, see
|
14933
|
-
#
|
15043
|
+
# CreateDBInstance.
|
14934
15044
|
# @return [Boolean]
|
14935
15045
|
#
|
14936
15046
|
# @!attribute [rw] auto_minor_version_upgrade
|
14937
|
-
#
|
14938
|
-
# the DB instance during the maintenance window.
|
15047
|
+
# A value that indicates whether minor version upgrades are applied
|
15048
|
+
# automatically to the DB instance during the maintenance window.
|
14939
15049
|
# @return [Boolean]
|
14940
15050
|
#
|
14941
15051
|
# @!attribute [rw] license_model
|
@@ -15010,8 +15120,9 @@ module Aws::RDS
|
|
15010
15120
|
# @return [String]
|
15011
15121
|
#
|
15012
15122
|
# @!attribute [rw] copy_tags_to_snapshot
|
15013
|
-
#
|
15014
|
-
#
|
15123
|
+
# A value that indicates whether to copy all tags from the restored DB
|
15124
|
+
# instance to snapshots of the DB instance. By default, tags are not
|
15125
|
+
# copied.
|
15015
15126
|
# @return [Boolean]
|
15016
15127
|
#
|
15017
15128
|
# @!attribute [rw] tags
|
@@ -15031,8 +15142,7 @@ module Aws::RDS
|
|
15031
15142
|
# If you specify `io1`, you must also include a value for the `Iops`
|
15032
15143
|
# parameter.
|
15033
15144
|
#
|
15034
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
15035
|
-
# `standard`
|
15145
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
15036
15146
|
# @return [String]
|
15037
15147
|
#
|
15038
15148
|
# @!attribute [rw] tde_credential_arn
|
@@ -15063,8 +15173,9 @@ module Aws::RDS
|
|
15063
15173
|
# @return [String]
|
15064
15174
|
#
|
15065
15175
|
# @!attribute [rw] enable_iam_database_authentication
|
15066
|
-
#
|
15067
|
-
# accounts to database accounts
|
15176
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
15177
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
15178
|
+
# mapping is disabled.
|
15068
15179
|
#
|
15069
15180
|
# You can enable IAM database authentication for the following
|
15070
15181
|
# database engines
|
@@ -15072,8 +15183,6 @@ module Aws::RDS
|
|
15072
15183
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
15073
15184
|
#
|
15074
15185
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
15075
|
-
#
|
15076
|
-
# Default: `false`
|
15077
15186
|
# @return [Boolean]
|
15078
15187
|
#
|
15079
15188
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -15093,8 +15202,8 @@ module Aws::RDS
|
|
15093
15202
|
# @return [Array<Types::ProcessorFeature>]
|
15094
15203
|
#
|
15095
15204
|
# @!attribute [rw] use_default_processor_features
|
15096
|
-
# A value that
|
15097
|
-
# uses its default processor features.
|
15205
|
+
# A value that indicates whether the DB instance class of the DB
|
15206
|
+
# instance uses its default processor features.
|
15098
15207
|
# @return [Boolean]
|
15099
15208
|
#
|
15100
15209
|
# @!attribute [rw] db_parameter_group_name
|
@@ -15114,10 +15223,10 @@ module Aws::RDS
|
|
15114
15223
|
# @return [String]
|
15115
15224
|
#
|
15116
15225
|
# @!attribute [rw] deletion_protection
|
15117
|
-
#
|
15118
|
-
# enabled. The database can't be deleted when
|
15119
|
-
#
|
15120
|
-
# DB Instance][1].
|
15226
|
+
# A value that indicates whether the DB instance has deletion
|
15227
|
+
# protection enabled. The database can't be deleted when deletion
|
15228
|
+
# protection is enabled. By default, deletion protection is disabled.
|
15229
|
+
# For more information, see [ Deleting a DB Instance][1].
|
15121
15230
|
#
|
15122
15231
|
#
|
15123
15232
|
#
|
@@ -15290,8 +15399,8 @@ module Aws::RDS
|
|
15290
15399
|
# The minimum capacity for an Aurora DB cluster in `serverless` DB
|
15291
15400
|
# engine mode.
|
15292
15401
|
#
|
15293
|
-
# Valid capacity values are `2`, `4`, `8`, `16`, `32`, `64`,
|
15294
|
-
# and `256`.
|
15402
|
+
# Valid capacity values are `1`, `2`, `4`, `8`, `16`, `32`, `64`,
|
15403
|
+
# `128`, and `256`.
|
15295
15404
|
#
|
15296
15405
|
# The minimum capacity must be less than or equal to the maximum
|
15297
15406
|
# capacity.
|
@@ -15301,15 +15410,15 @@ module Aws::RDS
|
|
15301
15410
|
# The maximum capacity for an Aurora DB cluster in `serverless` DB
|
15302
15411
|
# engine mode.
|
15303
15412
|
#
|
15304
|
-
# Valid capacity values are `2`, `4`, `8`, `16`, `32`, `64`,
|
15305
|
-
# and `256`.
|
15413
|
+
# Valid capacity values are `1`, `2`, `4`, `8`, `16`, `32`, `64`,
|
15414
|
+
# `128`, and `256`.
|
15306
15415
|
#
|
15307
15416
|
# The maximum capacity must be greater than or equal to the minimum
|
15308
15417
|
# capacity.
|
15309
15418
|
# @return [Integer]
|
15310
15419
|
#
|
15311
15420
|
# @!attribute [rw] auto_pause
|
15312
|
-
# A value that
|
15421
|
+
# A value that indicates whether to allow or disallow automatic pause
|
15313
15422
|
# for an Aurora DB cluster in `serverless` DB engine mode. A DB
|
15314
15423
|
# cluster can be paused only when it's idle (it has no connections).
|
15315
15424
|
#
|
@@ -15329,11 +15438,14 @@ module Aws::RDS
|
|
15329
15438
|
# The action to take when the timeout is reached, either
|
15330
15439
|
# `ForceApplyCapacityChange` or `RollbackCapacityChange`.
|
15331
15440
|
#
|
15332
|
-
# `ForceApplyCapacityChange
|
15333
|
-
#
|
15441
|
+
# `ForceApplyCapacityChange` sets the capacity to the specified value
|
15442
|
+
# as soon as possible.
|
15334
15443
|
#
|
15335
|
-
# `RollbackCapacityChange
|
15336
|
-
# point is not found in the timeout period.
|
15444
|
+
# `RollbackCapacityChange`, the default, ignores the capacity change
|
15445
|
+
# if a scaling point is not found in the timeout period.
|
15446
|
+
#
|
15447
|
+
# If you specify `ForceApplyCapacityChange`, connections that prevent
|
15448
|
+
# Aurora Serverless from finding a scaling point might be dropped.
|
15337
15449
|
#
|
15338
15450
|
# For more information, see [ Autoscaling for Aurora Serverless][1] in
|
15339
15451
|
# the *Amazon Aurora User Guide*.
|
@@ -15696,7 +15808,7 @@ module Aws::RDS
|
|
15696
15808
|
#
|
15697
15809
|
# @!attribute [rw] auto_upgrade
|
15698
15810
|
# A value that indicates whether the target version is applied to any
|
15699
|
-
# source DB instances that have AutoMinorVersionUpgrade set to true.
|
15811
|
+
# source DB instances that have `AutoMinorVersionUpgrade` set to true.
|
15700
15812
|
# @return [Boolean]
|
15701
15813
|
#
|
15702
15814
|
# @!attribute [rw] is_major_version_upgrade
|