types-boto3-timestream-influxdb 1.35.71__py3-none-any.whl

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.

Potentially problematic release.


This version of types-boto3-timestream-influxdb might be problematic. Click here for more details.

@@ -0,0 +1,388 @@
1
+ """
2
+ Type annotations for timestream-influxdb service type definitions.
3
+
4
+ [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_timestream_influxdb.type_defs import ResponseMetadataTypeDef
10
+
11
+ data: ResponseMetadataTypeDef = ...
12
+ ```
13
+
14
+ Copyright 2024 Vlad Emelianov
15
+ """
16
+
17
+ import sys
18
+ from typing import Dict, List, Mapping, Sequence
19
+
20
+ from .literals import (
21
+ DbInstanceTypeType,
22
+ DbStorageTypeType,
23
+ DeploymentTypeType,
24
+ DurationTypeType,
25
+ LogLevelType,
26
+ StatusType,
27
+ TracingTypeType,
28
+ )
29
+
30
+ if sys.version_info >= (3, 12):
31
+ from typing import NotRequired, TypedDict
32
+ else:
33
+ from typing_extensions import NotRequired, TypedDict
34
+
35
+
36
+ __all__ = (
37
+ "CreateDbInstanceInputRequestTypeDef",
38
+ "CreateDbInstanceOutputTypeDef",
39
+ "CreateDbParameterGroupInputRequestTypeDef",
40
+ "CreateDbParameterGroupOutputTypeDef",
41
+ "DbInstanceSummaryTypeDef",
42
+ "DbParameterGroupSummaryTypeDef",
43
+ "DeleteDbInstanceInputRequestTypeDef",
44
+ "DeleteDbInstanceOutputTypeDef",
45
+ "DurationTypeDef",
46
+ "EmptyResponseMetadataTypeDef",
47
+ "GetDbInstanceInputRequestTypeDef",
48
+ "GetDbInstanceOutputTypeDef",
49
+ "GetDbParameterGroupInputRequestTypeDef",
50
+ "GetDbParameterGroupOutputTypeDef",
51
+ "InfluxDBv2ParametersTypeDef",
52
+ "ListDbInstancesInputListDbInstancesPaginateTypeDef",
53
+ "ListDbInstancesInputRequestTypeDef",
54
+ "ListDbInstancesOutputTypeDef",
55
+ "ListDbParameterGroupsInputListDbParameterGroupsPaginateTypeDef",
56
+ "ListDbParameterGroupsInputRequestTypeDef",
57
+ "ListDbParameterGroupsOutputTypeDef",
58
+ "ListTagsForResourceRequestRequestTypeDef",
59
+ "ListTagsForResourceResponseTypeDef",
60
+ "LogDeliveryConfigurationTypeDef",
61
+ "PaginatorConfigTypeDef",
62
+ "ParametersTypeDef",
63
+ "ResponseMetadataTypeDef",
64
+ "S3ConfigurationTypeDef",
65
+ "TagResourceRequestRequestTypeDef",
66
+ "UntagResourceRequestRequestTypeDef",
67
+ "UpdateDbInstanceInputRequestTypeDef",
68
+ "UpdateDbInstanceOutputTypeDef",
69
+ )
70
+
71
+
72
+ class ResponseMetadataTypeDef(TypedDict):
73
+ RequestId: str
74
+ HTTPStatusCode: int
75
+ HTTPHeaders: Dict[str, str]
76
+ RetryAttempts: int
77
+ HostId: NotRequired[str]
78
+
79
+
80
+ DbInstanceSummaryTypeDef = TypedDict(
81
+ "DbInstanceSummaryTypeDef",
82
+ {
83
+ "id": str,
84
+ "name": str,
85
+ "arn": str,
86
+ "status": NotRequired[StatusType],
87
+ "endpoint": NotRequired[str],
88
+ "port": NotRequired[int],
89
+ "dbInstanceType": NotRequired[DbInstanceTypeType],
90
+ "dbStorageType": NotRequired[DbStorageTypeType],
91
+ "allocatedStorage": NotRequired[int],
92
+ "deploymentType": NotRequired[DeploymentTypeType],
93
+ },
94
+ )
95
+ DbParameterGroupSummaryTypeDef = TypedDict(
96
+ "DbParameterGroupSummaryTypeDef",
97
+ {
98
+ "id": str,
99
+ "name": str,
100
+ "arn": str,
101
+ "description": NotRequired[str],
102
+ },
103
+ )
104
+
105
+
106
+ class DeleteDbInstanceInputRequestTypeDef(TypedDict):
107
+ identifier: str
108
+
109
+
110
+ class DurationTypeDef(TypedDict):
111
+ durationType: DurationTypeType
112
+ value: int
113
+
114
+
115
+ class GetDbInstanceInputRequestTypeDef(TypedDict):
116
+ identifier: str
117
+
118
+
119
+ class GetDbParameterGroupInputRequestTypeDef(TypedDict):
120
+ identifier: str
121
+
122
+
123
+ class PaginatorConfigTypeDef(TypedDict):
124
+ MaxItems: NotRequired[int]
125
+ PageSize: NotRequired[int]
126
+ StartingToken: NotRequired[str]
127
+
128
+
129
+ class ListDbInstancesInputRequestTypeDef(TypedDict):
130
+ nextToken: NotRequired[str]
131
+ maxResults: NotRequired[int]
132
+
133
+
134
+ class ListDbParameterGroupsInputRequestTypeDef(TypedDict):
135
+ nextToken: NotRequired[str]
136
+ maxResults: NotRequired[int]
137
+
138
+
139
+ class ListTagsForResourceRequestRequestTypeDef(TypedDict):
140
+ resourceArn: str
141
+
142
+
143
+ class S3ConfigurationTypeDef(TypedDict):
144
+ bucketName: str
145
+ enabled: bool
146
+
147
+
148
+ class TagResourceRequestRequestTypeDef(TypedDict):
149
+ resourceArn: str
150
+ tags: Mapping[str, str]
151
+
152
+
153
+ class UntagResourceRequestRequestTypeDef(TypedDict):
154
+ resourceArn: str
155
+ tagKeys: Sequence[str]
156
+
157
+
158
+ class EmptyResponseMetadataTypeDef(TypedDict):
159
+ ResponseMetadata: ResponseMetadataTypeDef
160
+
161
+
162
+ class ListTagsForResourceResponseTypeDef(TypedDict):
163
+ tags: Dict[str, str]
164
+ ResponseMetadata: ResponseMetadataTypeDef
165
+
166
+
167
+ class ListDbInstancesOutputTypeDef(TypedDict):
168
+ items: List[DbInstanceSummaryTypeDef]
169
+ ResponseMetadata: ResponseMetadataTypeDef
170
+ nextToken: NotRequired[str]
171
+
172
+
173
+ class ListDbParameterGroupsOutputTypeDef(TypedDict):
174
+ items: List[DbParameterGroupSummaryTypeDef]
175
+ ResponseMetadata: ResponseMetadataTypeDef
176
+ nextToken: NotRequired[str]
177
+
178
+
179
+ class InfluxDBv2ParametersTypeDef(TypedDict):
180
+ fluxLogEnabled: NotRequired[bool]
181
+ logLevel: NotRequired[LogLevelType]
182
+ noTasks: NotRequired[bool]
183
+ queryConcurrency: NotRequired[int]
184
+ queryQueueSize: NotRequired[int]
185
+ tracingType: NotRequired[TracingTypeType]
186
+ metricsDisabled: NotRequired[bool]
187
+ httpIdleTimeout: NotRequired[DurationTypeDef]
188
+ httpReadHeaderTimeout: NotRequired[DurationTypeDef]
189
+ httpReadTimeout: NotRequired[DurationTypeDef]
190
+ httpWriteTimeout: NotRequired[DurationTypeDef]
191
+ influxqlMaxSelectBuckets: NotRequired[int]
192
+ influxqlMaxSelectPoint: NotRequired[int]
193
+ influxqlMaxSelectSeries: NotRequired[int]
194
+ pprofDisabled: NotRequired[bool]
195
+ queryInitialMemoryBytes: NotRequired[int]
196
+ queryMaxMemoryBytes: NotRequired[int]
197
+ queryMemoryBytes: NotRequired[int]
198
+ sessionLength: NotRequired[int]
199
+ sessionRenewDisabled: NotRequired[bool]
200
+ storageCacheMaxMemorySize: NotRequired[int]
201
+ storageCacheSnapshotMemorySize: NotRequired[int]
202
+ storageCacheSnapshotWriteColdDuration: NotRequired[DurationTypeDef]
203
+ storageCompactFullWriteColdDuration: NotRequired[DurationTypeDef]
204
+ storageCompactThroughputBurst: NotRequired[int]
205
+ storageMaxConcurrentCompactions: NotRequired[int]
206
+ storageMaxIndexLogFileSize: NotRequired[int]
207
+ storageNoValidateFieldSize: NotRequired[bool]
208
+ storageRetentionCheckInterval: NotRequired[DurationTypeDef]
209
+ storageSeriesFileMaxConcurrentSnapshotCompactions: NotRequired[int]
210
+ storageSeriesIdSetCacheSize: NotRequired[int]
211
+ storageWalMaxConcurrentWrites: NotRequired[int]
212
+ storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
213
+ uiDisabled: NotRequired[bool]
214
+
215
+
216
+ class ListDbInstancesInputListDbInstancesPaginateTypeDef(TypedDict):
217
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
218
+
219
+
220
+ class ListDbParameterGroupsInputListDbParameterGroupsPaginateTypeDef(TypedDict):
221
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
222
+
223
+
224
+ class LogDeliveryConfigurationTypeDef(TypedDict):
225
+ s3Configuration: S3ConfigurationTypeDef
226
+
227
+
228
+ class ParametersTypeDef(TypedDict):
229
+ InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
230
+
231
+
232
+ class CreateDbInstanceInputRequestTypeDef(TypedDict):
233
+ name: str
234
+ password: str
235
+ dbInstanceType: DbInstanceTypeType
236
+ vpcSubnetIds: Sequence[str]
237
+ vpcSecurityGroupIds: Sequence[str]
238
+ allocatedStorage: int
239
+ username: NotRequired[str]
240
+ organization: NotRequired[str]
241
+ bucket: NotRequired[str]
242
+ publiclyAccessible: NotRequired[bool]
243
+ dbStorageType: NotRequired[DbStorageTypeType]
244
+ dbParameterGroupIdentifier: NotRequired[str]
245
+ deploymentType: NotRequired[DeploymentTypeType]
246
+ logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
247
+ tags: NotRequired[Mapping[str, str]]
248
+ port: NotRequired[int]
249
+
250
+
251
+ CreateDbInstanceOutputTypeDef = TypedDict(
252
+ "CreateDbInstanceOutputTypeDef",
253
+ {
254
+ "id": str,
255
+ "name": str,
256
+ "arn": str,
257
+ "status": StatusType,
258
+ "endpoint": str,
259
+ "port": int,
260
+ "dbInstanceType": DbInstanceTypeType,
261
+ "dbStorageType": DbStorageTypeType,
262
+ "allocatedStorage": int,
263
+ "deploymentType": DeploymentTypeType,
264
+ "vpcSubnetIds": List[str],
265
+ "publiclyAccessible": bool,
266
+ "vpcSecurityGroupIds": List[str],
267
+ "dbParameterGroupIdentifier": str,
268
+ "availabilityZone": str,
269
+ "secondaryAvailabilityZone": str,
270
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
271
+ "influxAuthParametersSecretArn": str,
272
+ "ResponseMetadata": ResponseMetadataTypeDef,
273
+ },
274
+ )
275
+ DeleteDbInstanceOutputTypeDef = TypedDict(
276
+ "DeleteDbInstanceOutputTypeDef",
277
+ {
278
+ "id": str,
279
+ "name": str,
280
+ "arn": str,
281
+ "status": StatusType,
282
+ "endpoint": str,
283
+ "port": int,
284
+ "dbInstanceType": DbInstanceTypeType,
285
+ "dbStorageType": DbStorageTypeType,
286
+ "allocatedStorage": int,
287
+ "deploymentType": DeploymentTypeType,
288
+ "vpcSubnetIds": List[str],
289
+ "publiclyAccessible": bool,
290
+ "vpcSecurityGroupIds": List[str],
291
+ "dbParameterGroupIdentifier": str,
292
+ "availabilityZone": str,
293
+ "secondaryAvailabilityZone": str,
294
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
295
+ "influxAuthParametersSecretArn": str,
296
+ "ResponseMetadata": ResponseMetadataTypeDef,
297
+ },
298
+ )
299
+ GetDbInstanceOutputTypeDef = TypedDict(
300
+ "GetDbInstanceOutputTypeDef",
301
+ {
302
+ "id": str,
303
+ "name": str,
304
+ "arn": str,
305
+ "status": StatusType,
306
+ "endpoint": str,
307
+ "port": int,
308
+ "dbInstanceType": DbInstanceTypeType,
309
+ "dbStorageType": DbStorageTypeType,
310
+ "allocatedStorage": int,
311
+ "deploymentType": DeploymentTypeType,
312
+ "vpcSubnetIds": List[str],
313
+ "publiclyAccessible": bool,
314
+ "vpcSecurityGroupIds": List[str],
315
+ "dbParameterGroupIdentifier": str,
316
+ "availabilityZone": str,
317
+ "secondaryAvailabilityZone": str,
318
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
319
+ "influxAuthParametersSecretArn": str,
320
+ "ResponseMetadata": ResponseMetadataTypeDef,
321
+ },
322
+ )
323
+
324
+
325
+ class UpdateDbInstanceInputRequestTypeDef(TypedDict):
326
+ identifier: str
327
+ logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
328
+ dbParameterGroupIdentifier: NotRequired[str]
329
+ port: NotRequired[int]
330
+ dbInstanceType: NotRequired[DbInstanceTypeType]
331
+ deploymentType: NotRequired[DeploymentTypeType]
332
+
333
+
334
+ UpdateDbInstanceOutputTypeDef = TypedDict(
335
+ "UpdateDbInstanceOutputTypeDef",
336
+ {
337
+ "id": str,
338
+ "name": str,
339
+ "arn": str,
340
+ "status": StatusType,
341
+ "endpoint": str,
342
+ "port": int,
343
+ "dbInstanceType": DbInstanceTypeType,
344
+ "dbStorageType": DbStorageTypeType,
345
+ "allocatedStorage": int,
346
+ "deploymentType": DeploymentTypeType,
347
+ "vpcSubnetIds": List[str],
348
+ "publiclyAccessible": bool,
349
+ "vpcSecurityGroupIds": List[str],
350
+ "dbParameterGroupIdentifier": str,
351
+ "availabilityZone": str,
352
+ "secondaryAvailabilityZone": str,
353
+ "logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
354
+ "influxAuthParametersSecretArn": str,
355
+ "ResponseMetadata": ResponseMetadataTypeDef,
356
+ },
357
+ )
358
+
359
+
360
+ class CreateDbParameterGroupInputRequestTypeDef(TypedDict):
361
+ name: str
362
+ description: NotRequired[str]
363
+ parameters: NotRequired[ParametersTypeDef]
364
+ tags: NotRequired[Mapping[str, str]]
365
+
366
+
367
+ CreateDbParameterGroupOutputTypeDef = TypedDict(
368
+ "CreateDbParameterGroupOutputTypeDef",
369
+ {
370
+ "id": str,
371
+ "name": str,
372
+ "arn": str,
373
+ "description": str,
374
+ "parameters": ParametersTypeDef,
375
+ "ResponseMetadata": ResponseMetadataTypeDef,
376
+ },
377
+ )
378
+ GetDbParameterGroupOutputTypeDef = TypedDict(
379
+ "GetDbParameterGroupOutputTypeDef",
380
+ {
381
+ "id": str,
382
+ "name": str,
383
+ "arn": str,
384
+ "description": str,
385
+ "parameters": ParametersTypeDef,
386
+ "ResponseMetadata": ResponseMetadataTypeDef,
387
+ },
388
+ )