@awboost/cfn-resource-types 0.1.439 → 0.1.440

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.
@@ -277,6 +277,15 @@ export type RDSDBClusterProperties = {
277
277
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
278
278
  */
279
279
  ManageMasterUserPassword?: boolean;
280
+ /**
281
+ * Specifies the authentication type for the master user. With IAM master user authentication, you can configure the master DB user with IAM database authentication when you create a DB cluster.
282
+ You can specify one of the following values:
283
+ + ``password`` - Use standard database authentication with a password.
284
+ + ``iam-db-auth`` - Use IAM database authentication for the master user.
285
+
286
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
287
+ This option is only valid for RDS for MySQL, RDS for MariaDB, RDS for PostgreSQL, Aurora MySQL, and Aurora PostgreSQL engines.
288
+ */
280
289
  MasterUserAuthenticationType?: string;
281
290
  /**
282
291
  * The master password for the DB instance.
@@ -510,6 +510,14 @@ export type RDSDBInstanceProperties = {
510
510
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
511
511
  */
512
512
  ManageMasterUserPassword?: boolean;
513
+ /**
514
+ * Specifies the authentication type for the master user. With IAM master user authentication, you can configure the master DB user with IAM database authentication when you create a DB instance.
515
+ You can specify one of the following values:
516
+ + ``password`` - Use standard database authentication with a password.
517
+ + ``iam-db-auth`` - Use IAM database authentication for the master user.
518
+
519
+ This option is only valid for RDS for MySQL, RDS for MariaDB, RDS for PostgreSQL, Aurora MySQL, and Aurora PostgreSQL engines.
520
+ */
513
521
  MasterUserAuthenticationType?: string;
514
522
  /**
515
523
  * The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.439",
3
+ "version": "0.1.440",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },