@aws-sdk/client-iot-events 3.194.0 → 3.196.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/CHANGELOG.md +11 -0
- package/dist-cjs/IoTEventsClient.js +11 -8
- package/dist-cjs/commands/CreateAlarmModelCommand.js +10 -0
- package/dist-cjs/commands/CreateDetectorModelCommand.js +10 -0
- package/dist-cjs/commands/CreateInputCommand.js +10 -0
- package/dist-cjs/commands/DeleteAlarmModelCommand.js +10 -0
- package/dist-cjs/commands/DeleteDetectorModelCommand.js +10 -0
- package/dist-cjs/commands/DeleteInputCommand.js +10 -0
- package/dist-cjs/commands/DescribeAlarmModelCommand.js +10 -0
- package/dist-cjs/commands/DescribeDetectorModelAnalysisCommand.js +10 -0
- package/dist-cjs/commands/DescribeDetectorModelCommand.js +10 -0
- package/dist-cjs/commands/DescribeInputCommand.js +10 -0
- package/dist-cjs/commands/DescribeLoggingOptionsCommand.js +10 -0
- package/dist-cjs/commands/GetDetectorModelAnalysisResultsCommand.js +10 -0
- package/dist-cjs/commands/ListAlarmModelVersionsCommand.js +10 -0
- package/dist-cjs/commands/ListAlarmModelsCommand.js +10 -0
- package/dist-cjs/commands/ListDetectorModelVersionsCommand.js +10 -0
- package/dist-cjs/commands/ListDetectorModelsCommand.js +10 -0
- package/dist-cjs/commands/ListInputRoutingsCommand.js +10 -0
- package/dist-cjs/commands/ListInputsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/PutLoggingOptionsCommand.js +10 -0
- package/dist-cjs/commands/StartDetectorModelAnalysisCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateAlarmModelCommand.js +10 -0
- package/dist-cjs/commands/UpdateDetectorModelCommand.js +10 -0
- package/dist-cjs/commands/UpdateInputCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/IoTEventsClient.js +12 -9
- package/dist-es/commands/CreateAlarmModelCommand.js +10 -0
- package/dist-es/commands/CreateDetectorModelCommand.js +10 -0
- package/dist-es/commands/CreateInputCommand.js +10 -0
- package/dist-es/commands/DeleteAlarmModelCommand.js +10 -0
- package/dist-es/commands/DeleteDetectorModelCommand.js +10 -0
- package/dist-es/commands/DeleteInputCommand.js +10 -0
- package/dist-es/commands/DescribeAlarmModelCommand.js +10 -0
- package/dist-es/commands/DescribeDetectorModelAnalysisCommand.js +10 -0
- package/dist-es/commands/DescribeDetectorModelCommand.js +10 -0
- package/dist-es/commands/DescribeInputCommand.js +10 -0
- package/dist-es/commands/DescribeLoggingOptionsCommand.js +10 -0
- package/dist-es/commands/GetDetectorModelAnalysisResultsCommand.js +10 -0
- package/dist-es/commands/ListAlarmModelVersionsCommand.js +10 -0
- package/dist-es/commands/ListAlarmModelsCommand.js +10 -0
- package/dist-es/commands/ListDetectorModelVersionsCommand.js +10 -0
- package/dist-es/commands/ListDetectorModelsCommand.js +10 -0
- package/dist-es/commands/ListInputRoutingsCommand.js +10 -0
- package/dist-es/commands/ListInputsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/PutLoggingOptionsCommand.js +10 -0
- package/dist-es/commands/StartDetectorModelAnalysisCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateAlarmModelCommand.js +10 -0
- package/dist-es/commands/UpdateDetectorModelCommand.js +10 -0
- package/dist-es/commands/UpdateInputCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/IoTEventsClient.d.ts +6 -9
- package/dist-types/commands/CreateAlarmModelCommand.d.ts +2 -0
- package/dist-types/commands/CreateDetectorModelCommand.d.ts +2 -0
- package/dist-types/commands/CreateInputCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAlarmModelCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDetectorModelCommand.d.ts +2 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAlarmModelCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDetectorModelCommand.d.ts +2 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +2 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +2 -0
- package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +2 -0
- package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +2 -0
- package/dist-types/commands/ListAlarmModelsCommand.d.ts +2 -0
- package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +2 -0
- package/dist-types/commands/ListDetectorModelsCommand.d.ts +2 -0
- package/dist-types/commands/ListInputRoutingsCommand.d.ts +2 -0
- package/dist-types/commands/ListInputsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +2 -0
- package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAlarmModelCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDetectorModelCommand.d.ts +2 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/IoTEventsClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/CreateAlarmModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDetectorModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateInputCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAlarmModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteDetectorModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteInputCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeAlarmModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeDetectorModelAnalysisCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeDetectorModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeInputCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDetectorModelAnalysisResultsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAlarmModelVersionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAlarmModelsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDetectorModelVersionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDetectorModelsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListInputRoutingsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListInputsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartDetectorModelAnalysisCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateAlarmModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateDetectorModelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateInputCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -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/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -177
- package/dist-es/endpoints.js +0 -173
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -29,6 +30,7 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class PutLoggingOptionsCommand extends $Command<PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput, IoTEventsClientResolvedConfig> {
|
|
31
32
|
readonly input: PutLoggingOptionsCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: PutLoggingOptionsCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -27,6 +28,7 @@ export interface StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class StartDetectorModelAnalysisCommand extends $Command<StartDetectorModelAnalysisCommandInput, StartDetectorModelAnalysisCommandOutput, IoTEventsClientResolvedConfig> {
|
|
29
30
|
readonly input: StartDetectorModelAnalysisCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: StartDetectorModelAnalysisCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -26,6 +27,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTEventsClientResolvedConfig> {
|
|
28
29
|
readonly input: TagResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: TagResourceCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTEventsClientResolvedConfig> {
|
|
27
28
|
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UntagResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -26,6 +27,7 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class UpdateAlarmModelCommand extends $Command<UpdateAlarmModelCommandInput, UpdateAlarmModelCommandOutput, IoTEventsClientResolvedConfig> {
|
|
28
29
|
readonly input: UpdateAlarmModelCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: UpdateAlarmModelCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -26,6 +27,7 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class UpdateDetectorModelCommand extends $Command<UpdateDetectorModelCommandInput, UpdateDetectorModelCommandOutput, IoTEventsClientResolvedConfig> {
|
|
28
29
|
readonly input: UpdateDetectorModelCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: UpdateDetectorModelCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateInputCommand extends $Command<UpdateInputCommandInput, UpdateInputCommandOutput, IoTEventsClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateInputCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateInputCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { IoTEventsClientConfig } from "./IoTEventsClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -146,6 +147,11 @@ import {
|
|
|
146
147
|
UpdateInputCommandInput,
|
|
147
148
|
UpdateInputCommandOutput,
|
|
148
149
|
} from "./commands/UpdateInputCommand";
|
|
150
|
+
import {
|
|
151
|
+
ClientInputEndpointParameters,
|
|
152
|
+
ClientResolvedEndpointParameters,
|
|
153
|
+
EndpointParameters,
|
|
154
|
+
} from "./endpoint/EndpointParameters";
|
|
149
155
|
export declare type ServiceInputTypes =
|
|
150
156
|
| CreateAlarmModelCommandInput
|
|
151
157
|
| CreateDetectorModelCommandInput
|
|
@@ -221,7 +227,6 @@ export interface ClientDefaults
|
|
|
221
227
|
serviceId?: string;
|
|
222
228
|
region?: string | __Provider<string>;
|
|
223
229
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
224
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
225
230
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
226
231
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
227
232
|
}
|
|
@@ -230,21 +235,23 @@ declare type IoTEventsClientConfigType = Partial<
|
|
|
230
235
|
> &
|
|
231
236
|
ClientDefaults &
|
|
232
237
|
RegionInputConfig &
|
|
233
|
-
|
|
238
|
+
EndpointInputConfig<EndpointParameters> &
|
|
234
239
|
RetryInputConfig &
|
|
235
240
|
HostHeaderInputConfig &
|
|
236
241
|
AwsAuthInputConfig &
|
|
237
|
-
UserAgentInputConfig
|
|
242
|
+
UserAgentInputConfig &
|
|
243
|
+
ClientInputEndpointParameters;
|
|
238
244
|
export interface IoTEventsClientConfig extends IoTEventsClientConfigType {}
|
|
239
245
|
declare type IoTEventsClientResolvedConfigType =
|
|
240
246
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
241
247
|
Required<ClientDefaults> &
|
|
242
248
|
RegionResolvedConfig &
|
|
243
|
-
|
|
249
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
244
250
|
RetryResolvedConfig &
|
|
245
251
|
HostHeaderResolvedConfig &
|
|
246
252
|
AwsAuthResolvedConfig &
|
|
247
|
-
UserAgentResolvedConfig
|
|
253
|
+
UserAgentResolvedConfig &
|
|
254
|
+
ClientResolvedEndpointParameters;
|
|
248
255
|
export interface IoTEventsClientResolvedConfig
|
|
249
256
|
extends IoTEventsClientResolvedConfigType {}
|
|
250
257
|
export declare class IoTEventsClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateAlarmModelCommand extends $Command<
|
|
|
24
25
|
IoTEventsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateAlarmModelCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateAlarmModelCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateDetectorModelCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateDetectorModelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateDetectorModelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreateInputCommand extends $Command<
|
|
|
21
22
|
IoTEventsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateInputCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateInputCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteAlarmModelCommand extends $Command<
|
|
|
24
25
|
IoTEventsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteAlarmModelCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteAlarmModelCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeleteDetectorModelCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteDetectorModelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteDetectorModelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DeleteInputCommand extends $Command<
|
|
|
21
22
|
IoTEventsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteInputCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteInputCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeAlarmModelCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeAlarmModelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeAlarmModelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeDetectorModelAnalysisCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeDetectorModelAnalysisCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeDetectorModelAnalysisCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeDetectorModelCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeDetectorModelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeDetectorModelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DescribeInputCommand extends $Command<
|
|
|
24
25
|
IoTEventsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeInputCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeInputCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeLoggingOptionsCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeLoggingOptionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeLoggingOptionsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetDetectorModelAnalysisResultsCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetDetectorModelAnalysisResultsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetDetectorModelAnalysisResultsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListAlarmModelVersionsCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListAlarmModelVersionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListAlarmModelVersionsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListAlarmModelsCommand extends $Command<
|
|
|
24
25
|
IoTEventsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListAlarmModelsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListAlarmModelsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListDetectorModelVersionsCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListDetectorModelVersionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDetectorModelVersionsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListDetectorModelsCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListDetectorModelsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDetectorModelsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListInputRoutingsCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListInputRoutingsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListInputRoutingsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListInputsCommand extends $Command<
|
|
|
21
22
|
IoTEventsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListInputsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListInputsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -20,6 +21,7 @@ export declare class PutLoggingOptionsCommand extends $Command<
|
|
|
20
21
|
IoTEventsClientResolvedConfig
|
|
21
22
|
> {
|
|
22
23
|
readonly input: PutLoggingOptionsCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
23
25
|
constructor(input: PutLoggingOptionsCommandInput);
|
|
24
26
|
resolveMiddleware(
|
|
25
27
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class StartDetectorModelAnalysisCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartDetectorModelAnalysisCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartDetectorModelAnalysisCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
|
|
|
21
22
|
IoTEventsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
24
25
|
IoTEventsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UntagResourceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UpdateAlarmModelCommand extends $Command<
|
|
|
24
25
|
IoTEventsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UpdateAlarmModelCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UpdateAlarmModelCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdateDetectorModelCommand extends $Command<
|
|
|
25
26
|
IoTEventsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdateDetectorModelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateDetectorModelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class UpdateInputCommand extends $Command<
|
|
|
21
22
|
IoTEventsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: UpdateInputCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: UpdateInputCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|