@aws-sdk/client-timestream-influxdb 3.534.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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/TimestreamInfluxDB.js +33 -0
  4. package/dist-cjs/TimestreamInfluxDBClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateDbInstanceCommand.js +29 -0
  8. package/dist-cjs/commands/CreateDbParameterGroupCommand.js +28 -0
  9. package/dist-cjs/commands/DeleteDbInstanceCommand.js +28 -0
  10. package/dist-cjs/commands/GetDbInstanceCommand.js +28 -0
  11. package/dist-cjs/commands/GetDbParameterGroupCommand.js +28 -0
  12. package/dist-cjs/commands/ListDbInstancesCommand.js +28 -0
  13. package/dist-cjs/commands/ListDbParameterGroupsCommand.js +28 -0
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  15. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  16. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  17. package/dist-cjs/commands/UpdateDbInstanceCommand.js +28 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +12 -0
  24. package/dist-cjs/models/TimestreamInfluxDBServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +159 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListDbInstancesPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListDbParameterGroupsPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +6 -0
  31. package/dist-cjs/protocols/Aws_json1_0.js +365 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +49 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/TimestreamInfluxDB.js +29 -0
  38. package/dist-es/TimestreamInfluxDBClient.js +52 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateDbInstanceCommand.js +25 -0
  42. package/dist-es/commands/CreateDbParameterGroupCommand.js +24 -0
  43. package/dist-es/commands/DeleteDbInstanceCommand.js +24 -0
  44. package/dist-es/commands/GetDbInstanceCommand.js +24 -0
  45. package/dist-es/commands/GetDbParameterGroupCommand.js +24 -0
  46. package/dist-es/commands/ListDbInstancesCommand.js +24 -0
  47. package/dist-es/commands/ListDbParameterGroupsCommand.js +24 -0
  48. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  49. package/dist-es/commands/TagResourceCommand.js +24 -0
  50. package/dist-es/commands/UntagResourceCommand.js +24 -0
  51. package/dist-es/commands/UpdateDbInstanceCommand.js +24 -0
  52. package/dist-es/commands/index.js +11 -0
  53. package/dist-es/endpoint/EndpointParameters.js +14 -0
  54. package/dist-es/endpoint/endpointResolver.js +8 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +7 -0
  58. package/dist-es/models/TimestreamInfluxDBServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +148 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListDbInstancesPaginator.js +4 -0
  63. package/dist-es/pagination/ListDbParameterGroupsPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +3 -0
  65. package/dist-es/protocols/Aws_json1_0.js +340 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +44 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/TimestreamInfluxDB.d.ts +87 -0
  72. package/dist-types/TimestreamInfluxDBClient.d.ts +182 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateDbInstanceCommand.d.ts +129 -0
  76. package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +108 -0
  77. package/dist-types/commands/DeleteDbInstanceCommand.d.ts +101 -0
  78. package/dist-types/commands/GetDbInstanceCommand.d.ts +98 -0
  79. package/dist-types/commands/GetDbParameterGroupCommand.d.ts +87 -0
  80. package/dist-types/commands/ListDbInstancesCommand.d.ts +87 -0
  81. package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +82 -0
  82. package/dist-types/commands/ListTagsForResourceCommand.d.ts +63 -0
  83. package/dist-types/commands/TagResourceCommand.d.ts +62 -0
  84. package/dist-types/commands/UntagResourceCommand.d.ts +62 -0
  85. package/dist-types/commands/UpdateDbInstanceCommand.d.ts +108 -0
  86. package/dist-types/commands/index.d.ts +11 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +15 -0
  92. package/dist-types/models/TimestreamInfluxDBServiceException.d.ts +13 -0
  93. package/dist-types/models/index.d.ts +1 -0
  94. package/dist-types/models/models_0.d.ts +1099 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListDbInstancesPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListDbParameterGroupsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +3 -0
  99. package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  101. package/dist-types/runtimeConfig.d.ts +45 -0
  102. package/dist-types/runtimeConfig.native.d.ts +44 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +194 -0
  106. package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +189 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +29 -0
  110. package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +30 -0
  111. package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +29 -0
  112. package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +26 -0
  113. package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +30 -0
  114. package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +29 -0
  115. package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +30 -0
  116. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
  117. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
  118. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
  119. package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +29 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  125. package/dist-types/ts3.4/index.d.ts +10 -0
  126. package/dist-types/ts3.4/models/TimestreamInfluxDBServiceException.d.ts +8 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +319 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListDbInstancesPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListDbParameterGroupsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  133. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  139. package/package.json +101 -0
@@ -0,0 +1,1099 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
3
+ /**
4
+ * @public
5
+ * <p>You do not have sufficient access to perform this action.</p>
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * @public
17
+ * <p>The request conflicts with an existing resource in Timestream for InfluxDB.</p>
18
+ */
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @public
24
+ * <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
25
+ */
26
+ resourceId: string | undefined;
27
+ /**
28
+ * @public
29
+ * <p>The type of Timestream for InfluxDB resource associated with the request.</p>
30
+ */
31
+ resourceType: string | undefined;
32
+ /**
33
+ * @internal
34
+ */
35
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
36
+ }
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const DbInstanceType: {
42
+ readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
43
+ readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
44
+ readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
45
+ readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
46
+ readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
47
+ readonly DB_INFLUX_LARGE: "db.influx.large";
48
+ readonly DB_INFLUX_MEDIUM: "db.influx.medium";
49
+ readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
50
+ };
51
+ /**
52
+ * @public
53
+ */
54
+ export type DbInstanceType = (typeof DbInstanceType)[keyof typeof DbInstanceType];
55
+ /**
56
+ * @public
57
+ * @enum
58
+ */
59
+ export declare const DbStorageType: {
60
+ readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
61
+ readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
62
+ readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
63
+ };
64
+ /**
65
+ * @public
66
+ */
67
+ export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
68
+ /**
69
+ * @public
70
+ * @enum
71
+ */
72
+ export declare const DeploymentType: {
73
+ readonly SINGLE_AZ: "SINGLE_AZ";
74
+ readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
75
+ };
76
+ /**
77
+ * @public
78
+ */
79
+ export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType];
80
+ /**
81
+ * @public
82
+ * <p>Configuration for S3 bucket log delivery.</p>
83
+ */
84
+ export interface S3Configuration {
85
+ /**
86
+ * @public
87
+ * <p>The name of the S3 bucket to deliver logs to.</p>
88
+ */
89
+ bucketName: string | undefined;
90
+ /**
91
+ * @public
92
+ * <p>Indicates whether log delivery to the S3 bucket is enabled.</p>
93
+ */
94
+ enabled: boolean | undefined;
95
+ }
96
+ /**
97
+ * @public
98
+ * <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
99
+ */
100
+ export interface LogDeliveryConfiguration {
101
+ /**
102
+ * @public
103
+ * <p>Configuration for S3 bucket log delivery.</p>
104
+ */
105
+ s3Configuration: S3Configuration | undefined;
106
+ }
107
+ /**
108
+ * @public
109
+ */
110
+ export interface CreateDbInstanceInput {
111
+ /**
112
+ * @public
113
+ * <p>The name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region.</p>
114
+ */
115
+ name: string | undefined;
116
+ /**
117
+ * @public
118
+ * <p>The username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. For example, my-user1. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. These attributes will be stored in a Secret created in Amazon Secrets Manager in your account.</p>
119
+ */
120
+ username?: string;
121
+ /**
122
+ * @public
123
+ * <p>The password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. These attributes will be stored in a Secret created in AWS SecretManager in your account.</p>
124
+ */
125
+ password: string | undefined;
126
+ /**
127
+ * @public
128
+ * <p>The name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users.</p>
129
+ */
130
+ organization?: string;
131
+ /**
132
+ * @public
133
+ * <p>The name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization.</p>
134
+ */
135
+ bucket?: string;
136
+ /**
137
+ * @public
138
+ * <p>The Timestream for InfluxDB DB instance type to run InfluxDB on.</p>
139
+ */
140
+ dbInstanceType: DbInstanceType | undefined;
141
+ /**
142
+ * @public
143
+ * <p>A list of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.</p>
144
+ */
145
+ vpcSubnetIds: string[] | undefined;
146
+ /**
147
+ * @public
148
+ * <p>A list of VPC security group IDs to associate with the DB instance.</p>
149
+ */
150
+ vpcSecurityGroupIds: string[] | undefined;
151
+ /**
152
+ * @public
153
+ * <p>Configures the DB instance with a public IP to facilitate access.</p>
154
+ */
155
+ publiclyAccessible?: boolean;
156
+ /**
157
+ * @public
158
+ * <p>The Timestream for InfluxDB DB storage type to read and write InfluxDB data.</p>
159
+ * <p>You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements:</p>
160
+ * <ul>
161
+ * <li>
162
+ * <p>Influx IO Included 3000 IOPS</p>
163
+ * </li>
164
+ * <li>
165
+ * <p>Influx IO Included 12000 IOPS</p>
166
+ * </li>
167
+ * <li>
168
+ * <p>Influx IO Included 16000 IOPS</p>
169
+ * </li>
170
+ * </ul>
171
+ */
172
+ dbStorageType?: DbStorageType;
173
+ /**
174
+ * @public
175
+ * <p>The amount of storage to allocate for your DB storage type in GiB (gibibytes).</p>
176
+ */
177
+ allocatedStorage: number | undefined;
178
+ /**
179
+ * @public
180
+ * <p>The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.</p>
181
+ */
182
+ dbParameterGroupIdentifier?: string;
183
+ /**
184
+ * @public
185
+ * <p>Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.</p>
186
+ */
187
+ deploymentType?: DeploymentType;
188
+ /**
189
+ * @public
190
+ * <p>Configuration for sending InfluxDB engine logs to a specified S3 bucket.</p>
191
+ */
192
+ logDeliveryConfiguration?: LogDeliveryConfiguration;
193
+ /**
194
+ * @public
195
+ * <p>A list of key-value pairs to associate with the DB instance.</p>
196
+ */
197
+ tags?: Record<string, string>;
198
+ }
199
+ /**
200
+ * @public
201
+ * @enum
202
+ */
203
+ export declare const Status: {
204
+ readonly AVAILABLE: "AVAILABLE";
205
+ readonly CREATING: "CREATING";
206
+ readonly DELETED: "DELETED";
207
+ readonly DELETING: "DELETING";
208
+ readonly FAILED: "FAILED";
209
+ readonly MODIFYING: "MODIFYING";
210
+ readonly UPDATING: "UPDATING";
211
+ };
212
+ /**
213
+ * @public
214
+ */
215
+ export type Status = (typeof Status)[keyof typeof Status];
216
+ /**
217
+ * @public
218
+ */
219
+ export interface CreateDbInstanceOutput {
220
+ /**
221
+ * @public
222
+ * <p>A service-generated unique identifier.</p>
223
+ */
224
+ id: string | undefined;
225
+ /**
226
+ * @public
227
+ * <p>The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
228
+ */
229
+ name: string | undefined;
230
+ /**
231
+ * @public
232
+ * <p>The Amazon Resource Name (ARN) of the DB instance.</p>
233
+ */
234
+ arn: string | undefined;
235
+ /**
236
+ * @public
237
+ * <p>The status of the DB instance.</p>
238
+ */
239
+ status?: Status;
240
+ /**
241
+ * @public
242
+ * <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
243
+ */
244
+ endpoint?: string;
245
+ /**
246
+ * @public
247
+ * <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
248
+ */
249
+ dbInstanceType?: DbInstanceType;
250
+ /**
251
+ * @public
252
+ * <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
253
+ */
254
+ dbStorageType?: DbStorageType;
255
+ /**
256
+ * @public
257
+ * <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
258
+ */
259
+ allocatedStorage?: number;
260
+ /**
261
+ * @public
262
+ * <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
263
+ */
264
+ deploymentType?: DeploymentType;
265
+ /**
266
+ * @public
267
+ * <p>A list of VPC subnet IDs associated with the DB instance.</p>
268
+ */
269
+ vpcSubnetIds: string[] | undefined;
270
+ /**
271
+ * @public
272
+ * <p>Indicates if the DB instance has a public IP to facilitate access.</p>
273
+ */
274
+ publiclyAccessible?: boolean;
275
+ /**
276
+ * @public
277
+ * <p>A list of VPC security group IDs associated with the DB instance.</p>
278
+ */
279
+ vpcSecurityGroupIds?: string[];
280
+ /**
281
+ * @public
282
+ * <p>The id of the DB parameter group assigned to your DB instance.</p>
283
+ */
284
+ dbParameterGroupIdentifier?: string;
285
+ /**
286
+ * @public
287
+ * <p>The Availability Zone in which the DB instance resides.</p>
288
+ */
289
+ availabilityZone?: string;
290
+ /**
291
+ * @public
292
+ * <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
293
+ */
294
+ secondaryAvailabilityZone?: string;
295
+ /**
296
+ * @public
297
+ * <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
298
+ */
299
+ logDeliveryConfiguration?: LogDeliveryConfiguration;
300
+ /**
301
+ * @public
302
+ * <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
303
+ */
304
+ influxAuthParametersSecretArn?: string;
305
+ }
306
+ /**
307
+ * @public
308
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
309
+ */
310
+ export declare class InternalServerException extends __BaseException {
311
+ readonly name: "InternalServerException";
312
+ readonly $fault: "server";
313
+ $retryable: {};
314
+ /**
315
+ * @internal
316
+ */
317
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
318
+ }
319
+ /**
320
+ * @public
321
+ * <p>The requested resource was not found or does not exist.</p>
322
+ */
323
+ export declare class ResourceNotFoundException extends __BaseException {
324
+ readonly name: "ResourceNotFoundException";
325
+ readonly $fault: "client";
326
+ /**
327
+ * @public
328
+ * <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
329
+ */
330
+ resourceId: string | undefined;
331
+ /**
332
+ * @public
333
+ * <p>The type of Timestream for InfluxDB resource associated with the request.</p>
334
+ */
335
+ resourceType: string | undefined;
336
+ /**
337
+ * @internal
338
+ */
339
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
340
+ }
341
+ /**
342
+ * @public
343
+ * <p>The request exceeds the service quota.</p>
344
+ */
345
+ export declare class ServiceQuotaExceededException extends __BaseException {
346
+ readonly name: "ServiceQuotaExceededException";
347
+ readonly $fault: "client";
348
+ /**
349
+ * @internal
350
+ */
351
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
352
+ }
353
+ /**
354
+ * @public
355
+ * <p>The request was denied due to request throttling.</p>
356
+ */
357
+ export declare class ThrottlingException extends __BaseException {
358
+ readonly name: "ThrottlingException";
359
+ readonly $fault: "client";
360
+ $retryable: {};
361
+ /**
362
+ * @public
363
+ * <p>The number of seconds the caller should wait before retrying.</p>
364
+ */
365
+ retryAfterSeconds?: number;
366
+ /**
367
+ * @internal
368
+ */
369
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
370
+ }
371
+ /**
372
+ * @public
373
+ * @enum
374
+ */
375
+ export declare const ValidationExceptionReason: {
376
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
377
+ readonly OTHER: "OTHER";
378
+ };
379
+ /**
380
+ * @public
381
+ */
382
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
383
+ /**
384
+ * @public
385
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
386
+ */
387
+ export declare class ValidationException extends __BaseException {
388
+ readonly name: "ValidationException";
389
+ readonly $fault: "client";
390
+ /**
391
+ * @public
392
+ * <p>The reason that validation failed.</p>
393
+ */
394
+ reason: ValidationExceptionReason | undefined;
395
+ /**
396
+ * @internal
397
+ */
398
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
399
+ }
400
+ /**
401
+ * @public
402
+ */
403
+ export interface DeleteDbInstanceInput {
404
+ /**
405
+ * @public
406
+ * <p>The id of the DB instance.</p>
407
+ */
408
+ identifier: string | undefined;
409
+ }
410
+ /**
411
+ * @public
412
+ */
413
+ export interface DeleteDbInstanceOutput {
414
+ /**
415
+ * @public
416
+ * <p>A service-generated unique identifier.</p>
417
+ */
418
+ id: string | undefined;
419
+ /**
420
+ * @public
421
+ * <p>The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
422
+ */
423
+ name: string | undefined;
424
+ /**
425
+ * @public
426
+ * <p>The Amazon Resource Name (ARN) of the DB instance.</p>
427
+ */
428
+ arn: string | undefined;
429
+ /**
430
+ * @public
431
+ * <p>The status of the DB instance.</p>
432
+ */
433
+ status?: Status;
434
+ /**
435
+ * @public
436
+ * <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
437
+ */
438
+ endpoint?: string;
439
+ /**
440
+ * @public
441
+ * <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
442
+ */
443
+ dbInstanceType?: DbInstanceType;
444
+ /**
445
+ * @public
446
+ * <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
447
+ */
448
+ dbStorageType?: DbStorageType;
449
+ /**
450
+ * @public
451
+ * <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
452
+ */
453
+ allocatedStorage?: number;
454
+ /**
455
+ * @public
456
+ * <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
457
+ */
458
+ deploymentType?: DeploymentType;
459
+ /**
460
+ * @public
461
+ * <p>A list of VPC subnet IDs associated with the DB instance.</p>
462
+ */
463
+ vpcSubnetIds: string[] | undefined;
464
+ /**
465
+ * @public
466
+ * <p>Indicates if the DB instance has a public IP to facilitate access.</p>
467
+ */
468
+ publiclyAccessible?: boolean;
469
+ /**
470
+ * @public
471
+ * <p>A list of VPC security group IDs associated with the DB instance.</p>
472
+ */
473
+ vpcSecurityGroupIds?: string[];
474
+ /**
475
+ * @public
476
+ * <p>The id of the DB parameter group assigned to your DB instance.</p>
477
+ */
478
+ dbParameterGroupIdentifier?: string;
479
+ /**
480
+ * @public
481
+ * <p>The Availability Zone in which the DB instance resides.</p>
482
+ */
483
+ availabilityZone?: string;
484
+ /**
485
+ * @public
486
+ * <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
487
+ */
488
+ secondaryAvailabilityZone?: string;
489
+ /**
490
+ * @public
491
+ * <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
492
+ */
493
+ logDeliveryConfiguration?: LogDeliveryConfiguration;
494
+ /**
495
+ * @public
496
+ * <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
497
+ */
498
+ influxAuthParametersSecretArn?: string;
499
+ }
500
+ /**
501
+ * @public
502
+ */
503
+ export interface GetDbInstanceInput {
504
+ /**
505
+ * @public
506
+ * <p>The id of the DB instance.</p>
507
+ */
508
+ identifier: string | undefined;
509
+ }
510
+ /**
511
+ * @public
512
+ */
513
+ export interface GetDbInstanceOutput {
514
+ /**
515
+ * @public
516
+ * <p>A service-generated unique identifier.</p>
517
+ */
518
+ id: string | undefined;
519
+ /**
520
+ * @public
521
+ * <p>The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
522
+ */
523
+ name: string | undefined;
524
+ /**
525
+ * @public
526
+ * <p>The Amazon Resource Name (ARN) of the DB instance.</p>
527
+ */
528
+ arn: string | undefined;
529
+ /**
530
+ * @public
531
+ * <p>The status of the DB instance.</p>
532
+ */
533
+ status?: Status;
534
+ /**
535
+ * @public
536
+ * <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
537
+ */
538
+ endpoint?: string;
539
+ /**
540
+ * @public
541
+ * <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
542
+ */
543
+ dbInstanceType?: DbInstanceType;
544
+ /**
545
+ * @public
546
+ * <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
547
+ */
548
+ dbStorageType?: DbStorageType;
549
+ /**
550
+ * @public
551
+ * <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
552
+ */
553
+ allocatedStorage?: number;
554
+ /**
555
+ * @public
556
+ * <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
557
+ */
558
+ deploymentType?: DeploymentType;
559
+ /**
560
+ * @public
561
+ * <p>A list of VPC subnet IDs associated with the DB instance.</p>
562
+ */
563
+ vpcSubnetIds: string[] | undefined;
564
+ /**
565
+ * @public
566
+ * <p>Indicates if the DB instance has a public IP to facilitate access.</p>
567
+ */
568
+ publiclyAccessible?: boolean;
569
+ /**
570
+ * @public
571
+ * <p>A list of VPC security group IDs associated with the DB instance.</p>
572
+ */
573
+ vpcSecurityGroupIds?: string[];
574
+ /**
575
+ * @public
576
+ * <p>The id of the DB parameter group assigned to your DB instance.</p>
577
+ */
578
+ dbParameterGroupIdentifier?: string;
579
+ /**
580
+ * @public
581
+ * <p>The Availability Zone in which the DB instance resides.</p>
582
+ */
583
+ availabilityZone?: string;
584
+ /**
585
+ * @public
586
+ * <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
587
+ */
588
+ secondaryAvailabilityZone?: string;
589
+ /**
590
+ * @public
591
+ * <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
592
+ */
593
+ logDeliveryConfiguration?: LogDeliveryConfiguration;
594
+ /**
595
+ * @public
596
+ * <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
597
+ */
598
+ influxAuthParametersSecretArn?: string;
599
+ }
600
+ /**
601
+ * @public
602
+ */
603
+ export interface ListDbInstancesInput {
604
+ /**
605
+ * @public
606
+ * <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
607
+ */
608
+ nextToken?: string;
609
+ /**
610
+ * @public
611
+ * <p>The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
612
+ */
613
+ maxResults?: number;
614
+ }
615
+ /**
616
+ * @public
617
+ * <p>Contains a summary of a DB instance.</p>
618
+ */
619
+ export interface DbInstanceSummary {
620
+ /**
621
+ * @public
622
+ * <p>The service-generated unique identifier of the DB instance.</p>
623
+ */
624
+ id: string | undefined;
625
+ /**
626
+ * @public
627
+ * <p>This customer-supplied name uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and AWS CLI commands.</p>
628
+ */
629
+ name: string | undefined;
630
+ /**
631
+ * @public
632
+ * <p>The Amazon Resource Name (ARN) of the DB instance.</p>
633
+ */
634
+ arn: string | undefined;
635
+ /**
636
+ * @public
637
+ * <p>The status of the DB instance.</p>
638
+ */
639
+ status?: Status;
640
+ /**
641
+ * @public
642
+ * <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
643
+ */
644
+ endpoint?: string;
645
+ /**
646
+ * @public
647
+ * <p>The Timestream for InfluxDB instance type to run InfluxDB on.</p>
648
+ */
649
+ dbInstanceType?: DbInstanceType;
650
+ /**
651
+ * @public
652
+ * <p>The storage type for your DB instance.</p>
653
+ */
654
+ dbStorageType?: DbStorageType;
655
+ /**
656
+ * @public
657
+ * <p>The amount of storage to allocate for your DbStorageType in GiB (gibibytes).</p>
658
+ */
659
+ allocatedStorage?: number;
660
+ /**
661
+ * @public
662
+ * <p>Single-Instance or with a MultiAZ Standby for High availability.</p>
663
+ */
664
+ deploymentType?: DeploymentType;
665
+ }
666
+ /**
667
+ * @public
668
+ */
669
+ export interface ListDbInstancesOutput {
670
+ /**
671
+ * @public
672
+ * <p>A list of Timestream for InfluxDB DB instance summaries.</p>
673
+ */
674
+ items: DbInstanceSummary[] | undefined;
675
+ /**
676
+ * @public
677
+ * <p>Token from a previous call of the operation. When this value is provided, the
678
+ * service returns results from where the previous response left off.</p>
679
+ */
680
+ nextToken?: string;
681
+ }
682
+ /**
683
+ * @public
684
+ */
685
+ export interface UpdateDbInstanceInput {
686
+ /**
687
+ * @public
688
+ * <p>The id of the DB instance.</p>
689
+ */
690
+ identifier: string | undefined;
691
+ /**
692
+ * @public
693
+ * <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
694
+ */
695
+ logDeliveryConfiguration?: LogDeliveryConfiguration;
696
+ /**
697
+ * @public
698
+ * <p>The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.</p>
699
+ */
700
+ dbParameterGroupIdentifier?: string;
701
+ }
702
+ /**
703
+ * @public
704
+ */
705
+ export interface UpdateDbInstanceOutput {
706
+ /**
707
+ * @public
708
+ * <p>A service-generated unique identifier.</p>
709
+ */
710
+ id: string | undefined;
711
+ /**
712
+ * @public
713
+ * <p>This customer-supplied name uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and AWS CLI commands.</p>
714
+ */
715
+ name: string | undefined;
716
+ /**
717
+ * @public
718
+ * <p>The Amazon Resource Name (ARN) of the DB instance.</p>
719
+ */
720
+ arn: string | undefined;
721
+ /**
722
+ * @public
723
+ * <p>The status of the DB instance.</p>
724
+ */
725
+ status?: Status;
726
+ /**
727
+ * @public
728
+ * <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
729
+ */
730
+ endpoint?: string;
731
+ /**
732
+ * @public
733
+ * <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
734
+ */
735
+ dbInstanceType?: DbInstanceType;
736
+ /**
737
+ * @public
738
+ * <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
739
+ */
740
+ dbStorageType?: DbStorageType;
741
+ /**
742
+ * @public
743
+ * <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
744
+ */
745
+ allocatedStorage?: number;
746
+ /**
747
+ * @public
748
+ * <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
749
+ */
750
+ deploymentType?: DeploymentType;
751
+ /**
752
+ * @public
753
+ * <p>A list of VPC subnet IDs associated with the DB instance.</p>
754
+ */
755
+ vpcSubnetIds: string[] | undefined;
756
+ /**
757
+ * @public
758
+ * <p>Indicates if the DB instance has a public IP to facilitate access.</p>
759
+ */
760
+ publiclyAccessible?: boolean;
761
+ /**
762
+ * @public
763
+ * <p>A list of VPC security group IDs associated with the DB instance.</p>
764
+ */
765
+ vpcSecurityGroupIds?: string[];
766
+ /**
767
+ * @public
768
+ * <p>The id of the DB parameter group assigned to your DB instance.</p>
769
+ */
770
+ dbParameterGroupIdentifier?: string;
771
+ /**
772
+ * @public
773
+ * <p>The Availability Zone in which the DB instance resides.</p>
774
+ */
775
+ availabilityZone?: string;
776
+ /**
777
+ * @public
778
+ * <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
779
+ */
780
+ secondaryAvailabilityZone?: string;
781
+ /**
782
+ * @public
783
+ * <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
784
+ */
785
+ logDeliveryConfiguration?: LogDeliveryConfiguration;
786
+ /**
787
+ * @public
788
+ * <p>The Amazon Resource Name (ARN) of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
789
+ */
790
+ influxAuthParametersSecretArn?: string;
791
+ }
792
+ /**
793
+ * @public
794
+ * @enum
795
+ */
796
+ export declare const LogLevel: {
797
+ readonly DEBUG: "debug";
798
+ readonly ERROR: "error";
799
+ readonly INFO: "info";
800
+ };
801
+ /**
802
+ * @public
803
+ */
804
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
805
+ /**
806
+ * @public
807
+ * @enum
808
+ */
809
+ export declare const TracingType: {
810
+ readonly JAEGER: "jaeger";
811
+ readonly LOG: "log";
812
+ };
813
+ /**
814
+ * @public
815
+ */
816
+ export type TracingType = (typeof TracingType)[keyof typeof TracingType];
817
+ /**
818
+ * @public
819
+ * <p>All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.</p>
820
+ */
821
+ export interface InfluxDBv2Parameters {
822
+ /**
823
+ * @public
824
+ * <p>Include option to show detailed logs for Flux queries.</p>
825
+ * <p>Default: false</p>
826
+ */
827
+ fluxLogEnabled?: boolean;
828
+ /**
829
+ * @public
830
+ * <p>Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.</p>
831
+ * <p>Default: info</p>
832
+ */
833
+ logLevel?: LogLevel;
834
+ /**
835
+ * @public
836
+ * <p>Disable the task scheduler. If problematic tasks prevent InfluxDB from starting, use this option to start InfluxDB without scheduling or executing tasks.</p>
837
+ * <p>Default: false</p>
838
+ */
839
+ noTasks?: boolean;
840
+ /**
841
+ * @public
842
+ * <p>Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.</p>
843
+ * <p>Default: 0</p>
844
+ */
845
+ queryConcurrency?: number;
846
+ /**
847
+ * @public
848
+ * <p>Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.</p>
849
+ * <p>Default: 0</p>
850
+ */
851
+ queryQueueSize?: number;
852
+ /**
853
+ * @public
854
+ * <p>Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.</p>
855
+ */
856
+ tracingType?: TracingType;
857
+ /**
858
+ * @public
859
+ * <p>Disable the HTTP /metrics endpoint which exposes <a href="https://docs.influxdata.com/influxdb/v2/reference/internals/metrics/">internal InfluxDB metrics</a>.</p>
860
+ * <p>Default: false</p>
861
+ */
862
+ metricsDisabled?: boolean;
863
+ }
864
+ /**
865
+ * @public
866
+ * <p>The parameters that comprise the parameter group.</p>
867
+ */
868
+ export type _Parameters = _Parameters.InfluxDBv2Member | _Parameters.$UnknownMember;
869
+ /**
870
+ * @public
871
+ */
872
+ export declare namespace _Parameters {
873
+ /**
874
+ * @public
875
+ * <p>All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.</p>
876
+ */
877
+ interface InfluxDBv2Member {
878
+ InfluxDBv2: InfluxDBv2Parameters;
879
+ $unknown?: never;
880
+ }
881
+ /**
882
+ * @public
883
+ */
884
+ interface $UnknownMember {
885
+ InfluxDBv2?: never;
886
+ $unknown: [string, any];
887
+ }
888
+ interface Visitor<T> {
889
+ InfluxDBv2: (value: InfluxDBv2Parameters) => T;
890
+ _: (name: string, value: any) => T;
891
+ }
892
+ const visit: <T>(value: _Parameters, visitor: Visitor<T>) => T;
893
+ }
894
+ /**
895
+ * @public
896
+ */
897
+ export interface CreateDbParameterGroupInput {
898
+ /**
899
+ * @public
900
+ * <p>The name of the DB parameter group. The name must be unique per customer and per region.</p>
901
+ */
902
+ name: string | undefined;
903
+ /**
904
+ * @public
905
+ * <p>A description of the DB parameter group.</p>
906
+ */
907
+ description?: string;
908
+ /**
909
+ * @public
910
+ * <p>A list of the parameters that comprise the DB parameter group.</p>
911
+ */
912
+ parameters?: _Parameters;
913
+ /**
914
+ * @public
915
+ * <p>A list of key-value pairs to associate with the DB parameter group.</p>
916
+ */
917
+ tags?: Record<string, string>;
918
+ }
919
+ /**
920
+ * @public
921
+ */
922
+ export interface CreateDbParameterGroupOutput {
923
+ /**
924
+ * @public
925
+ * <p>A service-generated unique identifier.</p>
926
+ */
927
+ id: string | undefined;
928
+ /**
929
+ * @public
930
+ * <p>The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
931
+ */
932
+ name: string | undefined;
933
+ /**
934
+ * @public
935
+ * <p>The Amazon Resource Name (ARM) of the DB parameter group.</p>
936
+ */
937
+ arn: string | undefined;
938
+ /**
939
+ * @public
940
+ * <p>The description of the DB parameter group.</p>
941
+ */
942
+ description?: string;
943
+ /**
944
+ * @public
945
+ * <p>A list of the parameters that comprise the DB parameter group.</p>
946
+ */
947
+ parameters?: _Parameters;
948
+ }
949
+ /**
950
+ * @public
951
+ */
952
+ export interface GetDbParameterGroupInput {
953
+ /**
954
+ * @public
955
+ * <p>The id of the DB parameter group.</p>
956
+ */
957
+ identifier: string | undefined;
958
+ }
959
+ /**
960
+ * @public
961
+ */
962
+ export interface GetDbParameterGroupOutput {
963
+ /**
964
+ * @public
965
+ * <p>A service-generated unique identifier.</p>
966
+ */
967
+ id: string | undefined;
968
+ /**
969
+ * @public
970
+ * <p>The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
971
+ */
972
+ name: string | undefined;
973
+ /**
974
+ * @public
975
+ * <p>The Amazon Resource Name (ARN) of the DB parameter group.</p>
976
+ */
977
+ arn: string | undefined;
978
+ /**
979
+ * @public
980
+ * <p>A description of the DB parameter group.</p>
981
+ */
982
+ description?: string;
983
+ /**
984
+ * @public
985
+ * <p>The parameters that comprise the DB parameter group.</p>
986
+ */
987
+ parameters?: _Parameters;
988
+ }
989
+ /**
990
+ * @public
991
+ */
992
+ export interface ListDbParameterGroupsInput {
993
+ /**
994
+ * @public
995
+ * <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
996
+ */
997
+ nextToken?: string;
998
+ /**
999
+ * @public
1000
+ * <p>The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
1001
+ */
1002
+ maxResults?: number;
1003
+ }
1004
+ /**
1005
+ * @public
1006
+ * <p>Contains a summary of a DB parameter group.</p>
1007
+ */
1008
+ export interface DbParameterGroupSummary {
1009
+ /**
1010
+ * @public
1011
+ * <p>A service-generated unique identifier.</p>
1012
+ */
1013
+ id: string | undefined;
1014
+ /**
1015
+ * @public
1016
+ * <p>This customer-supplied name uniquely identifies the parameter group.</p>
1017
+ */
1018
+ name: string | undefined;
1019
+ /**
1020
+ * @public
1021
+ * <p>The Amazon Resource Name (ARN) of the DB parameter group.</p>
1022
+ */
1023
+ arn: string | undefined;
1024
+ /**
1025
+ * @public
1026
+ * <p>A description of the DB parameter group.</p>
1027
+ */
1028
+ description?: string;
1029
+ }
1030
+ /**
1031
+ * @public
1032
+ */
1033
+ export interface ListDbParameterGroupsOutput {
1034
+ /**
1035
+ * @public
1036
+ * <p>A list of Timestream for InfluxDB DB parameter group summaries.</p>
1037
+ */
1038
+ items: DbParameterGroupSummary[] | undefined;
1039
+ /**
1040
+ * @public
1041
+ * <p>Token from a previous call of the operation. When this value is provided, the
1042
+ * service returns results from where the previous response left off.</p>
1043
+ */
1044
+ nextToken?: string;
1045
+ }
1046
+ /**
1047
+ * @public
1048
+ */
1049
+ export interface ListTagsForResourceRequest {
1050
+ /**
1051
+ * @public
1052
+ * <p>The Amazon Resource Name (ARN) of the tagged resource.</p>
1053
+ */
1054
+ resourceArn: string | undefined;
1055
+ }
1056
+ /**
1057
+ * @public
1058
+ */
1059
+ export interface ListTagsForResourceResponse {
1060
+ /**
1061
+ * @public
1062
+ * <p>A list of tags used to categorize and track resources.</p>
1063
+ */
1064
+ tags?: Record<string, string>;
1065
+ }
1066
+ /**
1067
+ * @public
1068
+ */
1069
+ export interface TagResourceRequest {
1070
+ /**
1071
+ * @public
1072
+ * <p>The Amazon Resource Name (ARN) of the tagged resource.</p>
1073
+ */
1074
+ resourceArn: string | undefined;
1075
+ /**
1076
+ * @public
1077
+ * <p>A list of tags used to categorize and track resources.</p>
1078
+ */
1079
+ tags: Record<string, string> | undefined;
1080
+ }
1081
+ /**
1082
+ * @public
1083
+ */
1084
+ export interface UntagResourceRequest {
1085
+ /**
1086
+ * @public
1087
+ * <p>The Amazon Resource Name (ARN) of the tagged resource.</p>
1088
+ */
1089
+ resourceArn: string | undefined;
1090
+ /**
1091
+ * @public
1092
+ * <p>The keys used to identify the tags.</p>
1093
+ */
1094
+ tagKeys: string[] | undefined;
1095
+ }
1096
+ /**
1097
+ * @internal
1098
+ */
1099
+ export declare const CreateDbInstanceInputFilterSensitiveLog: (obj: CreateDbInstanceInput) => any;