@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.
- package/LICENSE +201 -0
- package/README.md +293 -0
- package/dist-cjs/TimestreamInfluxDB.js +33 -0
- package/dist-cjs/TimestreamInfluxDBClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateDbInstanceCommand.js +29 -0
- package/dist-cjs/commands/CreateDbParameterGroupCommand.js +28 -0
- package/dist-cjs/commands/DeleteDbInstanceCommand.js +28 -0
- package/dist-cjs/commands/GetDbInstanceCommand.js +28 -0
- package/dist-cjs/commands/GetDbParameterGroupCommand.js +28 -0
- package/dist-cjs/commands/ListDbInstancesCommand.js +28 -0
- package/dist-cjs/commands/ListDbParameterGroupsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateDbInstanceCommand.js +28 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/TimestreamInfluxDBServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +159 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDbInstancesPaginator.js +7 -0
- package/dist-cjs/pagination/ListDbParameterGroupsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_json1_0.js +365 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/TimestreamInfluxDB.js +29 -0
- package/dist-es/TimestreamInfluxDBClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateDbInstanceCommand.js +25 -0
- package/dist-es/commands/CreateDbParameterGroupCommand.js +24 -0
- package/dist-es/commands/DeleteDbInstanceCommand.js +24 -0
- package/dist-es/commands/GetDbInstanceCommand.js +24 -0
- package/dist-es/commands/GetDbParameterGroupCommand.js +24 -0
- package/dist-es/commands/ListDbInstancesCommand.js +24 -0
- package/dist-es/commands/ListDbParameterGroupsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateDbInstanceCommand.js +24 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/TimestreamInfluxDBServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +148 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDbInstancesPaginator.js +4 -0
- package/dist-es/pagination/ListDbParameterGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +340 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/TimestreamInfluxDB.d.ts +87 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +182 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +129 -0
- package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +108 -0
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +101 -0
- package/dist-types/commands/GetDbInstanceCommand.d.ts +98 -0
- package/dist-types/commands/GetDbParameterGroupCommand.d.ts +87 -0
- package/dist-types/commands/ListDbInstancesCommand.d.ts +87 -0
- package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +82 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +63 -0
- package/dist-types/commands/TagResourceCommand.d.ts +62 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +62 -0
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +108 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +15 -0
- package/dist-types/models/TimestreamInfluxDBServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1099 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDbInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDbParameterGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +194 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +189 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/TimestreamInfluxDBServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +319 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDbInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDbParameterGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +101 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CreateDbInstanceCommandInput,
|
|
50
|
+
CreateDbInstanceCommandOutput,
|
|
51
|
+
} from "./commands/CreateDbInstanceCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateDbParameterGroupCommandInput,
|
|
54
|
+
CreateDbParameterGroupCommandOutput,
|
|
55
|
+
} from "./commands/CreateDbParameterGroupCommand";
|
|
56
|
+
import {
|
|
57
|
+
DeleteDbInstanceCommandInput,
|
|
58
|
+
DeleteDbInstanceCommandOutput,
|
|
59
|
+
} from "./commands/DeleteDbInstanceCommand";
|
|
60
|
+
import {
|
|
61
|
+
GetDbInstanceCommandInput,
|
|
62
|
+
GetDbInstanceCommandOutput,
|
|
63
|
+
} from "./commands/GetDbInstanceCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetDbParameterGroupCommandInput,
|
|
66
|
+
GetDbParameterGroupCommandOutput,
|
|
67
|
+
} from "./commands/GetDbParameterGroupCommand";
|
|
68
|
+
import {
|
|
69
|
+
ListDbInstancesCommandInput,
|
|
70
|
+
ListDbInstancesCommandOutput,
|
|
71
|
+
} from "./commands/ListDbInstancesCommand";
|
|
72
|
+
import {
|
|
73
|
+
ListDbParameterGroupsCommandInput,
|
|
74
|
+
ListDbParameterGroupsCommandOutput,
|
|
75
|
+
} from "./commands/ListDbParameterGroupsCommand";
|
|
76
|
+
import {
|
|
77
|
+
ListTagsForResourceCommandInput,
|
|
78
|
+
ListTagsForResourceCommandOutput,
|
|
79
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
80
|
+
import {
|
|
81
|
+
TagResourceCommandInput,
|
|
82
|
+
TagResourceCommandOutput,
|
|
83
|
+
} from "./commands/TagResourceCommand";
|
|
84
|
+
import {
|
|
85
|
+
UntagResourceCommandInput,
|
|
86
|
+
UntagResourceCommandOutput,
|
|
87
|
+
} from "./commands/UntagResourceCommand";
|
|
88
|
+
import {
|
|
89
|
+
UpdateDbInstanceCommandInput,
|
|
90
|
+
UpdateDbInstanceCommandOutput,
|
|
91
|
+
} from "./commands/UpdateDbInstanceCommand";
|
|
92
|
+
import {
|
|
93
|
+
ClientInputEndpointParameters,
|
|
94
|
+
ClientResolvedEndpointParameters,
|
|
95
|
+
EndpointParameters,
|
|
96
|
+
} from "./endpoint/EndpointParameters";
|
|
97
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
98
|
+
export { __Client };
|
|
99
|
+
export type ServiceInputTypes =
|
|
100
|
+
| CreateDbInstanceCommandInput
|
|
101
|
+
| CreateDbParameterGroupCommandInput
|
|
102
|
+
| DeleteDbInstanceCommandInput
|
|
103
|
+
| GetDbInstanceCommandInput
|
|
104
|
+
| GetDbParameterGroupCommandInput
|
|
105
|
+
| ListDbInstancesCommandInput
|
|
106
|
+
| ListDbParameterGroupsCommandInput
|
|
107
|
+
| ListTagsForResourceCommandInput
|
|
108
|
+
| TagResourceCommandInput
|
|
109
|
+
| UntagResourceCommandInput
|
|
110
|
+
| UpdateDbInstanceCommandInput;
|
|
111
|
+
export type ServiceOutputTypes =
|
|
112
|
+
| CreateDbInstanceCommandOutput
|
|
113
|
+
| CreateDbParameterGroupCommandOutput
|
|
114
|
+
| DeleteDbInstanceCommandOutput
|
|
115
|
+
| GetDbInstanceCommandOutput
|
|
116
|
+
| GetDbParameterGroupCommandOutput
|
|
117
|
+
| ListDbInstancesCommandOutput
|
|
118
|
+
| ListDbParameterGroupsCommandOutput
|
|
119
|
+
| ListTagsForResourceCommandOutput
|
|
120
|
+
| TagResourceCommandOutput
|
|
121
|
+
| UntagResourceCommandOutput
|
|
122
|
+
| UpdateDbInstanceCommandOutput;
|
|
123
|
+
export interface ClientDefaults
|
|
124
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
125
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
126
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
127
|
+
urlParser?: __UrlParser;
|
|
128
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
129
|
+
streamCollector?: __StreamCollector;
|
|
130
|
+
base64Decoder?: __Decoder;
|
|
131
|
+
base64Encoder?: __Encoder;
|
|
132
|
+
utf8Decoder?: __Decoder;
|
|
133
|
+
utf8Encoder?: __Encoder;
|
|
134
|
+
runtime?: string;
|
|
135
|
+
disableHostPrefix?: boolean;
|
|
136
|
+
serviceId?: string;
|
|
137
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
138
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
139
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
140
|
+
region?: string | __Provider<string>;
|
|
141
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
142
|
+
maxAttempts?: number | __Provider<number>;
|
|
143
|
+
retryMode?: string | __Provider<string>;
|
|
144
|
+
logger?: __Logger;
|
|
145
|
+
extensions?: RuntimeExtension[];
|
|
146
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
147
|
+
}
|
|
148
|
+
export type TimestreamInfluxDBClientConfigType = Partial<
|
|
149
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
150
|
+
> &
|
|
151
|
+
ClientDefaults &
|
|
152
|
+
RegionInputConfig &
|
|
153
|
+
EndpointInputConfig<EndpointParameters> &
|
|
154
|
+
RetryInputConfig &
|
|
155
|
+
HostHeaderInputConfig &
|
|
156
|
+
UserAgentInputConfig &
|
|
157
|
+
HttpAuthSchemeInputConfig &
|
|
158
|
+
ClientInputEndpointParameters;
|
|
159
|
+
export interface TimestreamInfluxDBClientConfig
|
|
160
|
+
extends TimestreamInfluxDBClientConfigType {}
|
|
161
|
+
export type TimestreamInfluxDBClientResolvedConfigType =
|
|
162
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
163
|
+
Required<ClientDefaults> &
|
|
164
|
+
RuntimeExtensionsConfig &
|
|
165
|
+
RegionResolvedConfig &
|
|
166
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
167
|
+
RetryResolvedConfig &
|
|
168
|
+
HostHeaderResolvedConfig &
|
|
169
|
+
UserAgentResolvedConfig &
|
|
170
|
+
HttpAuthSchemeResolvedConfig &
|
|
171
|
+
ClientResolvedEndpointParameters;
|
|
172
|
+
export interface TimestreamInfluxDBClientResolvedConfig
|
|
173
|
+
extends TimestreamInfluxDBClientResolvedConfigType {}
|
|
174
|
+
export declare class TimestreamInfluxDBClient extends __Client<
|
|
175
|
+
__HttpHandlerOptions,
|
|
176
|
+
ServiceInputTypes,
|
|
177
|
+
ServiceOutputTypes,
|
|
178
|
+
TimestreamInfluxDBClientResolvedConfig
|
|
179
|
+
> {
|
|
180
|
+
readonly config: TimestreamInfluxDBClientResolvedConfig;
|
|
181
|
+
constructor(
|
|
182
|
+
...[
|
|
183
|
+
configuration,
|
|
184
|
+
]: __CheckOptionalClientConfig<TimestreamInfluxDBClientConfig>
|
|
185
|
+
);
|
|
186
|
+
destroy(): void;
|
|
187
|
+
private getDefaultHttpAuthSchemeParametersProvider;
|
|
188
|
+
private getIdentityProviderConfigProvider;
|
|
189
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { TimestreamInfluxDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
} from "@smithy/types";
|
|
13
|
+
import { TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
14
|
+
export interface TimestreamInfluxDBHttpAuthSchemeParameters
|
|
15
|
+
extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface TimestreamInfluxDBHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
TimestreamInfluxDBHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: TimestreamInfluxDBClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<TimestreamInfluxDBHttpAuthSchemeParameters>;
|
|
30
|
+
export interface TimestreamInfluxDBHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<TimestreamInfluxDBHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultTimestreamInfluxDBHttpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
|
+
httpAuthSchemeProvider?: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
36
|
+
}
|
|
37
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
38
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
39
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
40
|
+
readonly httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
41
|
+
}
|
|
42
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
43
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
44
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateDbInstanceInput,
|
|
5
|
+
CreateDbInstanceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateDbInstanceCommandInput extends CreateDbInstanceInput {}
|
|
14
|
+
export interface CreateDbInstanceCommandOutput
|
|
15
|
+
extends CreateDbInstanceOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const CreateDbInstanceCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: CreateDbInstanceCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
CreateDbInstanceCommandInput,
|
|
22
|
+
CreateDbInstanceCommandOutput,
|
|
23
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class CreateDbInstanceCommand extends CreateDbInstanceCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateDbParameterGroupInput,
|
|
5
|
+
CreateDbParameterGroupOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateDbParameterGroupCommandInput
|
|
14
|
+
extends CreateDbParameterGroupInput {}
|
|
15
|
+
export interface CreateDbParameterGroupCommandOutput
|
|
16
|
+
extends CreateDbParameterGroupOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateDbParameterGroupCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateDbParameterGroupCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateDbParameterGroupCommandInput,
|
|
23
|
+
CreateDbParameterGroupCommandOutput,
|
|
24
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateDbParameterGroupCommand extends CreateDbParameterGroupCommand_base {}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteDbInstanceInput,
|
|
5
|
+
DeleteDbInstanceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DeleteDbInstanceCommandInput extends DeleteDbInstanceInput {}
|
|
14
|
+
export interface DeleteDbInstanceCommandOutput
|
|
15
|
+
extends DeleteDbInstanceOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const DeleteDbInstanceCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: DeleteDbInstanceCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
DeleteDbInstanceCommandInput,
|
|
22
|
+
DeleteDbInstanceCommandOutput,
|
|
23
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class DeleteDbInstanceCommand extends DeleteDbInstanceCommand_base {}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
8
|
+
} from "../TimestreamInfluxDBClient";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface GetDbInstanceCommandInput extends GetDbInstanceInput {}
|
|
11
|
+
export interface GetDbInstanceCommandOutput
|
|
12
|
+
extends GetDbInstanceOutput,
|
|
13
|
+
__MetadataBearer {}
|
|
14
|
+
declare const GetDbInstanceCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetDbInstanceCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetDbInstanceCommandInput,
|
|
19
|
+
GetDbInstanceCommandOutput,
|
|
20
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GetDbInstanceCommand extends GetDbInstanceCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDbParameterGroupInput,
|
|
5
|
+
GetDbParameterGroupOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetDbParameterGroupCommandInput
|
|
14
|
+
extends GetDbParameterGroupInput {}
|
|
15
|
+
export interface GetDbParameterGroupCommandOutput
|
|
16
|
+
extends GetDbParameterGroupOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetDbParameterGroupCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetDbParameterGroupCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetDbParameterGroupCommandInput,
|
|
23
|
+
GetDbParameterGroupCommandOutput,
|
|
24
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetDbParameterGroupCommand extends GetDbParameterGroupCommand_base {}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDbInstancesInput,
|
|
5
|
+
ListDbInstancesOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListDbInstancesCommandInput extends ListDbInstancesInput {}
|
|
14
|
+
export interface ListDbInstancesCommandOutput
|
|
15
|
+
extends ListDbInstancesOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const ListDbInstancesCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListDbInstancesCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListDbInstancesCommandInput,
|
|
22
|
+
ListDbInstancesCommandOutput,
|
|
23
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class ListDbInstancesCommand extends ListDbInstancesCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDbParameterGroupsInput,
|
|
5
|
+
ListDbParameterGroupsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListDbParameterGroupsCommandInput
|
|
14
|
+
extends ListDbParameterGroupsInput {}
|
|
15
|
+
export interface ListDbParameterGroupsCommandOutput
|
|
16
|
+
extends ListDbParameterGroupsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListDbParameterGroupsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListDbParameterGroupsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListDbParameterGroupsCommandInput,
|
|
23
|
+
ListDbParameterGroupsCommandOutput,
|
|
24
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListDbParameterGroupsCommand extends ListDbParameterGroupsCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListTagsForResourceRequest,
|
|
5
|
+
ListTagsForResourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListTagsForResourceCommandInput
|
|
14
|
+
extends ListTagsForResourceRequest {}
|
|
15
|
+
export interface ListTagsForResourceCommandOutput
|
|
16
|
+
extends ListTagsForResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListTagsForResourceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListTagsForResourceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListTagsForResourceCommandInput,
|
|
23
|
+
ListTagsForResourceCommandOutput,
|
|
24
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
8
|
+
} from "../TimestreamInfluxDBClient";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
11
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
12
|
+
declare const TagResourceCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: TagResourceCommandInput
|
|
15
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
16
|
+
TagResourceCommandInput,
|
|
17
|
+
TagResourceCommandOutput,
|
|
18
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
19
|
+
ServiceInputTypes,
|
|
20
|
+
ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
|
+
};
|
|
24
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UntagResourceRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
8
|
+
} from "../TimestreamInfluxDBClient";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
11
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
12
|
+
declare const UntagResourceCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: UntagResourceCommandInput
|
|
15
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
16
|
+
UntagResourceCommandInput,
|
|
17
|
+
UntagResourceCommandOutput,
|
|
18
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
19
|
+
ServiceInputTypes,
|
|
20
|
+
ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
|
+
};
|
|
24
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateDbInstanceInput,
|
|
5
|
+
UpdateDbInstanceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateDbInstanceCommandInput extends UpdateDbInstanceInput {}
|
|
14
|
+
export interface UpdateDbInstanceCommandOutput
|
|
15
|
+
extends UpdateDbInstanceOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const UpdateDbInstanceCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: UpdateDbInstanceCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
UpdateDbInstanceCommandInput,
|
|
22
|
+
UpdateDbInstanceCommandOutput,
|
|
23
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class UpdateDbInstanceCommand extends UpdateDbInstanceCommand_base {}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./CreateDbInstanceCommand";
|
|
2
|
+
export * from "./CreateDbParameterGroupCommand";
|
|
3
|
+
export * from "./DeleteDbInstanceCommand";
|
|
4
|
+
export * from "./GetDbInstanceCommand";
|
|
5
|
+
export * from "./GetDbParameterGroupCommand";
|
|
6
|
+
export * from "./ListDbInstancesCommand";
|
|
7
|
+
export * from "./ListDbParameterGroupsCommand";
|
|
8
|
+
export * from "./ListTagsForResourceCommand";
|
|
9
|
+
export * from "./TagResourceCommand";
|
|
10
|
+
export * from "./UntagResourceCommand";
|
|
11
|
+
export * from "./UpdateDbInstanceCommand";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
47
|
+
Region?: string;
|
|
48
|
+
UseDualStack?: boolean;
|
|
49
|
+
UseFIPS?: boolean;
|
|
50
|
+
Endpoint?: string;
|
|
51
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface TimestreamInfluxDBExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|