@aws-sdk/client-timestream-influxdb 3.534.0 → 3.540.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.
- package/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -1
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/TimestreamInfluxDB.d.ts +3 -1
- package/dist-types/TimestreamInfluxDBClient.d.ts +1 -1
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +2 -1
- package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +2 -1
- package/dist-types/commands/GetDbInstanceCommand.d.ts +2 -1
- package/dist-types/commands/GetDbParameterGroupCommand.d.ts +2 -1
- package/dist-types/commands/ListDbInstancesCommand.d.ts +2 -1
- package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +160 -160
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
@@ -13,20 +13,20 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
|
-
* @public
|
|
17
16
|
* <p>The request conflicts with an existing resource in Timestream for InfluxDB.</p>
|
|
17
|
+
* @public
|
|
18
18
|
*/
|
|
19
19
|
export declare class ConflictException extends __BaseException {
|
|
20
20
|
readonly name: "ConflictException";
|
|
21
21
|
readonly $fault: "client";
|
|
22
22
|
/**
|
|
23
|
-
* @public
|
|
24
23
|
* <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
|
|
24
|
+
* @public
|
|
25
25
|
*/
|
|
26
26
|
resourceId: string | undefined;
|
|
27
27
|
/**
|
|
28
|
-
* @public
|
|
29
28
|
* <p>The type of Timestream for InfluxDB resource associated with the request.</p>
|
|
29
|
+
* @public
|
|
30
30
|
*/
|
|
31
31
|
resourceType: string | undefined;
|
|
32
32
|
/**
|
|
@@ -78,29 +78,29 @@ export declare const DeploymentType: {
|
|
|
78
78
|
*/
|
|
79
79
|
export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType];
|
|
80
80
|
/**
|
|
81
|
-
* @public
|
|
82
81
|
* <p>Configuration for S3 bucket log delivery.</p>
|
|
82
|
+
* @public
|
|
83
83
|
*/
|
|
84
84
|
export interface S3Configuration {
|
|
85
85
|
/**
|
|
86
|
-
* @public
|
|
87
86
|
* <p>The name of the S3 bucket to deliver logs to.</p>
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
bucketName: string | undefined;
|
|
90
90
|
/**
|
|
91
|
-
* @public
|
|
92
91
|
* <p>Indicates whether log delivery to the S3 bucket is enabled.</p>
|
|
92
|
+
* @public
|
|
93
93
|
*/
|
|
94
94
|
enabled: boolean | undefined;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
|
-
* @public
|
|
98
97
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
98
|
+
* @public
|
|
99
99
|
*/
|
|
100
100
|
export interface LogDeliveryConfiguration {
|
|
101
101
|
/**
|
|
102
|
-
* @public
|
|
103
102
|
* <p>Configuration for S3 bucket log delivery.</p>
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
s3Configuration: S3Configuration | undefined;
|
|
106
106
|
}
|
|
@@ -109,52 +109,51 @@ export interface LogDeliveryConfiguration {
|
|
|
109
109
|
*/
|
|
110
110
|
export interface CreateDbInstanceInput {
|
|
111
111
|
/**
|
|
112
|
-
* @public
|
|
113
112
|
* <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>
|
|
113
|
+
* @public
|
|
114
114
|
*/
|
|
115
115
|
name: string | undefined;
|
|
116
116
|
/**
|
|
117
|
-
* @public
|
|
118
117
|
* <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>
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
username?: string;
|
|
121
121
|
/**
|
|
122
|
-
* @public
|
|
123
122
|
* <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>
|
|
123
|
+
* @public
|
|
124
124
|
*/
|
|
125
125
|
password: string | undefined;
|
|
126
126
|
/**
|
|
127
|
-
* @public
|
|
128
127
|
* <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>
|
|
128
|
+
* @public
|
|
129
129
|
*/
|
|
130
130
|
organization?: string;
|
|
131
131
|
/**
|
|
132
|
-
* @public
|
|
133
132
|
* <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>
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
bucket?: string;
|
|
136
136
|
/**
|
|
137
|
-
* @public
|
|
138
137
|
* <p>The Timestream for InfluxDB DB instance type to run InfluxDB on.</p>
|
|
138
|
+
* @public
|
|
139
139
|
*/
|
|
140
140
|
dbInstanceType: DbInstanceType | undefined;
|
|
141
141
|
/**
|
|
142
|
-
* @public
|
|
143
142
|
* <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>
|
|
143
|
+
* @public
|
|
144
144
|
*/
|
|
145
145
|
vpcSubnetIds: string[] | undefined;
|
|
146
146
|
/**
|
|
147
|
-
* @public
|
|
148
147
|
* <p>A list of VPC security group IDs to associate with the DB instance.</p>
|
|
148
|
+
* @public
|
|
149
149
|
*/
|
|
150
150
|
vpcSecurityGroupIds: string[] | undefined;
|
|
151
151
|
/**
|
|
152
|
-
* @public
|
|
153
152
|
* <p>Configures the DB instance with a public IP to facilitate access.</p>
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
publiclyAccessible?: boolean;
|
|
156
156
|
/**
|
|
157
|
-
* @public
|
|
158
157
|
* <p>The Timestream for InfluxDB DB storage type to read and write InfluxDB data.</p>
|
|
159
158
|
* <p>You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements:</p>
|
|
160
159
|
* <ul>
|
|
@@ -168,31 +167,32 @@ export interface CreateDbInstanceInput {
|
|
|
168
167
|
* <p>Influx IO Included 16000 IOPS</p>
|
|
169
168
|
* </li>
|
|
170
169
|
* </ul>
|
|
170
|
+
* @public
|
|
171
171
|
*/
|
|
172
172
|
dbStorageType?: DbStorageType;
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <p>The amount of storage to allocate for your DB storage type in GiB (gibibytes).</p>
|
|
175
|
+
* @public
|
|
176
176
|
*/
|
|
177
177
|
allocatedStorage: number | undefined;
|
|
178
178
|
/**
|
|
179
|
-
* @public
|
|
180
179
|
* <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>
|
|
180
|
+
* @public
|
|
181
181
|
*/
|
|
182
182
|
dbParameterGroupIdentifier?: string;
|
|
183
183
|
/**
|
|
184
|
-
* @public
|
|
185
184
|
* <p>Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.</p>
|
|
185
|
+
* @public
|
|
186
186
|
*/
|
|
187
187
|
deploymentType?: DeploymentType;
|
|
188
188
|
/**
|
|
189
|
-
* @public
|
|
190
189
|
* <p>Configuration for sending InfluxDB engine logs to a specified S3 bucket.</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
193
193
|
/**
|
|
194
|
-
* @public
|
|
195
194
|
* <p>A list of key-value pairs to associate with the DB instance.</p>
|
|
195
|
+
* @public
|
|
196
196
|
*/
|
|
197
197
|
tags?: Record<string, string>;
|
|
198
198
|
}
|
|
@@ -218,94 +218,94 @@ export type Status = (typeof Status)[keyof typeof Status];
|
|
|
218
218
|
*/
|
|
219
219
|
export interface CreateDbInstanceOutput {
|
|
220
220
|
/**
|
|
221
|
-
* @public
|
|
222
221
|
* <p>A service-generated unique identifier.</p>
|
|
222
|
+
* @public
|
|
223
223
|
*/
|
|
224
224
|
id: string | undefined;
|
|
225
225
|
/**
|
|
226
|
-
* @public
|
|
227
226
|
* <p>The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
|
|
227
|
+
* @public
|
|
228
228
|
*/
|
|
229
229
|
name: string | undefined;
|
|
230
230
|
/**
|
|
231
|
-
* @public
|
|
232
231
|
* <p>The Amazon Resource Name (ARN) of the DB instance.</p>
|
|
232
|
+
* @public
|
|
233
233
|
*/
|
|
234
234
|
arn: string | undefined;
|
|
235
235
|
/**
|
|
236
|
-
* @public
|
|
237
236
|
* <p>The status of the DB instance.</p>
|
|
237
|
+
* @public
|
|
238
238
|
*/
|
|
239
239
|
status?: Status;
|
|
240
240
|
/**
|
|
241
|
-
* @public
|
|
242
241
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
242
|
+
* @public
|
|
243
243
|
*/
|
|
244
244
|
endpoint?: string;
|
|
245
245
|
/**
|
|
246
|
-
* @public
|
|
247
246
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
247
|
+
* @public
|
|
248
248
|
*/
|
|
249
249
|
dbInstanceType?: DbInstanceType;
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
252
|
+
* @public
|
|
253
253
|
*/
|
|
254
254
|
dbStorageType?: DbStorageType;
|
|
255
255
|
/**
|
|
256
|
-
* @public
|
|
257
256
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
257
|
+
* @public
|
|
258
258
|
*/
|
|
259
259
|
allocatedStorage?: number;
|
|
260
260
|
/**
|
|
261
|
-
* @public
|
|
262
261
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
262
|
+
* @public
|
|
263
263
|
*/
|
|
264
264
|
deploymentType?: DeploymentType;
|
|
265
265
|
/**
|
|
266
|
-
* @public
|
|
267
266
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
267
|
+
* @public
|
|
268
268
|
*/
|
|
269
269
|
vpcSubnetIds: string[] | undefined;
|
|
270
270
|
/**
|
|
271
|
-
* @public
|
|
272
271
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
272
|
+
* @public
|
|
273
273
|
*/
|
|
274
274
|
publiclyAccessible?: boolean;
|
|
275
275
|
/**
|
|
276
|
-
* @public
|
|
277
276
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
277
|
+
* @public
|
|
278
278
|
*/
|
|
279
279
|
vpcSecurityGroupIds?: string[];
|
|
280
280
|
/**
|
|
281
|
-
* @public
|
|
282
281
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
282
|
+
* @public
|
|
283
283
|
*/
|
|
284
284
|
dbParameterGroupIdentifier?: string;
|
|
285
285
|
/**
|
|
286
|
-
* @public
|
|
287
286
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
287
|
+
* @public
|
|
288
288
|
*/
|
|
289
289
|
availabilityZone?: string;
|
|
290
290
|
/**
|
|
291
|
-
* @public
|
|
292
291
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
292
|
+
* @public
|
|
293
293
|
*/
|
|
294
294
|
secondaryAvailabilityZone?: string;
|
|
295
295
|
/**
|
|
296
|
-
* @public
|
|
297
296
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
297
|
+
* @public
|
|
298
298
|
*/
|
|
299
299
|
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
300
300
|
/**
|
|
301
|
-
* @public
|
|
302
301
|
* <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>
|
|
302
|
+
* @public
|
|
303
303
|
*/
|
|
304
304
|
influxAuthParametersSecretArn?: string;
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
307
|
-
* @public
|
|
308
307
|
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
308
|
+
* @public
|
|
309
309
|
*/
|
|
310
310
|
export declare class InternalServerException extends __BaseException {
|
|
311
311
|
readonly name: "InternalServerException";
|
|
@@ -317,20 +317,20 @@ export declare class InternalServerException extends __BaseException {
|
|
|
317
317
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
320
|
-
* @public
|
|
321
320
|
* <p>The requested resource was not found or does not exist.</p>
|
|
321
|
+
* @public
|
|
322
322
|
*/
|
|
323
323
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
324
324
|
readonly name: "ResourceNotFoundException";
|
|
325
325
|
readonly $fault: "client";
|
|
326
326
|
/**
|
|
327
|
-
* @public
|
|
328
327
|
* <p>The identifier for the Timestream for InfluxDB resource associated with the request.</p>
|
|
328
|
+
* @public
|
|
329
329
|
*/
|
|
330
330
|
resourceId: string | undefined;
|
|
331
331
|
/**
|
|
332
|
-
* @public
|
|
333
332
|
* <p>The type of Timestream for InfluxDB resource associated with the request.</p>
|
|
333
|
+
* @public
|
|
334
334
|
*/
|
|
335
335
|
resourceType: string | undefined;
|
|
336
336
|
/**
|
|
@@ -339,8 +339,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
339
339
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
|
-
* @public
|
|
343
342
|
* <p>The request exceeds the service quota.</p>
|
|
343
|
+
* @public
|
|
344
344
|
*/
|
|
345
345
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
346
346
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -351,16 +351,16 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
351
351
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
354
|
-
* @public
|
|
355
354
|
* <p>The request was denied due to request throttling.</p>
|
|
355
|
+
* @public
|
|
356
356
|
*/
|
|
357
357
|
export declare class ThrottlingException extends __BaseException {
|
|
358
358
|
readonly name: "ThrottlingException";
|
|
359
359
|
readonly $fault: "client";
|
|
360
360
|
$retryable: {};
|
|
361
361
|
/**
|
|
362
|
-
* @public
|
|
363
362
|
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
363
|
+
* @public
|
|
364
364
|
*/
|
|
365
365
|
retryAfterSeconds?: number;
|
|
366
366
|
/**
|
|
@@ -381,15 +381,15 @@ export declare const ValidationExceptionReason: {
|
|
|
381
381
|
*/
|
|
382
382
|
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
383
383
|
/**
|
|
384
|
-
* @public
|
|
385
384
|
* <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
|
|
385
|
+
* @public
|
|
386
386
|
*/
|
|
387
387
|
export declare class ValidationException extends __BaseException {
|
|
388
388
|
readonly name: "ValidationException";
|
|
389
389
|
readonly $fault: "client";
|
|
390
390
|
/**
|
|
391
|
-
* @public
|
|
392
391
|
* <p>The reason that validation failed.</p>
|
|
392
|
+
* @public
|
|
393
393
|
*/
|
|
394
394
|
reason: ValidationExceptionReason | undefined;
|
|
395
395
|
/**
|
|
@@ -402,8 +402,8 @@ export declare class ValidationException extends __BaseException {
|
|
|
402
402
|
*/
|
|
403
403
|
export interface DeleteDbInstanceInput {
|
|
404
404
|
/**
|
|
405
|
-
* @public
|
|
406
405
|
* <p>The id of the DB instance.</p>
|
|
406
|
+
* @public
|
|
407
407
|
*/
|
|
408
408
|
identifier: string | undefined;
|
|
409
409
|
}
|
|
@@ -412,88 +412,88 @@ export interface DeleteDbInstanceInput {
|
|
|
412
412
|
*/
|
|
413
413
|
export interface DeleteDbInstanceOutput {
|
|
414
414
|
/**
|
|
415
|
-
* @public
|
|
416
415
|
* <p>A service-generated unique identifier.</p>
|
|
416
|
+
* @public
|
|
417
417
|
*/
|
|
418
418
|
id: string | undefined;
|
|
419
419
|
/**
|
|
420
|
-
* @public
|
|
421
420
|
* <p>The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
|
|
421
|
+
* @public
|
|
422
422
|
*/
|
|
423
423
|
name: string | undefined;
|
|
424
424
|
/**
|
|
425
|
-
* @public
|
|
426
425
|
* <p>The Amazon Resource Name (ARN) of the DB instance.</p>
|
|
426
|
+
* @public
|
|
427
427
|
*/
|
|
428
428
|
arn: string | undefined;
|
|
429
429
|
/**
|
|
430
|
-
* @public
|
|
431
430
|
* <p>The status of the DB instance.</p>
|
|
431
|
+
* @public
|
|
432
432
|
*/
|
|
433
433
|
status?: Status;
|
|
434
434
|
/**
|
|
435
|
-
* @public
|
|
436
435
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
436
|
+
* @public
|
|
437
437
|
*/
|
|
438
438
|
endpoint?: string;
|
|
439
439
|
/**
|
|
440
|
-
* @public
|
|
441
440
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
441
|
+
* @public
|
|
442
442
|
*/
|
|
443
443
|
dbInstanceType?: DbInstanceType;
|
|
444
444
|
/**
|
|
445
|
-
* @public
|
|
446
445
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
446
|
+
* @public
|
|
447
447
|
*/
|
|
448
448
|
dbStorageType?: DbStorageType;
|
|
449
449
|
/**
|
|
450
|
-
* @public
|
|
451
450
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
451
|
+
* @public
|
|
452
452
|
*/
|
|
453
453
|
allocatedStorage?: number;
|
|
454
454
|
/**
|
|
455
|
-
* @public
|
|
456
455
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
456
|
+
* @public
|
|
457
457
|
*/
|
|
458
458
|
deploymentType?: DeploymentType;
|
|
459
459
|
/**
|
|
460
|
-
* @public
|
|
461
460
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
461
|
+
* @public
|
|
462
462
|
*/
|
|
463
463
|
vpcSubnetIds: string[] | undefined;
|
|
464
464
|
/**
|
|
465
|
-
* @public
|
|
466
465
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
466
|
+
* @public
|
|
467
467
|
*/
|
|
468
468
|
publiclyAccessible?: boolean;
|
|
469
469
|
/**
|
|
470
|
-
* @public
|
|
471
470
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
471
|
+
* @public
|
|
472
472
|
*/
|
|
473
473
|
vpcSecurityGroupIds?: string[];
|
|
474
474
|
/**
|
|
475
|
-
* @public
|
|
476
475
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
476
|
+
* @public
|
|
477
477
|
*/
|
|
478
478
|
dbParameterGroupIdentifier?: string;
|
|
479
479
|
/**
|
|
480
|
-
* @public
|
|
481
480
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
481
|
+
* @public
|
|
482
482
|
*/
|
|
483
483
|
availabilityZone?: string;
|
|
484
484
|
/**
|
|
485
|
-
* @public
|
|
486
485
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
486
|
+
* @public
|
|
487
487
|
*/
|
|
488
488
|
secondaryAvailabilityZone?: string;
|
|
489
489
|
/**
|
|
490
|
-
* @public
|
|
491
490
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
491
|
+
* @public
|
|
492
492
|
*/
|
|
493
493
|
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
494
494
|
/**
|
|
495
|
-
* @public
|
|
496
495
|
* <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>
|
|
496
|
+
* @public
|
|
497
497
|
*/
|
|
498
498
|
influxAuthParametersSecretArn?: string;
|
|
499
499
|
}
|
|
@@ -502,8 +502,8 @@ export interface DeleteDbInstanceOutput {
|
|
|
502
502
|
*/
|
|
503
503
|
export interface GetDbInstanceInput {
|
|
504
504
|
/**
|
|
505
|
-
* @public
|
|
506
505
|
* <p>The id of the DB instance.</p>
|
|
506
|
+
* @public
|
|
507
507
|
*/
|
|
508
508
|
identifier: string | undefined;
|
|
509
509
|
}
|
|
@@ -512,88 +512,88 @@ export interface GetDbInstanceInput {
|
|
|
512
512
|
*/
|
|
513
513
|
export interface GetDbInstanceOutput {
|
|
514
514
|
/**
|
|
515
|
-
* @public
|
|
516
515
|
* <p>A service-generated unique identifier.</p>
|
|
516
|
+
* @public
|
|
517
517
|
*/
|
|
518
518
|
id: string | undefined;
|
|
519
519
|
/**
|
|
520
|
-
* @public
|
|
521
520
|
* <p>The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.</p>
|
|
521
|
+
* @public
|
|
522
522
|
*/
|
|
523
523
|
name: string | undefined;
|
|
524
524
|
/**
|
|
525
|
-
* @public
|
|
526
525
|
* <p>The Amazon Resource Name (ARN) of the DB instance.</p>
|
|
526
|
+
* @public
|
|
527
527
|
*/
|
|
528
528
|
arn: string | undefined;
|
|
529
529
|
/**
|
|
530
|
-
* @public
|
|
531
530
|
* <p>The status of the DB instance.</p>
|
|
531
|
+
* @public
|
|
532
532
|
*/
|
|
533
533
|
status?: Status;
|
|
534
534
|
/**
|
|
535
|
-
* @public
|
|
536
535
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
536
|
+
* @public
|
|
537
537
|
*/
|
|
538
538
|
endpoint?: string;
|
|
539
539
|
/**
|
|
540
|
-
* @public
|
|
541
540
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
541
|
+
* @public
|
|
542
542
|
*/
|
|
543
543
|
dbInstanceType?: DbInstanceType;
|
|
544
544
|
/**
|
|
545
|
-
* @public
|
|
546
545
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
546
|
+
* @public
|
|
547
547
|
*/
|
|
548
548
|
dbStorageType?: DbStorageType;
|
|
549
549
|
/**
|
|
550
|
-
* @public
|
|
551
550
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
551
|
+
* @public
|
|
552
552
|
*/
|
|
553
553
|
allocatedStorage?: number;
|
|
554
554
|
/**
|
|
555
|
-
* @public
|
|
556
555
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
556
|
+
* @public
|
|
557
557
|
*/
|
|
558
558
|
deploymentType?: DeploymentType;
|
|
559
559
|
/**
|
|
560
|
-
* @public
|
|
561
560
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
561
|
+
* @public
|
|
562
562
|
*/
|
|
563
563
|
vpcSubnetIds: string[] | undefined;
|
|
564
564
|
/**
|
|
565
|
-
* @public
|
|
566
565
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
566
|
+
* @public
|
|
567
567
|
*/
|
|
568
568
|
publiclyAccessible?: boolean;
|
|
569
569
|
/**
|
|
570
|
-
* @public
|
|
571
570
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
571
|
+
* @public
|
|
572
572
|
*/
|
|
573
573
|
vpcSecurityGroupIds?: string[];
|
|
574
574
|
/**
|
|
575
|
-
* @public
|
|
576
575
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
576
|
+
* @public
|
|
577
577
|
*/
|
|
578
578
|
dbParameterGroupIdentifier?: string;
|
|
579
579
|
/**
|
|
580
|
-
* @public
|
|
581
580
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
581
|
+
* @public
|
|
582
582
|
*/
|
|
583
583
|
availabilityZone?: string;
|
|
584
584
|
/**
|
|
585
|
-
* @public
|
|
586
585
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
586
|
+
* @public
|
|
587
587
|
*/
|
|
588
588
|
secondaryAvailabilityZone?: string;
|
|
589
589
|
/**
|
|
590
|
-
* @public
|
|
591
590
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
591
|
+
* @public
|
|
592
592
|
*/
|
|
593
593
|
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
594
594
|
/**
|
|
595
|
-
* @public
|
|
596
595
|
* <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>
|
|
596
|
+
* @public
|
|
597
597
|
*/
|
|
598
598
|
influxAuthParametersSecretArn?: string;
|
|
599
599
|
}
|
|
@@ -602,64 +602,64 @@ export interface GetDbInstanceOutput {
|
|
|
602
602
|
*/
|
|
603
603
|
export interface ListDbInstancesInput {
|
|
604
604
|
/**
|
|
605
|
-
* @public
|
|
606
605
|
* <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
606
|
+
* @public
|
|
607
607
|
*/
|
|
608
608
|
nextToken?: string;
|
|
609
609
|
/**
|
|
610
|
-
* @public
|
|
611
610
|
* <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>
|
|
611
|
+
* @public
|
|
612
612
|
*/
|
|
613
613
|
maxResults?: number;
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
|
-
* @public
|
|
617
616
|
* <p>Contains a summary of a DB instance.</p>
|
|
617
|
+
* @public
|
|
618
618
|
*/
|
|
619
619
|
export interface DbInstanceSummary {
|
|
620
620
|
/**
|
|
621
|
-
* @public
|
|
622
621
|
* <p>The service-generated unique identifier of the DB instance.</p>
|
|
622
|
+
* @public
|
|
623
623
|
*/
|
|
624
624
|
id: string | undefined;
|
|
625
625
|
/**
|
|
626
|
-
* @public
|
|
627
626
|
* <p>This customer-supplied name uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and AWS CLI commands.</p>
|
|
627
|
+
* @public
|
|
628
628
|
*/
|
|
629
629
|
name: string | undefined;
|
|
630
630
|
/**
|
|
631
|
-
* @public
|
|
632
631
|
* <p>The Amazon Resource Name (ARN) of the DB instance.</p>
|
|
632
|
+
* @public
|
|
633
633
|
*/
|
|
634
634
|
arn: string | undefined;
|
|
635
635
|
/**
|
|
636
|
-
* @public
|
|
637
636
|
* <p>The status of the DB instance.</p>
|
|
637
|
+
* @public
|
|
638
638
|
*/
|
|
639
639
|
status?: Status;
|
|
640
640
|
/**
|
|
641
|
-
* @public
|
|
642
641
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
642
|
+
* @public
|
|
643
643
|
*/
|
|
644
644
|
endpoint?: string;
|
|
645
645
|
/**
|
|
646
|
-
* @public
|
|
647
646
|
* <p>The Timestream for InfluxDB instance type to run InfluxDB on.</p>
|
|
647
|
+
* @public
|
|
648
648
|
*/
|
|
649
649
|
dbInstanceType?: DbInstanceType;
|
|
650
650
|
/**
|
|
651
|
-
* @public
|
|
652
651
|
* <p>The storage type for your DB instance.</p>
|
|
652
|
+
* @public
|
|
653
653
|
*/
|
|
654
654
|
dbStorageType?: DbStorageType;
|
|
655
655
|
/**
|
|
656
|
-
* @public
|
|
657
656
|
* <p>The amount of storage to allocate for your DbStorageType in GiB (gibibytes).</p>
|
|
657
|
+
* @public
|
|
658
658
|
*/
|
|
659
659
|
allocatedStorage?: number;
|
|
660
660
|
/**
|
|
661
|
-
* @public
|
|
662
661
|
* <p>Single-Instance or with a MultiAZ Standby for High availability.</p>
|
|
662
|
+
* @public
|
|
663
663
|
*/
|
|
664
664
|
deploymentType?: DeploymentType;
|
|
665
665
|
}
|
|
@@ -668,14 +668,14 @@ export interface DbInstanceSummary {
|
|
|
668
668
|
*/
|
|
669
669
|
export interface ListDbInstancesOutput {
|
|
670
670
|
/**
|
|
671
|
-
* @public
|
|
672
671
|
* <p>A list of Timestream for InfluxDB DB instance summaries.</p>
|
|
672
|
+
* @public
|
|
673
673
|
*/
|
|
674
674
|
items: DbInstanceSummary[] | undefined;
|
|
675
675
|
/**
|
|
676
|
-
* @public
|
|
677
676
|
* <p>Token from a previous call of the operation. When this value is provided, the
|
|
678
677
|
* service returns results from where the previous response left off.</p>
|
|
678
|
+
* @public
|
|
679
679
|
*/
|
|
680
680
|
nextToken?: string;
|
|
681
681
|
}
|
|
@@ -684,18 +684,18 @@ export interface ListDbInstancesOutput {
|
|
|
684
684
|
*/
|
|
685
685
|
export interface UpdateDbInstanceInput {
|
|
686
686
|
/**
|
|
687
|
-
* @public
|
|
688
687
|
* <p>The id of the DB instance.</p>
|
|
688
|
+
* @public
|
|
689
689
|
*/
|
|
690
690
|
identifier: string | undefined;
|
|
691
691
|
/**
|
|
692
|
-
* @public
|
|
693
692
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
693
|
+
* @public
|
|
694
694
|
*/
|
|
695
695
|
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
696
696
|
/**
|
|
697
|
-
* @public
|
|
698
697
|
* <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>
|
|
698
|
+
* @public
|
|
699
699
|
*/
|
|
700
700
|
dbParameterGroupIdentifier?: string;
|
|
701
701
|
}
|
|
@@ -704,88 +704,88 @@ export interface UpdateDbInstanceInput {
|
|
|
704
704
|
*/
|
|
705
705
|
export interface UpdateDbInstanceOutput {
|
|
706
706
|
/**
|
|
707
|
-
* @public
|
|
708
707
|
* <p>A service-generated unique identifier.</p>
|
|
708
|
+
* @public
|
|
709
709
|
*/
|
|
710
710
|
id: string | undefined;
|
|
711
711
|
/**
|
|
712
|
-
* @public
|
|
713
712
|
* <p>This customer-supplied name uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and AWS CLI commands.</p>
|
|
713
|
+
* @public
|
|
714
714
|
*/
|
|
715
715
|
name: string | undefined;
|
|
716
716
|
/**
|
|
717
|
-
* @public
|
|
718
717
|
* <p>The Amazon Resource Name (ARN) of the DB instance.</p>
|
|
718
|
+
* @public
|
|
719
719
|
*/
|
|
720
720
|
arn: string | undefined;
|
|
721
721
|
/**
|
|
722
|
-
* @public
|
|
723
722
|
* <p>The status of the DB instance.</p>
|
|
723
|
+
* @public
|
|
724
724
|
*/
|
|
725
725
|
status?: Status;
|
|
726
726
|
/**
|
|
727
|
-
* @public
|
|
728
727
|
* <p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>
|
|
728
|
+
* @public
|
|
729
729
|
*/
|
|
730
730
|
endpoint?: string;
|
|
731
731
|
/**
|
|
732
|
-
* @public
|
|
733
732
|
* <p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>
|
|
733
|
+
* @public
|
|
734
734
|
*/
|
|
735
735
|
dbInstanceType?: DbInstanceType;
|
|
736
736
|
/**
|
|
737
|
-
* @public
|
|
738
737
|
* <p>The Timestream for InfluxDB DB storage type that InfluxDB stores data on.</p>
|
|
738
|
+
* @public
|
|
739
739
|
*/
|
|
740
740
|
dbStorageType?: DbStorageType;
|
|
741
741
|
/**
|
|
742
|
-
* @public
|
|
743
742
|
* <p>The amount of storage allocated for your DB storage type (in gibibytes).</p>
|
|
743
|
+
* @public
|
|
744
744
|
*/
|
|
745
745
|
allocatedStorage?: number;
|
|
746
746
|
/**
|
|
747
|
-
* @public
|
|
748
747
|
* <p>Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.</p>
|
|
748
|
+
* @public
|
|
749
749
|
*/
|
|
750
750
|
deploymentType?: DeploymentType;
|
|
751
751
|
/**
|
|
752
|
-
* @public
|
|
753
752
|
* <p>A list of VPC subnet IDs associated with the DB instance.</p>
|
|
753
|
+
* @public
|
|
754
754
|
*/
|
|
755
755
|
vpcSubnetIds: string[] | undefined;
|
|
756
756
|
/**
|
|
757
|
-
* @public
|
|
758
757
|
* <p>Indicates if the DB instance has a public IP to facilitate access.</p>
|
|
758
|
+
* @public
|
|
759
759
|
*/
|
|
760
760
|
publiclyAccessible?: boolean;
|
|
761
761
|
/**
|
|
762
|
-
* @public
|
|
763
762
|
* <p>A list of VPC security group IDs associated with the DB instance.</p>
|
|
763
|
+
* @public
|
|
764
764
|
*/
|
|
765
765
|
vpcSecurityGroupIds?: string[];
|
|
766
766
|
/**
|
|
767
|
-
* @public
|
|
768
767
|
* <p>The id of the DB parameter group assigned to your DB instance.</p>
|
|
768
|
+
* @public
|
|
769
769
|
*/
|
|
770
770
|
dbParameterGroupIdentifier?: string;
|
|
771
771
|
/**
|
|
772
|
-
* @public
|
|
773
772
|
* <p>The Availability Zone in which the DB instance resides.</p>
|
|
773
|
+
* @public
|
|
774
774
|
*/
|
|
775
775
|
availabilityZone?: string;
|
|
776
776
|
/**
|
|
777
|
-
* @public
|
|
778
777
|
* <p>The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.</p>
|
|
778
|
+
* @public
|
|
779
779
|
*/
|
|
780
780
|
secondaryAvailabilityZone?: string;
|
|
781
781
|
/**
|
|
782
|
-
* @public
|
|
783
782
|
* <p>Configuration for sending InfluxDB engine logs to send to specified S3 bucket.</p>
|
|
783
|
+
* @public
|
|
784
784
|
*/
|
|
785
785
|
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
786
786
|
/**
|
|
787
|
-
* @public
|
|
788
787
|
* <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>
|
|
788
|
+
* @public
|
|
789
789
|
*/
|
|
790
790
|
influxAuthParametersSecretArn?: string;
|
|
791
791
|
}
|
|
@@ -815,55 +815,55 @@ export declare const TracingType: {
|
|
|
815
815
|
*/
|
|
816
816
|
export type TracingType = (typeof TracingType)[keyof typeof TracingType];
|
|
817
817
|
/**
|
|
818
|
-
* @public
|
|
819
818
|
* <p>All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.</p>
|
|
819
|
+
* @public
|
|
820
820
|
*/
|
|
821
821
|
export interface InfluxDBv2Parameters {
|
|
822
822
|
/**
|
|
823
|
-
* @public
|
|
824
823
|
* <p>Include option to show detailed logs for Flux queries.</p>
|
|
825
824
|
* <p>Default: false</p>
|
|
825
|
+
* @public
|
|
826
826
|
*/
|
|
827
827
|
fluxLogEnabled?: boolean;
|
|
828
828
|
/**
|
|
829
|
-
* @public
|
|
830
829
|
* <p>Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.</p>
|
|
831
830
|
* <p>Default: info</p>
|
|
831
|
+
* @public
|
|
832
832
|
*/
|
|
833
833
|
logLevel?: LogLevel;
|
|
834
834
|
/**
|
|
835
|
-
* @public
|
|
836
835
|
* <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
836
|
* <p>Default: false</p>
|
|
837
|
+
* @public
|
|
838
838
|
*/
|
|
839
839
|
noTasks?: boolean;
|
|
840
840
|
/**
|
|
841
|
-
* @public
|
|
842
841
|
* <p>Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.</p>
|
|
843
842
|
* <p>Default: 0</p>
|
|
843
|
+
* @public
|
|
844
844
|
*/
|
|
845
845
|
queryConcurrency?: number;
|
|
846
846
|
/**
|
|
847
|
-
* @public
|
|
848
847
|
* <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
848
|
* <p>Default: 0</p>
|
|
849
|
+
* @public
|
|
850
850
|
*/
|
|
851
851
|
queryQueueSize?: number;
|
|
852
852
|
/**
|
|
853
|
-
* @public
|
|
854
853
|
* <p>Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.</p>
|
|
854
|
+
* @public
|
|
855
855
|
*/
|
|
856
856
|
tracingType?: TracingType;
|
|
857
857
|
/**
|
|
858
|
-
* @public
|
|
859
858
|
* <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
859
|
* <p>Default: false</p>
|
|
860
|
+
* @public
|
|
861
861
|
*/
|
|
862
862
|
metricsDisabled?: boolean;
|
|
863
863
|
}
|
|
864
864
|
/**
|
|
865
|
-
* @public
|
|
866
865
|
* <p>The parameters that comprise the parameter group.</p>
|
|
866
|
+
* @public
|
|
867
867
|
*/
|
|
868
868
|
export type _Parameters = _Parameters.InfluxDBv2Member | _Parameters.$UnknownMember;
|
|
869
869
|
/**
|
|
@@ -871,8 +871,8 @@ export type _Parameters = _Parameters.InfluxDBv2Member | _Parameters.$UnknownMem
|
|
|
871
871
|
*/
|
|
872
872
|
export declare namespace _Parameters {
|
|
873
873
|
/**
|
|
874
|
-
* @public
|
|
875
874
|
* <p>All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.</p>
|
|
875
|
+
* @public
|
|
876
876
|
*/
|
|
877
877
|
interface InfluxDBv2Member {
|
|
878
878
|
InfluxDBv2: InfluxDBv2Parameters;
|
|
@@ -896,23 +896,23 @@ export declare namespace _Parameters {
|
|
|
896
896
|
*/
|
|
897
897
|
export interface CreateDbParameterGroupInput {
|
|
898
898
|
/**
|
|
899
|
-
* @public
|
|
900
899
|
* <p>The name of the DB parameter group. The name must be unique per customer and per region.</p>
|
|
900
|
+
* @public
|
|
901
901
|
*/
|
|
902
902
|
name: string | undefined;
|
|
903
903
|
/**
|
|
904
|
-
* @public
|
|
905
904
|
* <p>A description of the DB parameter group.</p>
|
|
905
|
+
* @public
|
|
906
906
|
*/
|
|
907
907
|
description?: string;
|
|
908
908
|
/**
|
|
909
|
-
* @public
|
|
910
909
|
* <p>A list of the parameters that comprise the DB parameter group.</p>
|
|
910
|
+
* @public
|
|
911
911
|
*/
|
|
912
912
|
parameters?: _Parameters;
|
|
913
913
|
/**
|
|
914
|
-
* @public
|
|
915
914
|
* <p>A list of key-value pairs to associate with the DB parameter group.</p>
|
|
915
|
+
* @public
|
|
916
916
|
*/
|
|
917
917
|
tags?: Record<string, string>;
|
|
918
918
|
}
|
|
@@ -921,28 +921,28 @@ export interface CreateDbParameterGroupInput {
|
|
|
921
921
|
*/
|
|
922
922
|
export interface CreateDbParameterGroupOutput {
|
|
923
923
|
/**
|
|
924
|
-
* @public
|
|
925
924
|
* <p>A service-generated unique identifier.</p>
|
|
925
|
+
* @public
|
|
926
926
|
*/
|
|
927
927
|
id: string | undefined;
|
|
928
928
|
/**
|
|
929
|
-
* @public
|
|
930
929
|
* <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>
|
|
930
|
+
* @public
|
|
931
931
|
*/
|
|
932
932
|
name: string | undefined;
|
|
933
933
|
/**
|
|
934
|
-
* @public
|
|
935
934
|
* <p>The Amazon Resource Name (ARM) of the DB parameter group.</p>
|
|
935
|
+
* @public
|
|
936
936
|
*/
|
|
937
937
|
arn: string | undefined;
|
|
938
938
|
/**
|
|
939
|
-
* @public
|
|
940
939
|
* <p>The description of the DB parameter group.</p>
|
|
940
|
+
* @public
|
|
941
941
|
*/
|
|
942
942
|
description?: string;
|
|
943
943
|
/**
|
|
944
|
-
* @public
|
|
945
944
|
* <p>A list of the parameters that comprise the DB parameter group.</p>
|
|
945
|
+
* @public
|
|
946
946
|
*/
|
|
947
947
|
parameters?: _Parameters;
|
|
948
948
|
}
|
|
@@ -951,8 +951,8 @@ export interface CreateDbParameterGroupOutput {
|
|
|
951
951
|
*/
|
|
952
952
|
export interface GetDbParameterGroupInput {
|
|
953
953
|
/**
|
|
954
|
-
* @public
|
|
955
954
|
* <p>The id of the DB parameter group.</p>
|
|
955
|
+
* @public
|
|
956
956
|
*/
|
|
957
957
|
identifier: string | undefined;
|
|
958
958
|
}
|
|
@@ -961,28 +961,28 @@ export interface GetDbParameterGroupInput {
|
|
|
961
961
|
*/
|
|
962
962
|
export interface GetDbParameterGroupOutput {
|
|
963
963
|
/**
|
|
964
|
-
* @public
|
|
965
964
|
* <p>A service-generated unique identifier.</p>
|
|
965
|
+
* @public
|
|
966
966
|
*/
|
|
967
967
|
id: string | undefined;
|
|
968
968
|
/**
|
|
969
|
-
* @public
|
|
970
969
|
* <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>
|
|
970
|
+
* @public
|
|
971
971
|
*/
|
|
972
972
|
name: string | undefined;
|
|
973
973
|
/**
|
|
974
|
-
* @public
|
|
975
974
|
* <p>The Amazon Resource Name (ARN) of the DB parameter group.</p>
|
|
975
|
+
* @public
|
|
976
976
|
*/
|
|
977
977
|
arn: string | undefined;
|
|
978
978
|
/**
|
|
979
|
-
* @public
|
|
980
979
|
* <p>A description of the DB parameter group.</p>
|
|
980
|
+
* @public
|
|
981
981
|
*/
|
|
982
982
|
description?: string;
|
|
983
983
|
/**
|
|
984
|
-
* @public
|
|
985
984
|
* <p>The parameters that comprise the DB parameter group.</p>
|
|
985
|
+
* @public
|
|
986
986
|
*/
|
|
987
987
|
parameters?: _Parameters;
|
|
988
988
|
}
|
|
@@ -991,39 +991,39 @@ export interface GetDbParameterGroupOutput {
|
|
|
991
991
|
*/
|
|
992
992
|
export interface ListDbParameterGroupsInput {
|
|
993
993
|
/**
|
|
994
|
-
* @public
|
|
995
994
|
* <p>The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.</p>
|
|
995
|
+
* @public
|
|
996
996
|
*/
|
|
997
997
|
nextToken?: string;
|
|
998
998
|
/**
|
|
999
|
-
* @public
|
|
1000
999
|
* <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>
|
|
1000
|
+
* @public
|
|
1001
1001
|
*/
|
|
1002
1002
|
maxResults?: number;
|
|
1003
1003
|
}
|
|
1004
1004
|
/**
|
|
1005
|
-
* @public
|
|
1006
1005
|
* <p>Contains a summary of a DB parameter group.</p>
|
|
1006
|
+
* @public
|
|
1007
1007
|
*/
|
|
1008
1008
|
export interface DbParameterGroupSummary {
|
|
1009
1009
|
/**
|
|
1010
|
-
* @public
|
|
1011
1010
|
* <p>A service-generated unique identifier.</p>
|
|
1011
|
+
* @public
|
|
1012
1012
|
*/
|
|
1013
1013
|
id: string | undefined;
|
|
1014
1014
|
/**
|
|
1015
|
-
* @public
|
|
1016
1015
|
* <p>This customer-supplied name uniquely identifies the parameter group.</p>
|
|
1016
|
+
* @public
|
|
1017
1017
|
*/
|
|
1018
1018
|
name: string | undefined;
|
|
1019
1019
|
/**
|
|
1020
|
-
* @public
|
|
1021
1020
|
* <p>The Amazon Resource Name (ARN) of the DB parameter group.</p>
|
|
1021
|
+
* @public
|
|
1022
1022
|
*/
|
|
1023
1023
|
arn: string | undefined;
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* <p>A description of the DB parameter group.</p>
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
description?: string;
|
|
1029
1029
|
}
|
|
@@ -1032,14 +1032,14 @@ export interface DbParameterGroupSummary {
|
|
|
1032
1032
|
*/
|
|
1033
1033
|
export interface ListDbParameterGroupsOutput {
|
|
1034
1034
|
/**
|
|
1035
|
-
* @public
|
|
1036
1035
|
* <p>A list of Timestream for InfluxDB DB parameter group summaries.</p>
|
|
1036
|
+
* @public
|
|
1037
1037
|
*/
|
|
1038
1038
|
items: DbParameterGroupSummary[] | undefined;
|
|
1039
1039
|
/**
|
|
1040
|
-
* @public
|
|
1041
1040
|
* <p>Token from a previous call of the operation. When this value is provided, the
|
|
1042
1041
|
* service returns results from where the previous response left off.</p>
|
|
1042
|
+
* @public
|
|
1043
1043
|
*/
|
|
1044
1044
|
nextToken?: string;
|
|
1045
1045
|
}
|
|
@@ -1048,8 +1048,8 @@ export interface ListDbParameterGroupsOutput {
|
|
|
1048
1048
|
*/
|
|
1049
1049
|
export interface ListTagsForResourceRequest {
|
|
1050
1050
|
/**
|
|
1051
|
-
* @public
|
|
1052
1051
|
* <p>The Amazon Resource Name (ARN) of the tagged resource.</p>
|
|
1052
|
+
* @public
|
|
1053
1053
|
*/
|
|
1054
1054
|
resourceArn: string | undefined;
|
|
1055
1055
|
}
|
|
@@ -1058,8 +1058,8 @@ export interface ListTagsForResourceRequest {
|
|
|
1058
1058
|
*/
|
|
1059
1059
|
export interface ListTagsForResourceResponse {
|
|
1060
1060
|
/**
|
|
1061
|
-
* @public
|
|
1062
1061
|
* <p>A list of tags used to categorize and track resources.</p>
|
|
1062
|
+
* @public
|
|
1063
1063
|
*/
|
|
1064
1064
|
tags?: Record<string, string>;
|
|
1065
1065
|
}
|
|
@@ -1068,13 +1068,13 @@ export interface ListTagsForResourceResponse {
|
|
|
1068
1068
|
*/
|
|
1069
1069
|
export interface TagResourceRequest {
|
|
1070
1070
|
/**
|
|
1071
|
-
* @public
|
|
1072
1071
|
* <p>The Amazon Resource Name (ARN) of the tagged resource.</p>
|
|
1072
|
+
* @public
|
|
1073
1073
|
*/
|
|
1074
1074
|
resourceArn: string | undefined;
|
|
1075
1075
|
/**
|
|
1076
|
-
* @public
|
|
1077
1076
|
* <p>A list of tags used to categorize and track resources.</p>
|
|
1077
|
+
* @public
|
|
1078
1078
|
*/
|
|
1079
1079
|
tags: Record<string, string> | undefined;
|
|
1080
1080
|
}
|
|
@@ -1083,13 +1083,13 @@ export interface TagResourceRequest {
|
|
|
1083
1083
|
*/
|
|
1084
1084
|
export interface UntagResourceRequest {
|
|
1085
1085
|
/**
|
|
1086
|
-
* @public
|
|
1087
1086
|
* <p>The Amazon Resource Name (ARN) of the tagged resource.</p>
|
|
1087
|
+
* @public
|
|
1088
1088
|
*/
|
|
1089
1089
|
resourceArn: string | undefined;
|
|
1090
1090
|
/**
|
|
1091
|
-
* @public
|
|
1092
1091
|
* <p>The keys used to identify the tags.</p>
|
|
1092
|
+
* @public
|
|
1093
1093
|
*/
|
|
1094
1094
|
tagKeys: string[] | undefined;
|
|
1095
1095
|
}
|