types-boto3-timestream-influxdb 1.41.0__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.
- types_boto3_timestream_influxdb/__init__.py +49 -0
- types_boto3_timestream_influxdb/__init__.pyi +48 -0
- types_boto3_timestream_influxdb/__main__.py +43 -0
- types_boto3_timestream_influxdb/client.py +339 -0
- types_boto3_timestream_influxdb/client.pyi +336 -0
- types_boto3_timestream_influxdb/literals.py +514 -0
- types_boto3_timestream_influxdb/literals.pyi +512 -0
- types_boto3_timestream_influxdb/paginator.py +144 -0
- types_boto3_timestream_influxdb/paginator.pyi +131 -0
- types_boto3_timestream_influxdb/py.typed +0 -0
- types_boto3_timestream_influxdb/type_defs.py +687 -0
- types_boto3_timestream_influxdb/type_defs.pyi +642 -0
- types_boto3_timestream_influxdb/version.py +7 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/METADATA +485 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/RECORD +18 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/WHEEL +5 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/licenses/LICENSE +21 -0
- types_boto3_timestream_influxdb-1.41.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for timestream-influxdb service type definitions.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_timestream_influxdb/type_defs/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from types_boto3_timestream_influxdb.type_defs import ResponseMetadataTypeDef
|
|
12
|
+
|
|
13
|
+
data: ResponseMetadataTypeDef = ...
|
|
14
|
+
```
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
21
|
+
|
|
22
|
+
from .literals import (
|
|
23
|
+
ClusterStatusType,
|
|
24
|
+
DataFusionRuntimeTypeType,
|
|
25
|
+
DbInstanceTypeType,
|
|
26
|
+
DbStorageTypeType,
|
|
27
|
+
DeploymentTypeType,
|
|
28
|
+
DurationTypeType,
|
|
29
|
+
EngineTypeType,
|
|
30
|
+
FailoverModeType,
|
|
31
|
+
InstanceModeType,
|
|
32
|
+
LogLevelType,
|
|
33
|
+
NetworkTypeType,
|
|
34
|
+
StatusType,
|
|
35
|
+
TracingTypeType,
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
if sys.version_info >= (3, 12):
|
|
39
|
+
from typing import Literal, NotRequired, TypedDict
|
|
40
|
+
else:
|
|
41
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
42
|
+
|
|
43
|
+
__all__ = (
|
|
44
|
+
"CreateDbClusterInputTypeDef",
|
|
45
|
+
"CreateDbClusterOutputTypeDef",
|
|
46
|
+
"CreateDbInstanceInputTypeDef",
|
|
47
|
+
"CreateDbInstanceOutputTypeDef",
|
|
48
|
+
"CreateDbParameterGroupInputTypeDef",
|
|
49
|
+
"CreateDbParameterGroupOutputTypeDef",
|
|
50
|
+
"DbClusterSummaryTypeDef",
|
|
51
|
+
"DbInstanceForClusterSummaryTypeDef",
|
|
52
|
+
"DbInstanceSummaryTypeDef",
|
|
53
|
+
"DbParameterGroupSummaryTypeDef",
|
|
54
|
+
"DeleteDbClusterInputTypeDef",
|
|
55
|
+
"DeleteDbClusterOutputTypeDef",
|
|
56
|
+
"DeleteDbInstanceInputTypeDef",
|
|
57
|
+
"DeleteDbInstanceOutputTypeDef",
|
|
58
|
+
"DurationTypeDef",
|
|
59
|
+
"EmptyResponseMetadataTypeDef",
|
|
60
|
+
"GetDbClusterInputTypeDef",
|
|
61
|
+
"GetDbClusterOutputTypeDef",
|
|
62
|
+
"GetDbInstanceInputTypeDef",
|
|
63
|
+
"GetDbInstanceOutputTypeDef",
|
|
64
|
+
"GetDbParameterGroupInputTypeDef",
|
|
65
|
+
"GetDbParameterGroupOutputTypeDef",
|
|
66
|
+
"InfluxDBv2ParametersTypeDef",
|
|
67
|
+
"InfluxDBv3CoreParametersTypeDef",
|
|
68
|
+
"InfluxDBv3EnterpriseParametersTypeDef",
|
|
69
|
+
"ListDbClustersInputPaginateTypeDef",
|
|
70
|
+
"ListDbClustersInputTypeDef",
|
|
71
|
+
"ListDbClustersOutputTypeDef",
|
|
72
|
+
"ListDbInstancesForClusterInputPaginateTypeDef",
|
|
73
|
+
"ListDbInstancesForClusterInputTypeDef",
|
|
74
|
+
"ListDbInstancesForClusterOutputTypeDef",
|
|
75
|
+
"ListDbInstancesInputPaginateTypeDef",
|
|
76
|
+
"ListDbInstancesInputTypeDef",
|
|
77
|
+
"ListDbInstancesOutputTypeDef",
|
|
78
|
+
"ListDbParameterGroupsInputPaginateTypeDef",
|
|
79
|
+
"ListDbParameterGroupsInputTypeDef",
|
|
80
|
+
"ListDbParameterGroupsOutputTypeDef",
|
|
81
|
+
"ListTagsForResourceRequestTypeDef",
|
|
82
|
+
"ListTagsForResourceResponseTypeDef",
|
|
83
|
+
"LogDeliveryConfigurationTypeDef",
|
|
84
|
+
"PaginatorConfigTypeDef",
|
|
85
|
+
"ParametersTypeDef",
|
|
86
|
+
"PercentOrAbsoluteLongTypeDef",
|
|
87
|
+
"ResponseMetadataTypeDef",
|
|
88
|
+
"S3ConfigurationTypeDef",
|
|
89
|
+
"TagResourceRequestTypeDef",
|
|
90
|
+
"UntagResourceRequestTypeDef",
|
|
91
|
+
"UpdateDbClusterInputTypeDef",
|
|
92
|
+
"UpdateDbClusterOutputTypeDef",
|
|
93
|
+
"UpdateDbInstanceInputTypeDef",
|
|
94
|
+
"UpdateDbInstanceOutputTypeDef",
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
98
|
+
RequestId: str
|
|
99
|
+
HTTPStatusCode: int
|
|
100
|
+
HTTPHeaders: dict[str, str]
|
|
101
|
+
RetryAttempts: int
|
|
102
|
+
HostId: NotRequired[str]
|
|
103
|
+
|
|
104
|
+
DbClusterSummaryTypeDef = TypedDict(
|
|
105
|
+
"DbClusterSummaryTypeDef",
|
|
106
|
+
{
|
|
107
|
+
"id": str,
|
|
108
|
+
"name": str,
|
|
109
|
+
"arn": str,
|
|
110
|
+
"status": NotRequired[ClusterStatusType],
|
|
111
|
+
"endpoint": NotRequired[str],
|
|
112
|
+
"readerEndpoint": NotRequired[str],
|
|
113
|
+
"port": NotRequired[int],
|
|
114
|
+
"deploymentType": NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]],
|
|
115
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
116
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
117
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
118
|
+
"allocatedStorage": NotRequired[int],
|
|
119
|
+
"engineType": NotRequired[EngineTypeType],
|
|
120
|
+
},
|
|
121
|
+
)
|
|
122
|
+
DbInstanceForClusterSummaryTypeDef = TypedDict(
|
|
123
|
+
"DbInstanceForClusterSummaryTypeDef",
|
|
124
|
+
{
|
|
125
|
+
"id": str,
|
|
126
|
+
"name": str,
|
|
127
|
+
"arn": str,
|
|
128
|
+
"status": NotRequired[StatusType],
|
|
129
|
+
"endpoint": NotRequired[str],
|
|
130
|
+
"port": NotRequired[int],
|
|
131
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
132
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
133
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
134
|
+
"allocatedStorage": NotRequired[int],
|
|
135
|
+
"deploymentType": NotRequired[DeploymentTypeType],
|
|
136
|
+
"instanceMode": NotRequired[InstanceModeType],
|
|
137
|
+
"instanceModes": NotRequired[list[InstanceModeType]],
|
|
138
|
+
},
|
|
139
|
+
)
|
|
140
|
+
DbInstanceSummaryTypeDef = TypedDict(
|
|
141
|
+
"DbInstanceSummaryTypeDef",
|
|
142
|
+
{
|
|
143
|
+
"id": str,
|
|
144
|
+
"name": str,
|
|
145
|
+
"arn": str,
|
|
146
|
+
"status": NotRequired[StatusType],
|
|
147
|
+
"endpoint": NotRequired[str],
|
|
148
|
+
"port": NotRequired[int],
|
|
149
|
+
"networkType": NotRequired[NetworkTypeType],
|
|
150
|
+
"dbInstanceType": NotRequired[DbInstanceTypeType],
|
|
151
|
+
"dbStorageType": NotRequired[DbStorageTypeType],
|
|
152
|
+
"allocatedStorage": NotRequired[int],
|
|
153
|
+
"deploymentType": NotRequired[DeploymentTypeType],
|
|
154
|
+
},
|
|
155
|
+
)
|
|
156
|
+
DbParameterGroupSummaryTypeDef = TypedDict(
|
|
157
|
+
"DbParameterGroupSummaryTypeDef",
|
|
158
|
+
{
|
|
159
|
+
"id": str,
|
|
160
|
+
"name": str,
|
|
161
|
+
"arn": str,
|
|
162
|
+
"description": NotRequired[str],
|
|
163
|
+
},
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
class DeleteDbClusterInputTypeDef(TypedDict):
|
|
167
|
+
dbClusterId: str
|
|
168
|
+
|
|
169
|
+
class DeleteDbInstanceInputTypeDef(TypedDict):
|
|
170
|
+
identifier: str
|
|
171
|
+
|
|
172
|
+
class DurationTypeDef(TypedDict):
|
|
173
|
+
durationType: DurationTypeType
|
|
174
|
+
value: int
|
|
175
|
+
|
|
176
|
+
class GetDbClusterInputTypeDef(TypedDict):
|
|
177
|
+
dbClusterId: str
|
|
178
|
+
|
|
179
|
+
class GetDbInstanceInputTypeDef(TypedDict):
|
|
180
|
+
identifier: str
|
|
181
|
+
|
|
182
|
+
class GetDbParameterGroupInputTypeDef(TypedDict):
|
|
183
|
+
identifier: str
|
|
184
|
+
|
|
185
|
+
class PercentOrAbsoluteLongTypeDef(TypedDict):
|
|
186
|
+
percent: NotRequired[str]
|
|
187
|
+
absolute: NotRequired[int]
|
|
188
|
+
|
|
189
|
+
class PaginatorConfigTypeDef(TypedDict):
|
|
190
|
+
MaxItems: NotRequired[int]
|
|
191
|
+
PageSize: NotRequired[int]
|
|
192
|
+
StartingToken: NotRequired[str]
|
|
193
|
+
|
|
194
|
+
class ListDbClustersInputTypeDef(TypedDict):
|
|
195
|
+
nextToken: NotRequired[str]
|
|
196
|
+
maxResults: NotRequired[int]
|
|
197
|
+
|
|
198
|
+
class ListDbInstancesForClusterInputTypeDef(TypedDict):
|
|
199
|
+
dbClusterId: str
|
|
200
|
+
nextToken: NotRequired[str]
|
|
201
|
+
maxResults: NotRequired[int]
|
|
202
|
+
|
|
203
|
+
class ListDbInstancesInputTypeDef(TypedDict):
|
|
204
|
+
nextToken: NotRequired[str]
|
|
205
|
+
maxResults: NotRequired[int]
|
|
206
|
+
|
|
207
|
+
class ListDbParameterGroupsInputTypeDef(TypedDict):
|
|
208
|
+
nextToken: NotRequired[str]
|
|
209
|
+
maxResults: NotRequired[int]
|
|
210
|
+
|
|
211
|
+
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
212
|
+
resourceArn: str
|
|
213
|
+
|
|
214
|
+
class S3ConfigurationTypeDef(TypedDict):
|
|
215
|
+
bucketName: str
|
|
216
|
+
enabled: bool
|
|
217
|
+
|
|
218
|
+
class TagResourceRequestTypeDef(TypedDict):
|
|
219
|
+
resourceArn: str
|
|
220
|
+
tags: Mapping[str, str]
|
|
221
|
+
|
|
222
|
+
class UntagResourceRequestTypeDef(TypedDict):
|
|
223
|
+
resourceArn: str
|
|
224
|
+
tagKeys: Sequence[str]
|
|
225
|
+
|
|
226
|
+
class CreateDbClusterOutputTypeDef(TypedDict):
|
|
227
|
+
dbClusterId: str
|
|
228
|
+
dbClusterStatus: ClusterStatusType
|
|
229
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
230
|
+
|
|
231
|
+
class DeleteDbClusterOutputTypeDef(TypedDict):
|
|
232
|
+
dbClusterStatus: ClusterStatusType
|
|
233
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
234
|
+
|
|
235
|
+
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
236
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
237
|
+
|
|
238
|
+
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
239
|
+
tags: dict[str, str]
|
|
240
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
241
|
+
|
|
242
|
+
class UpdateDbClusterOutputTypeDef(TypedDict):
|
|
243
|
+
dbClusterStatus: ClusterStatusType
|
|
244
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
245
|
+
|
|
246
|
+
class ListDbClustersOutputTypeDef(TypedDict):
|
|
247
|
+
items: list[DbClusterSummaryTypeDef]
|
|
248
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
249
|
+
nextToken: NotRequired[str]
|
|
250
|
+
|
|
251
|
+
class ListDbInstancesForClusterOutputTypeDef(TypedDict):
|
|
252
|
+
items: list[DbInstanceForClusterSummaryTypeDef]
|
|
253
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
254
|
+
nextToken: NotRequired[str]
|
|
255
|
+
|
|
256
|
+
class ListDbInstancesOutputTypeDef(TypedDict):
|
|
257
|
+
items: list[DbInstanceSummaryTypeDef]
|
|
258
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
259
|
+
nextToken: NotRequired[str]
|
|
260
|
+
|
|
261
|
+
class ListDbParameterGroupsOutputTypeDef(TypedDict):
|
|
262
|
+
items: list[DbParameterGroupSummaryTypeDef]
|
|
263
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
264
|
+
nextToken: NotRequired[str]
|
|
265
|
+
|
|
266
|
+
class InfluxDBv2ParametersTypeDef(TypedDict):
|
|
267
|
+
fluxLogEnabled: NotRequired[bool]
|
|
268
|
+
logLevel: NotRequired[LogLevelType]
|
|
269
|
+
noTasks: NotRequired[bool]
|
|
270
|
+
queryConcurrency: NotRequired[int]
|
|
271
|
+
queryQueueSize: NotRequired[int]
|
|
272
|
+
tracingType: NotRequired[TracingTypeType]
|
|
273
|
+
metricsDisabled: NotRequired[bool]
|
|
274
|
+
httpIdleTimeout: NotRequired[DurationTypeDef]
|
|
275
|
+
httpReadHeaderTimeout: NotRequired[DurationTypeDef]
|
|
276
|
+
httpReadTimeout: NotRequired[DurationTypeDef]
|
|
277
|
+
httpWriteTimeout: NotRequired[DurationTypeDef]
|
|
278
|
+
influxqlMaxSelectBuckets: NotRequired[int]
|
|
279
|
+
influxqlMaxSelectPoint: NotRequired[int]
|
|
280
|
+
influxqlMaxSelectSeries: NotRequired[int]
|
|
281
|
+
pprofDisabled: NotRequired[bool]
|
|
282
|
+
queryInitialMemoryBytes: NotRequired[int]
|
|
283
|
+
queryMaxMemoryBytes: NotRequired[int]
|
|
284
|
+
queryMemoryBytes: NotRequired[int]
|
|
285
|
+
sessionLength: NotRequired[int]
|
|
286
|
+
sessionRenewDisabled: NotRequired[bool]
|
|
287
|
+
storageCacheMaxMemorySize: NotRequired[int]
|
|
288
|
+
storageCacheSnapshotMemorySize: NotRequired[int]
|
|
289
|
+
storageCacheSnapshotWriteColdDuration: NotRequired[DurationTypeDef]
|
|
290
|
+
storageCompactFullWriteColdDuration: NotRequired[DurationTypeDef]
|
|
291
|
+
storageCompactThroughputBurst: NotRequired[int]
|
|
292
|
+
storageMaxConcurrentCompactions: NotRequired[int]
|
|
293
|
+
storageMaxIndexLogFileSize: NotRequired[int]
|
|
294
|
+
storageNoValidateFieldSize: NotRequired[bool]
|
|
295
|
+
storageRetentionCheckInterval: NotRequired[DurationTypeDef]
|
|
296
|
+
storageSeriesFileMaxConcurrentSnapshotCompactions: NotRequired[int]
|
|
297
|
+
storageSeriesIdSetCacheSize: NotRequired[int]
|
|
298
|
+
storageWalMaxConcurrentWrites: NotRequired[int]
|
|
299
|
+
storageWalMaxWriteDelay: NotRequired[DurationTypeDef]
|
|
300
|
+
uiDisabled: NotRequired[bool]
|
|
301
|
+
|
|
302
|
+
class InfluxDBv3CoreParametersTypeDef(TypedDict):
|
|
303
|
+
queryFileLimit: NotRequired[int]
|
|
304
|
+
queryLogSize: NotRequired[int]
|
|
305
|
+
logFilter: NotRequired[str]
|
|
306
|
+
logFormat: NotRequired[Literal["full"]]
|
|
307
|
+
dataFusionNumThreads: NotRequired[int]
|
|
308
|
+
dataFusionRuntimeType: NotRequired[DataFusionRuntimeTypeType]
|
|
309
|
+
dataFusionRuntimeDisableLifoSlot: NotRequired[bool]
|
|
310
|
+
dataFusionRuntimeEventInterval: NotRequired[int]
|
|
311
|
+
dataFusionRuntimeGlobalQueueInterval: NotRequired[int]
|
|
312
|
+
dataFusionRuntimeMaxBlockingThreads: NotRequired[int]
|
|
313
|
+
dataFusionRuntimeMaxIoEventsPerTick: NotRequired[int]
|
|
314
|
+
dataFusionRuntimeThreadKeepAlive: NotRequired[DurationTypeDef]
|
|
315
|
+
dataFusionRuntimeThreadPriority: NotRequired[int]
|
|
316
|
+
dataFusionMaxParquetFanout: NotRequired[int]
|
|
317
|
+
dataFusionUseCachedParquetLoader: NotRequired[bool]
|
|
318
|
+
dataFusionConfig: NotRequired[str]
|
|
319
|
+
maxHttpRequestSize: NotRequired[int]
|
|
320
|
+
forceSnapshotMemThreshold: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
321
|
+
walSnapshotSize: NotRequired[int]
|
|
322
|
+
walMaxWriteBufferSize: NotRequired[int]
|
|
323
|
+
snapshottedWalFilesToKeep: NotRequired[int]
|
|
324
|
+
preemptiveCacheAge: NotRequired[DurationTypeDef]
|
|
325
|
+
parquetMemCachePrunePercentage: NotRequired[float]
|
|
326
|
+
parquetMemCachePruneInterval: NotRequired[DurationTypeDef]
|
|
327
|
+
disableParquetMemCache: NotRequired[bool]
|
|
328
|
+
parquetMemCacheQueryPathDuration: NotRequired[DurationTypeDef]
|
|
329
|
+
lastCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
330
|
+
distinctCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
331
|
+
gen1Duration: NotRequired[DurationTypeDef]
|
|
332
|
+
execMemPoolBytes: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
333
|
+
parquetMemCacheSize: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
334
|
+
walReplayFailOnError: NotRequired[bool]
|
|
335
|
+
walReplayConcurrencyLimit: NotRequired[int]
|
|
336
|
+
tableIndexCacheMaxEntries: NotRequired[int]
|
|
337
|
+
tableIndexCacheConcurrencyLimit: NotRequired[int]
|
|
338
|
+
gen1LookbackDuration: NotRequired[DurationTypeDef]
|
|
339
|
+
retentionCheckInterval: NotRequired[DurationTypeDef]
|
|
340
|
+
deleteGracePeriod: NotRequired[DurationTypeDef]
|
|
341
|
+
hardDeleteDefaultDuration: NotRequired[DurationTypeDef]
|
|
342
|
+
|
|
343
|
+
class InfluxDBv3EnterpriseParametersTypeDef(TypedDict):
|
|
344
|
+
ingestQueryInstances: int
|
|
345
|
+
queryOnlyInstances: int
|
|
346
|
+
dedicatedCompactor: bool
|
|
347
|
+
queryFileLimit: NotRequired[int]
|
|
348
|
+
queryLogSize: NotRequired[int]
|
|
349
|
+
logFilter: NotRequired[str]
|
|
350
|
+
logFormat: NotRequired[Literal["full"]]
|
|
351
|
+
dataFusionNumThreads: NotRequired[int]
|
|
352
|
+
dataFusionRuntimeType: NotRequired[DataFusionRuntimeTypeType]
|
|
353
|
+
dataFusionRuntimeDisableLifoSlot: NotRequired[bool]
|
|
354
|
+
dataFusionRuntimeEventInterval: NotRequired[int]
|
|
355
|
+
dataFusionRuntimeGlobalQueueInterval: NotRequired[int]
|
|
356
|
+
dataFusionRuntimeMaxBlockingThreads: NotRequired[int]
|
|
357
|
+
dataFusionRuntimeMaxIoEventsPerTick: NotRequired[int]
|
|
358
|
+
dataFusionRuntimeThreadKeepAlive: NotRequired[DurationTypeDef]
|
|
359
|
+
dataFusionRuntimeThreadPriority: NotRequired[int]
|
|
360
|
+
dataFusionMaxParquetFanout: NotRequired[int]
|
|
361
|
+
dataFusionUseCachedParquetLoader: NotRequired[bool]
|
|
362
|
+
dataFusionConfig: NotRequired[str]
|
|
363
|
+
maxHttpRequestSize: NotRequired[int]
|
|
364
|
+
forceSnapshotMemThreshold: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
365
|
+
walSnapshotSize: NotRequired[int]
|
|
366
|
+
walMaxWriteBufferSize: NotRequired[int]
|
|
367
|
+
snapshottedWalFilesToKeep: NotRequired[int]
|
|
368
|
+
preemptiveCacheAge: NotRequired[DurationTypeDef]
|
|
369
|
+
parquetMemCachePrunePercentage: NotRequired[float]
|
|
370
|
+
parquetMemCachePruneInterval: NotRequired[DurationTypeDef]
|
|
371
|
+
disableParquetMemCache: NotRequired[bool]
|
|
372
|
+
parquetMemCacheQueryPathDuration: NotRequired[DurationTypeDef]
|
|
373
|
+
lastCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
374
|
+
distinctCacheEvictionInterval: NotRequired[DurationTypeDef]
|
|
375
|
+
gen1Duration: NotRequired[DurationTypeDef]
|
|
376
|
+
execMemPoolBytes: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
377
|
+
parquetMemCacheSize: NotRequired[PercentOrAbsoluteLongTypeDef]
|
|
378
|
+
walReplayFailOnError: NotRequired[bool]
|
|
379
|
+
walReplayConcurrencyLimit: NotRequired[int]
|
|
380
|
+
tableIndexCacheMaxEntries: NotRequired[int]
|
|
381
|
+
tableIndexCacheConcurrencyLimit: NotRequired[int]
|
|
382
|
+
gen1LookbackDuration: NotRequired[DurationTypeDef]
|
|
383
|
+
retentionCheckInterval: NotRequired[DurationTypeDef]
|
|
384
|
+
deleteGracePeriod: NotRequired[DurationTypeDef]
|
|
385
|
+
hardDeleteDefaultDuration: NotRequired[DurationTypeDef]
|
|
386
|
+
compactionRowLimit: NotRequired[int]
|
|
387
|
+
compactionMaxNumFilesPerPlan: NotRequired[int]
|
|
388
|
+
compactionGen2Duration: NotRequired[DurationTypeDef]
|
|
389
|
+
compactionMultipliers: NotRequired[str]
|
|
390
|
+
compactionCleanupWait: NotRequired[DurationTypeDef]
|
|
391
|
+
compactionCheckInterval: NotRequired[DurationTypeDef]
|
|
392
|
+
lastValueCacheDisableFromHistory: NotRequired[bool]
|
|
393
|
+
distinctValueCacheDisableFromHistory: NotRequired[bool]
|
|
394
|
+
replicationInterval: NotRequired[DurationTypeDef]
|
|
395
|
+
catalogSyncInterval: NotRequired[DurationTypeDef]
|
|
396
|
+
|
|
397
|
+
class ListDbClustersInputPaginateTypeDef(TypedDict):
|
|
398
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
399
|
+
|
|
400
|
+
class ListDbInstancesForClusterInputPaginateTypeDef(TypedDict):
|
|
401
|
+
dbClusterId: str
|
|
402
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
403
|
+
|
|
404
|
+
class ListDbInstancesInputPaginateTypeDef(TypedDict):
|
|
405
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
406
|
+
|
|
407
|
+
class ListDbParameterGroupsInputPaginateTypeDef(TypedDict):
|
|
408
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
409
|
+
|
|
410
|
+
class LogDeliveryConfigurationTypeDef(TypedDict):
|
|
411
|
+
s3Configuration: S3ConfigurationTypeDef
|
|
412
|
+
|
|
413
|
+
class ParametersTypeDef(TypedDict):
|
|
414
|
+
InfluxDBv2: NotRequired[InfluxDBv2ParametersTypeDef]
|
|
415
|
+
InfluxDBv3Core: NotRequired[InfluxDBv3CoreParametersTypeDef]
|
|
416
|
+
InfluxDBv3Enterprise: NotRequired[InfluxDBv3EnterpriseParametersTypeDef]
|
|
417
|
+
|
|
418
|
+
class CreateDbClusterInputTypeDef(TypedDict):
|
|
419
|
+
name: str
|
|
420
|
+
dbInstanceType: DbInstanceTypeType
|
|
421
|
+
vpcSubnetIds: Sequence[str]
|
|
422
|
+
vpcSecurityGroupIds: Sequence[str]
|
|
423
|
+
username: NotRequired[str]
|
|
424
|
+
password: NotRequired[str]
|
|
425
|
+
organization: NotRequired[str]
|
|
426
|
+
bucket: NotRequired[str]
|
|
427
|
+
port: NotRequired[int]
|
|
428
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
429
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
430
|
+
allocatedStorage: NotRequired[int]
|
|
431
|
+
networkType: NotRequired[NetworkTypeType]
|
|
432
|
+
publiclyAccessible: NotRequired[bool]
|
|
433
|
+
deploymentType: NotRequired[Literal["MULTI_NODE_READ_REPLICAS"]]
|
|
434
|
+
failoverMode: NotRequired[FailoverModeType]
|
|
435
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
436
|
+
tags: NotRequired[Mapping[str, str]]
|
|
437
|
+
|
|
438
|
+
class CreateDbInstanceInputTypeDef(TypedDict):
|
|
439
|
+
name: str
|
|
440
|
+
password: str
|
|
441
|
+
dbInstanceType: DbInstanceTypeType
|
|
442
|
+
vpcSubnetIds: Sequence[str]
|
|
443
|
+
vpcSecurityGroupIds: Sequence[str]
|
|
444
|
+
allocatedStorage: int
|
|
445
|
+
username: NotRequired[str]
|
|
446
|
+
organization: NotRequired[str]
|
|
447
|
+
bucket: NotRequired[str]
|
|
448
|
+
publiclyAccessible: NotRequired[bool]
|
|
449
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
450
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
451
|
+
deploymentType: NotRequired[DeploymentTypeType]
|
|
452
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
453
|
+
tags: NotRequired[Mapping[str, str]]
|
|
454
|
+
port: NotRequired[int]
|
|
455
|
+
networkType: NotRequired[NetworkTypeType]
|
|
456
|
+
|
|
457
|
+
CreateDbInstanceOutputTypeDef = TypedDict(
|
|
458
|
+
"CreateDbInstanceOutputTypeDef",
|
|
459
|
+
{
|
|
460
|
+
"id": str,
|
|
461
|
+
"name": str,
|
|
462
|
+
"arn": str,
|
|
463
|
+
"status": StatusType,
|
|
464
|
+
"endpoint": str,
|
|
465
|
+
"port": int,
|
|
466
|
+
"networkType": NetworkTypeType,
|
|
467
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
468
|
+
"dbStorageType": DbStorageTypeType,
|
|
469
|
+
"allocatedStorage": int,
|
|
470
|
+
"deploymentType": DeploymentTypeType,
|
|
471
|
+
"vpcSubnetIds": list[str],
|
|
472
|
+
"publiclyAccessible": bool,
|
|
473
|
+
"vpcSecurityGroupIds": list[str],
|
|
474
|
+
"dbParameterGroupIdentifier": str,
|
|
475
|
+
"availabilityZone": str,
|
|
476
|
+
"secondaryAvailabilityZone": str,
|
|
477
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
478
|
+
"influxAuthParametersSecretArn": str,
|
|
479
|
+
"dbClusterId": str,
|
|
480
|
+
"instanceMode": InstanceModeType,
|
|
481
|
+
"instanceModes": list[InstanceModeType],
|
|
482
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
483
|
+
},
|
|
484
|
+
)
|
|
485
|
+
DeleteDbInstanceOutputTypeDef = TypedDict(
|
|
486
|
+
"DeleteDbInstanceOutputTypeDef",
|
|
487
|
+
{
|
|
488
|
+
"id": str,
|
|
489
|
+
"name": str,
|
|
490
|
+
"arn": str,
|
|
491
|
+
"status": StatusType,
|
|
492
|
+
"endpoint": str,
|
|
493
|
+
"port": int,
|
|
494
|
+
"networkType": NetworkTypeType,
|
|
495
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
496
|
+
"dbStorageType": DbStorageTypeType,
|
|
497
|
+
"allocatedStorage": int,
|
|
498
|
+
"deploymentType": DeploymentTypeType,
|
|
499
|
+
"vpcSubnetIds": list[str],
|
|
500
|
+
"publiclyAccessible": bool,
|
|
501
|
+
"vpcSecurityGroupIds": list[str],
|
|
502
|
+
"dbParameterGroupIdentifier": str,
|
|
503
|
+
"availabilityZone": str,
|
|
504
|
+
"secondaryAvailabilityZone": str,
|
|
505
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
506
|
+
"influxAuthParametersSecretArn": str,
|
|
507
|
+
"dbClusterId": str,
|
|
508
|
+
"instanceMode": InstanceModeType,
|
|
509
|
+
"instanceModes": list[InstanceModeType],
|
|
510
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
511
|
+
},
|
|
512
|
+
)
|
|
513
|
+
GetDbClusterOutputTypeDef = TypedDict(
|
|
514
|
+
"GetDbClusterOutputTypeDef",
|
|
515
|
+
{
|
|
516
|
+
"id": str,
|
|
517
|
+
"name": str,
|
|
518
|
+
"arn": str,
|
|
519
|
+
"status": ClusterStatusType,
|
|
520
|
+
"endpoint": str,
|
|
521
|
+
"readerEndpoint": str,
|
|
522
|
+
"port": int,
|
|
523
|
+
"deploymentType": Literal["MULTI_NODE_READ_REPLICAS"],
|
|
524
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
525
|
+
"networkType": NetworkTypeType,
|
|
526
|
+
"dbStorageType": DbStorageTypeType,
|
|
527
|
+
"allocatedStorage": int,
|
|
528
|
+
"engineType": EngineTypeType,
|
|
529
|
+
"publiclyAccessible": bool,
|
|
530
|
+
"dbParameterGroupIdentifier": str,
|
|
531
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
532
|
+
"influxAuthParametersSecretArn": str,
|
|
533
|
+
"vpcSubnetIds": list[str],
|
|
534
|
+
"vpcSecurityGroupIds": list[str],
|
|
535
|
+
"failoverMode": FailoverModeType,
|
|
536
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
537
|
+
},
|
|
538
|
+
)
|
|
539
|
+
GetDbInstanceOutputTypeDef = TypedDict(
|
|
540
|
+
"GetDbInstanceOutputTypeDef",
|
|
541
|
+
{
|
|
542
|
+
"id": str,
|
|
543
|
+
"name": str,
|
|
544
|
+
"arn": str,
|
|
545
|
+
"status": StatusType,
|
|
546
|
+
"endpoint": str,
|
|
547
|
+
"port": int,
|
|
548
|
+
"networkType": NetworkTypeType,
|
|
549
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
550
|
+
"dbStorageType": DbStorageTypeType,
|
|
551
|
+
"allocatedStorage": int,
|
|
552
|
+
"deploymentType": DeploymentTypeType,
|
|
553
|
+
"vpcSubnetIds": list[str],
|
|
554
|
+
"publiclyAccessible": bool,
|
|
555
|
+
"vpcSecurityGroupIds": list[str],
|
|
556
|
+
"dbParameterGroupIdentifier": str,
|
|
557
|
+
"availabilityZone": str,
|
|
558
|
+
"secondaryAvailabilityZone": str,
|
|
559
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
560
|
+
"influxAuthParametersSecretArn": str,
|
|
561
|
+
"dbClusterId": str,
|
|
562
|
+
"instanceMode": InstanceModeType,
|
|
563
|
+
"instanceModes": list[InstanceModeType],
|
|
564
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
565
|
+
},
|
|
566
|
+
)
|
|
567
|
+
|
|
568
|
+
class UpdateDbClusterInputTypeDef(TypedDict):
|
|
569
|
+
dbClusterId: str
|
|
570
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
571
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
572
|
+
port: NotRequired[int]
|
|
573
|
+
dbInstanceType: NotRequired[DbInstanceTypeType]
|
|
574
|
+
failoverMode: NotRequired[FailoverModeType]
|
|
575
|
+
|
|
576
|
+
class UpdateDbInstanceInputTypeDef(TypedDict):
|
|
577
|
+
identifier: str
|
|
578
|
+
logDeliveryConfiguration: NotRequired[LogDeliveryConfigurationTypeDef]
|
|
579
|
+
dbParameterGroupIdentifier: NotRequired[str]
|
|
580
|
+
port: NotRequired[int]
|
|
581
|
+
dbInstanceType: NotRequired[DbInstanceTypeType]
|
|
582
|
+
deploymentType: NotRequired[DeploymentTypeType]
|
|
583
|
+
dbStorageType: NotRequired[DbStorageTypeType]
|
|
584
|
+
allocatedStorage: NotRequired[int]
|
|
585
|
+
|
|
586
|
+
UpdateDbInstanceOutputTypeDef = TypedDict(
|
|
587
|
+
"UpdateDbInstanceOutputTypeDef",
|
|
588
|
+
{
|
|
589
|
+
"id": str,
|
|
590
|
+
"name": str,
|
|
591
|
+
"arn": str,
|
|
592
|
+
"status": StatusType,
|
|
593
|
+
"endpoint": str,
|
|
594
|
+
"port": int,
|
|
595
|
+
"networkType": NetworkTypeType,
|
|
596
|
+
"dbInstanceType": DbInstanceTypeType,
|
|
597
|
+
"dbStorageType": DbStorageTypeType,
|
|
598
|
+
"allocatedStorage": int,
|
|
599
|
+
"deploymentType": DeploymentTypeType,
|
|
600
|
+
"vpcSubnetIds": list[str],
|
|
601
|
+
"publiclyAccessible": bool,
|
|
602
|
+
"vpcSecurityGroupIds": list[str],
|
|
603
|
+
"dbParameterGroupIdentifier": str,
|
|
604
|
+
"availabilityZone": str,
|
|
605
|
+
"secondaryAvailabilityZone": str,
|
|
606
|
+
"logDeliveryConfiguration": LogDeliveryConfigurationTypeDef,
|
|
607
|
+
"influxAuthParametersSecretArn": str,
|
|
608
|
+
"dbClusterId": str,
|
|
609
|
+
"instanceMode": InstanceModeType,
|
|
610
|
+
"instanceModes": list[InstanceModeType],
|
|
611
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
612
|
+
},
|
|
613
|
+
)
|
|
614
|
+
|
|
615
|
+
class CreateDbParameterGroupInputTypeDef(TypedDict):
|
|
616
|
+
name: str
|
|
617
|
+
description: NotRequired[str]
|
|
618
|
+
parameters: NotRequired[ParametersTypeDef]
|
|
619
|
+
tags: NotRequired[Mapping[str, str]]
|
|
620
|
+
|
|
621
|
+
CreateDbParameterGroupOutputTypeDef = TypedDict(
|
|
622
|
+
"CreateDbParameterGroupOutputTypeDef",
|
|
623
|
+
{
|
|
624
|
+
"id": str,
|
|
625
|
+
"name": str,
|
|
626
|
+
"arn": str,
|
|
627
|
+
"description": str,
|
|
628
|
+
"parameters": ParametersTypeDef,
|
|
629
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
630
|
+
},
|
|
631
|
+
)
|
|
632
|
+
GetDbParameterGroupOutputTypeDef = TypedDict(
|
|
633
|
+
"GetDbParameterGroupOutputTypeDef",
|
|
634
|
+
{
|
|
635
|
+
"id": str,
|
|
636
|
+
"name": str,
|
|
637
|
+
"arn": str,
|
|
638
|
+
"description": str,
|
|
639
|
+
"parameters": ParametersTypeDef,
|
|
640
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
641
|
+
},
|
|
642
|
+
)
|