@aws-sdk/client-docdb 3.485.0 → 3.486.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.
@@ -5529,6 +5529,12 @@ const de_DBInstance = (output, context) => {
5529
5529
  if (output[_CD] != null) {
5530
5530
  contents[_CD] = de_CertificateDetails(output[_CD], context);
5531
5531
  }
5532
+ if (output[_PIE] != null) {
5533
+ contents[_PIE] = (0, smithy_client_1.parseBoolean)(output[_PIE]);
5534
+ }
5535
+ if (output[_PIKMSKI] != null) {
5536
+ contents[_PIKMSKI] = (0, smithy_client_1.expectString)(output[_PIKMSKI]);
5537
+ }
5532
5538
  return contents;
5533
5539
  };
5534
5540
  const de_DBInstanceAlreadyExistsFault = (output, context) => {
@@ -6918,6 +6924,7 @@ const _P = "Port";
6918
6924
  const _PA = "PubliclyAccessible";
6919
6925
  const _PBW = "PreferredBackupWindow";
6920
6926
  const _PCLE = "PendingCloudwatchLogsExports";
6927
+ const _PIE = "PerformanceInsightsEnabled";
6921
6928
  const _PIKMSKI = "PerformanceInsightsKMSKeyId";
6922
6929
  const _PMA = "PendingMaintenanceActions";
6923
6930
  const _PMAD = "PendingMaintenanceActionDetails";
@@ -5418,6 +5418,12 @@ const de_DBInstance = (output, context) => {
5418
5418
  if (output[_CD] != null) {
5419
5419
  contents[_CD] = de_CertificateDetails(output[_CD], context);
5420
5420
  }
5421
+ if (output[_PIE] != null) {
5422
+ contents[_PIE] = __parseBoolean(output[_PIE]);
5423
+ }
5424
+ if (output[_PIKMSKI] != null) {
5425
+ contents[_PIKMSKI] = __expectString(output[_PIKMSKI]);
5426
+ }
5421
5427
  return contents;
5422
5428
  };
5423
5429
  const de_DBInstanceAlreadyExistsFault = (output, context) => {
@@ -6807,6 +6813,7 @@ const _P = "Port";
6807
6813
  const _PA = "PubliclyAccessible";
6808
6814
  const _PBW = "PreferredBackupWindow";
6809
6815
  const _PCLE = "PendingCloudwatchLogsExports";
6816
+ const _PIE = "PerformanceInsightsEnabled";
6810
6817
  const _PIKMSKI = "PerformanceInsightsKMSKeyId";
6811
6818
  const _PMA = "PendingMaintenanceActions";
6812
6819
  const _PMAD = "PendingMaintenanceActionDetails";
@@ -143,6 +143,8 @@ declare const CreateDBInstanceCommand_base: {
143
143
  * // CAIdentifier: "STRING_VALUE",
144
144
  * // ValidTill: new Date("TIMESTAMP"),
145
145
  * // },
146
+ * // PerformanceInsightsEnabled: true || false,
147
+ * // PerformanceInsightsKMSKeyId: "STRING_VALUE",
146
148
  * // },
147
149
  * // };
148
150
  *
@@ -126,6 +126,8 @@ declare const DeleteDBInstanceCommand_base: {
126
126
  * // CAIdentifier: "STRING_VALUE",
127
127
  * // ValidTill: new Date("TIMESTAMP"),
128
128
  * // },
129
+ * // PerformanceInsightsEnabled: true || false,
130
+ * // PerformanceInsightsKMSKeyId: "STRING_VALUE",
129
131
  * // },
130
132
  * // };
131
133
  *
@@ -138,6 +138,8 @@ declare const DescribeDBInstancesCommand_base: {
138
138
  * // CAIdentifier: "STRING_VALUE",
139
139
  * // ValidTill: new Date("TIMESTAMP"),
140
140
  * // },
141
+ * // PerformanceInsightsEnabled: true || false,
142
+ * // PerformanceInsightsKMSKeyId: "STRING_VALUE",
141
143
  * // },
142
144
  * // ],
143
145
  * // };
@@ -137,6 +137,8 @@ declare const ModifyDBInstanceCommand_base: {
137
137
  * // CAIdentifier: "STRING_VALUE",
138
138
  * // ValidTill: new Date("TIMESTAMP"),
139
139
  * // },
140
+ * // PerformanceInsightsEnabled: true || false,
141
+ * // PerformanceInsightsKMSKeyId: "STRING_VALUE",
140
142
  * // },
141
143
  * // };
142
144
  *
@@ -133,6 +133,8 @@ declare const RebootDBInstanceCommand_base: {
133
133
  * // CAIdentifier: "STRING_VALUE",
134
134
  * // ValidTill: new Date("TIMESTAMP"),
135
135
  * // },
136
+ * // PerformanceInsightsEnabled: true || false,
137
+ * // PerformanceInsightsKMSKeyId: "STRING_VALUE",
136
138
  * // },
137
139
  * // };
138
140
  *
@@ -2076,6 +2076,16 @@ export interface DBInstance {
2076
2076
  * <p>The details of the DB instance's server certificate.</p>
2077
2077
  */
2078
2078
  CertificateDetails?: CertificateDetails;
2079
+ /**
2080
+ * @public
2081
+ * <p>Set to <code>true</code> if Amazon RDS Performance Insights is enabled for the DB instance, and otherwise <code>false</code>.</p>
2082
+ */
2083
+ PerformanceInsightsEnabled?: boolean;
2084
+ /**
2085
+ * @public
2086
+ * <p>The KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key.</p>
2087
+ */
2088
+ PerformanceInsightsKMSKeyId?: string;
2079
2089
  }
2080
2090
  /**
2081
2091
  * @public
@@ -502,6 +502,8 @@ export interface DBInstance {
502
502
  DBInstanceArn?: string;
503
503
  EnabledCloudwatchLogsExports?: string[];
504
504
  CertificateDetails?: CertificateDetails;
505
+ PerformanceInsightsEnabled?: boolean;
506
+ PerformanceInsightsKMSKeyId?: string;
505
507
  }
506
508
  export interface CreateDBInstanceResult {
507
509
  DBInstance?: DBInstance;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-docdb",
3
3
  "description": "AWS SDK for JavaScript Docdb Client for Node.js, Browser and React Native",
4
- "version": "3.485.0",
4
+ "version": "3.486.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",