@awboost/cfn-resource-types 0.1.276 → 0.1.277
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.
|
@@ -80,6 +80,11 @@ export type RDSDBInstanceProperties = {
|
|
|
80
80
|
Constraints: Major version upgrades must be allowed when specifying a value for the ``EngineVersion`` parameter that is a different major version than the DB instance's current version.
|
|
81
81
|
*/
|
|
82
82
|
AllowMajorVersionUpgrade?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``PreferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state.
|
|
85
|
+
In addition to the settings described in [Modifying a DB instance](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html), this property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group.
|
|
86
|
+
Default: ``true``
|
|
87
|
+
*/
|
|
83
88
|
ApplyImmediately?: boolean;
|
|
84
89
|
/**
|
|
85
90
|
* The IAMlong (IAM) roles associated with the DB instance.
|
|
@@ -746,7 +751,7 @@ export type RDSDBInstanceProperties = {
|
|
|
746
751
|
If you specify ``io1``, ``io2``, or ``gp3``, you must also include a value for the ``Iops`` parameter.
|
|
747
752
|
This setting doesn't apply to Amazon Aurora DB instances. Storage is managed by the DB cluster.
|
|
748
753
|
Valid Values: ``gp2 | gp3 | io1 | io2 | standard``
|
|
749
|
-
Default: ``io1``, if the ``Iops`` parameter is specified. Otherwise, ``
|
|
754
|
+
Default: ``io1``, if the ``Iops`` parameter is specified. Otherwise, ``gp3``.
|
|
750
755
|
*/
|
|
751
756
|
StorageType?: string;
|
|
752
757
|
/**
|
|
@@ -50,7 +50,7 @@ export type RDSDBParameterGroupProperties = {
|
|
|
50
50
|
*/
|
|
51
51
|
Family: string;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* A mapping of parameter names and values for the parameter update. You must specify at least one parameter name and value.
|
|
54
54
|
For more information about parameter groups, see [Working with parameter groups](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html) in the *Amazon RDS User Guide*, or [Working with parameter groups](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html) in the *Amazon Aurora User Guide*.
|
|
55
55
|
AWS CloudFormation doesn't support specifying an apply method for each individual parameter. The default apply method for each parameter is used.
|
|
56
56
|
*/
|