@aws-sdk/client-rekognitionstreaming 3.362.0 → 3.369.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/RekognitionStreaming.js +1 -1
- package/dist-cjs/RekognitionStreamingClient.js +6 -6
- package/dist-cjs/commands/StartFaceLivenessSessionCommand.js +3 -3
- package/dist-cjs/models/RekognitionStreamingServiceException.js +1 -1
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1
- package/dist-cjs/runtimeConfig.browser.js +8 -8
- package/dist-cjs/runtimeConfig.js +11 -11
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-cjs/runtimeConfig.shared.js +4 -4
- package/dist-es/RekognitionStreaming.js +1 -1
- package/dist-es/RekognitionStreamingClient.js +6 -6
- package/dist-es/commands/StartFaceLivenessSessionCommand.js +3 -3
- package/dist-es/models/RekognitionStreamingServiceException.js +1 -1
- package/dist-es/protocols/Aws_restJson1.js +1 -1
- package/dist-es/runtimeConfig.browser.js +8 -8
- package/dist-es/runtimeConfig.js +11 -11
- package/dist-es/runtimeConfig.native.js +1 -1
- package/dist-es/runtimeConfig.shared.js +4 -4
- package/dist-types/RekognitionStreaming.d.ts +1 -1
- package/dist-types/RekognitionStreamingClient.d.ts +9 -9
- package/dist-types/commands/StartFaceLivenessSessionCommand.d.ts +3 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -2
- package/dist-types/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/endpoint/ruleset.d.ts +1 -1
- package/dist-types/models/RekognitionStreamingServiceException.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +1 -2
- package/dist-types/runtimeConfig.browser.d.ts +21 -21
- package/dist-types/runtimeConfig.d.ts +22 -22
- package/dist-types/runtimeConfig.native.d.ts +21 -21
- package/dist-types/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/RekognitionStreaming.d.ts +1 -1
- package/dist-types/ts3.4/RekognitionStreamingClient.d.ts +26 -26
- package/dist-types/ts3.4/commands/StartFaceLivenessSessionCommand.d.ts +3 -3
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +3 -2
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +1 -1
- package/dist-types/ts3.4/models/RekognitionStreamingServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +36 -41
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -39
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +34 -39
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
- package/package.json +40 -39
|
@@ -4,12 +4,12 @@ import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
eventStreamPayloadHandlerProvider: import("@
|
|
8
|
-
sha256: import("@
|
|
9
|
-
requestHandler: (import("@
|
|
7
|
+
eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
|
|
8
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
9
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@aws-sdk/middleware-websocket").WebSocketFetchHandler;
|
|
10
10
|
apiVersion: string;
|
|
11
|
-
urlParser: import("@
|
|
12
|
-
bodyLengthChecker: import("@
|
|
11
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
12
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
14
14
|
base64Decoder: import("@smithy/types").Decoder;
|
|
15
15
|
base64Encoder: import("@smithy/types").Encoder;
|
|
@@ -17,27 +17,27 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
|
|
|
17
17
|
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
18
|
disableHostPrefix: boolean;
|
|
19
19
|
serviceId: string;
|
|
20
|
-
useDualstackEndpoint:
|
|
21
|
-
useFipsEndpoint:
|
|
22
|
-
region: string | import("@
|
|
20
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
-
defaultUserAgentProvider: import("@
|
|
25
|
-
maxAttempts:
|
|
24
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
25
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
|
-
logger: import("@
|
|
28
|
-
eventStreamSerdeProvider: import("@
|
|
29
|
-
defaultsMode: import("@
|
|
30
|
-
endpoint?: string | import("@
|
|
27
|
+
logger: import("@smithy/types").Logger;
|
|
28
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
29
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
30
|
+
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
31
31
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
-
logger?: import("@
|
|
33
|
-
}) => import("@
|
|
32
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
33
|
+
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@
|
|
36
|
-
credentials?: import("@
|
|
37
|
-
signer?: import("@
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
37
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
38
38
|
signingEscapePath?: boolean | undefined;
|
|
39
39
|
systemClockOffset?: number | undefined;
|
|
40
40
|
signingRegion?: string | undefined;
|
|
41
|
-
signerConstructor?: (new (options: import("@
|
|
42
|
-
customUserAgent?: string | import("@
|
|
41
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
42
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
43
43
|
};
|
|
@@ -8,11 +8,11 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
|
|
|
8
8
|
base64Encoder: import("@smithy/types").Encoder;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger?: import("@
|
|
12
|
-
}) => import("@
|
|
13
|
-
logger: import("@
|
|
11
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
logger: import("@smithy/types").Logger;
|
|
14
14
|
serviceId: string;
|
|
15
|
-
urlParser: import("@
|
|
15
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
16
16
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
17
|
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
18
|
};
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
RegionInputConfig,
|
|
3
|
-
RegionResolvedConfig,
|
|
4
|
-
} from "@aws-sdk/config-resolver";
|
|
5
|
-
import {
|
|
6
|
-
EventStreamSerdeInputConfig,
|
|
7
|
-
EventStreamSerdeResolvedConfig,
|
|
8
|
-
} from "@aws-sdk/eventstream-serde-config-resolver";
|
|
9
|
-
import {
|
|
10
|
-
EndpointInputConfig,
|
|
11
|
-
EndpointResolvedConfig,
|
|
12
|
-
} from "@aws-sdk/middleware-endpoint";
|
|
13
1
|
import {
|
|
14
2
|
EventStreamInputConfig,
|
|
15
3
|
EventStreamResolvedConfig,
|
|
@@ -18,10 +6,6 @@ import {
|
|
|
18
6
|
HostHeaderInputConfig,
|
|
19
7
|
HostHeaderResolvedConfig,
|
|
20
8
|
} from "@aws-sdk/middleware-host-header";
|
|
21
|
-
import {
|
|
22
|
-
RetryInputConfig,
|
|
23
|
-
RetryResolvedConfig,
|
|
24
|
-
} from "@aws-sdk/middleware-retry";
|
|
25
9
|
import {
|
|
26
10
|
AwsAuthInputConfig,
|
|
27
11
|
AwsAuthResolvedConfig,
|
|
@@ -34,31 +18,47 @@ import {
|
|
|
34
18
|
WebSocketInputConfig,
|
|
35
19
|
WebSocketResolvedConfig,
|
|
36
20
|
} from "@aws-sdk/middleware-websocket";
|
|
21
|
+
import {
|
|
22
|
+
Credentials as __Credentials,
|
|
23
|
+
EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider,
|
|
24
|
+
} from "@aws-sdk/types";
|
|
25
|
+
import {
|
|
26
|
+
RegionInputConfig,
|
|
27
|
+
RegionResolvedConfig,
|
|
28
|
+
} from "@smithy/config-resolver";
|
|
29
|
+
import {
|
|
30
|
+
EventStreamSerdeInputConfig,
|
|
31
|
+
EventStreamSerdeResolvedConfig,
|
|
32
|
+
} from "@smithy/eventstream-serde-config-resolver";
|
|
33
|
+
import {
|
|
34
|
+
EndpointInputConfig,
|
|
35
|
+
EndpointResolvedConfig,
|
|
36
|
+
} from "@smithy/middleware-endpoint";
|
|
37
|
+
import {
|
|
38
|
+
RetryInputConfig,
|
|
39
|
+
RetryResolvedConfig,
|
|
40
|
+
} from "@smithy/middleware-retry";
|
|
41
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
37
42
|
import {
|
|
38
43
|
Client as __Client,
|
|
39
44
|
DefaultsMode as __DefaultsMode,
|
|
40
45
|
SmithyConfiguration as __SmithyConfiguration,
|
|
41
46
|
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
42
|
-
} from "@
|
|
47
|
+
} from "@smithy/smithy-client";
|
|
43
48
|
import {
|
|
44
49
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
45
50
|
ChecksumConstructor as __ChecksumConstructor,
|
|
46
|
-
|
|
47
|
-
|
|
51
|
+
Decoder as __Decoder,
|
|
52
|
+
Encoder as __Encoder,
|
|
48
53
|
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
49
54
|
HashConstructor as __HashConstructor,
|
|
50
55
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
51
56
|
Logger as __Logger,
|
|
57
|
+
Provider as __Provider,
|
|
52
58
|
Provider,
|
|
59
|
+
StreamCollector as __StreamCollector,
|
|
53
60
|
UrlParser as __UrlParser,
|
|
54
61
|
UserAgent as __UserAgent,
|
|
55
|
-
} from "@aws-sdk/types";
|
|
56
|
-
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
57
|
-
import {
|
|
58
|
-
Decoder as __Decoder,
|
|
59
|
-
Encoder as __Encoder,
|
|
60
|
-
Provider as __Provider,
|
|
61
|
-
StreamCollector as __StreamCollector,
|
|
62
62
|
} from "@smithy/types";
|
|
63
63
|
import {
|
|
64
64
|
StartFaceLivenessSessionCommandInput,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@
|
|
2
|
-
import { Command as $Command } from "@
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import {
|
|
4
4
|
Handler,
|
|
5
5
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
|
-
} from "@
|
|
8
|
+
} from "@smithy/types";
|
|
9
9
|
import {
|
|
10
10
|
StartFaceLivenessSessionRequest,
|
|
11
11
|
StartFaceLivenessSessionResponse,
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
|
+
Endpoint,
|
|
2
3
|
EndpointParameters as __EndpointParameters,
|
|
3
4
|
EndpointV2,
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
6
7
|
export interface ClientInputEndpointParameters {
|
|
7
8
|
region?: string | Provider<string>;
|
|
8
9
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RuleSetObject } from "@
|
|
1
|
+
import { RuleSetObject } from "@smithy/types";
|
|
2
2
|
export declare const ruleSet: RuleSetObject;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
-
} from "@
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
5
|
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
6
|
export declare class RekognitionStreamingServiceException extends __ServiceException {
|
|
7
7
|
constructor(options: __ServiceExceptionOptions);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { RekognitionStreamingServiceException as __BaseException } from "./RekognitionStreamingServiceException";
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { EventStreamSerdeContext as __EventStreamSerdeContext } from "@aws-sdk/types";
|
|
2
1
|
import {
|
|
3
2
|
HttpRequest as __HttpRequest,
|
|
4
3
|
HttpResponse as __HttpResponse,
|
|
5
4
|
} from "@smithy/protocol-http";
|
|
6
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
EventStreamSerdeContext as __EventStreamSerdeContext,
|
|
7
|
+
SerdeContext as __SerdeContext,
|
|
8
|
+
} from "@smithy/types";
|
|
7
9
|
import {
|
|
8
10
|
StartFaceLivenessSessionCommandInput,
|
|
9
11
|
StartFaceLivenessSessionCommandOutput,
|
|
@@ -4,95 +4,90 @@ export declare const getRuntimeConfig: (
|
|
|
4
4
|
config: RekognitionStreamingClientConfig
|
|
5
5
|
) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
defaultsMode: import("@
|
|
8
|
-
import("@
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
|
-
bodyLengthChecker: import("@
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider: (
|
|
12
12
|
input: any
|
|
13
13
|
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
-
defaultUserAgentProvider: import("@
|
|
15
|
-
import("@
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
16
|
>;
|
|
17
|
-
eventStreamPayloadHandlerProvider: import("@
|
|
18
|
-
eventStreamSerdeProvider: import("@
|
|
19
|
-
maxAttempts:
|
|
20
|
-
|
|
21
|
-
region: string | import("@aws-sdk/types").Provider<any>;
|
|
17
|
+
eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
|
|
18
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
22
21
|
requestHandler:
|
|
23
|
-
| (import("@
|
|
22
|
+
| (import("@smithy/types").RequestHandler<
|
|
24
23
|
any,
|
|
25
24
|
any,
|
|
26
|
-
import("@
|
|
25
|
+
import("@smithy/types").HttpHandlerOptions
|
|
27
26
|
> &
|
|
28
27
|
import("@smithy/protocol-http").HttpHandler)
|
|
29
28
|
| WebSocketRequestHandler;
|
|
30
29
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
31
|
-
sha256: import("@
|
|
30
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
32
31
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
33
|
-
useDualstackEndpoint:
|
|
34
|
-
|
|
35
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
36
|
-
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
32
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
37
34
|
apiVersion: string;
|
|
38
|
-
urlParser: import("@
|
|
35
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
39
36
|
base64Decoder: import("@smithy/types").Decoder;
|
|
40
37
|
base64Encoder: import("@smithy/types").Encoder;
|
|
41
38
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
42
39
|
utf8Encoder: import("@smithy/types").Encoder;
|
|
43
40
|
disableHostPrefix: boolean;
|
|
44
41
|
serviceId: string;
|
|
45
|
-
logger: import("@
|
|
42
|
+
logger: import("@smithy/types").Logger;
|
|
46
43
|
endpoint?:
|
|
47
44
|
| ((
|
|
48
45
|
| string
|
|
49
|
-
| import("@
|
|
50
|
-
| import("@
|
|
51
|
-
| import("@
|
|
52
|
-
| import("@
|
|
46
|
+
| import("@smithy/types").Endpoint
|
|
47
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
48
|
+
| import("@smithy/types").EndpointV2
|
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
53
50
|
) &
|
|
54
51
|
(
|
|
55
52
|
| string
|
|
56
53
|
| import("@smithy/types").Endpoint
|
|
57
54
|
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
58
55
|
| import("@smithy/types").Provider<string>
|
|
59
|
-
| import("@
|
|
60
|
-
| import("@smithy/types").Provider<
|
|
61
|
-
import("@aws-sdk/types").EndpointV2
|
|
62
|
-
>
|
|
56
|
+
| import("@smithy/types").EndpointV2
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
58
|
))
|
|
64
59
|
| undefined;
|
|
65
60
|
endpointProvider: (
|
|
66
61
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
67
62
|
context?: {
|
|
68
|
-
logger?: import("@
|
|
63
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
69
64
|
}
|
|
70
|
-
) => import("@
|
|
65
|
+
) => import("@smithy/types").EndpointV2;
|
|
71
66
|
tls?: boolean | undefined;
|
|
72
67
|
retryStrategy?:
|
|
73
|
-
| import("@
|
|
74
|
-
| import("@
|
|
68
|
+
| import("@smithy/types").RetryStrategy
|
|
69
|
+
| import("@smithy/types").RetryStrategyV2
|
|
75
70
|
| undefined;
|
|
76
71
|
credentials?:
|
|
77
|
-
| import("@
|
|
78
|
-
| import("@
|
|
79
|
-
import("@
|
|
72
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
73
|
+
| import("@smithy/types").Provider<
|
|
74
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
80
75
|
>
|
|
81
76
|
| undefined;
|
|
82
77
|
signer?:
|
|
83
|
-
| import("@
|
|
78
|
+
| import("@smithy/types").RequestSigner
|
|
84
79
|
| ((
|
|
85
|
-
authScheme?: import("@
|
|
86
|
-
) => Promise<import("@
|
|
80
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
81
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
87
82
|
| undefined;
|
|
88
83
|
signingEscapePath?: boolean | undefined;
|
|
89
84
|
systemClockOffset?: number | undefined;
|
|
90
85
|
signingRegion?: string | undefined;
|
|
91
86
|
signerConstructor?:
|
|
92
87
|
| (new (
|
|
93
|
-
options: import("@
|
|
94
|
-
import("@
|
|
95
|
-
) => import("@
|
|
88
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
89
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
90
|
+
) => import("@smithy/types").RequestSigner)
|
|
96
91
|
| undefined;
|
|
97
|
-
customUserAgent?: string | import("@
|
|
92
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
98
93
|
};
|
|
@@ -1,95 +1,93 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient";
|
|
3
3
|
export declare const getRuntimeConfig: (
|
|
4
4
|
config: RekognitionStreamingClientConfig
|
|
5
5
|
) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
defaultsMode: import("@
|
|
8
|
-
import("@
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
|
-
bodyLengthChecker: import("@
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider: (
|
|
12
12
|
input: any
|
|
13
13
|
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
-
defaultUserAgentProvider: import("@
|
|
15
|
-
import("@
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
16
|
>;
|
|
17
|
-
eventStreamPayloadHandlerProvider: import("@
|
|
18
|
-
eventStreamSerdeProvider: import("@
|
|
19
|
-
maxAttempts: number | import("@
|
|
20
|
-
region: string | import("@
|
|
17
|
+
eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
|
|
18
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
21
21
|
requestHandler:
|
|
22
|
-
| (import("@
|
|
22
|
+
| (import("@smithy/types").RequestHandler<
|
|
23
23
|
any,
|
|
24
24
|
any,
|
|
25
|
-
import("@
|
|
25
|
+
import("@smithy/types").HttpHandlerOptions
|
|
26
26
|
> &
|
|
27
27
|
import("@smithy/protocol-http").HttpHandler)
|
|
28
28
|
| RequestHandler;
|
|
29
29
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
30
|
-
sha256: import("@
|
|
30
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
31
31
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
32
|
-
useDualstackEndpoint: boolean | import("@
|
|
33
|
-
useFipsEndpoint: boolean | import("@
|
|
32
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
34
|
apiVersion: string;
|
|
35
|
-
urlParser: import("@
|
|
35
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
36
36
|
base64Decoder: import("@smithy/types").Decoder;
|
|
37
37
|
base64Encoder: import("@smithy/types").Encoder;
|
|
38
38
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
39
39
|
utf8Encoder: import("@smithy/types").Encoder;
|
|
40
40
|
disableHostPrefix: boolean;
|
|
41
41
|
serviceId: string;
|
|
42
|
-
logger: import("@
|
|
42
|
+
logger: import("@smithy/types").Logger;
|
|
43
43
|
endpoint?:
|
|
44
44
|
| ((
|
|
45
45
|
| string
|
|
46
|
-
| import("@
|
|
47
|
-
| import("@
|
|
48
|
-
| import("@
|
|
49
|
-
| import("@
|
|
46
|
+
| import("@smithy/types").Endpoint
|
|
47
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
48
|
+
| import("@smithy/types").EndpointV2
|
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
50
50
|
) &
|
|
51
51
|
(
|
|
52
52
|
| string
|
|
53
53
|
| import("@smithy/types").Endpoint
|
|
54
54
|
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
55
|
| import("@smithy/types").Provider<string>
|
|
56
|
-
| import("@
|
|
57
|
-
| import("@smithy/types").Provider<
|
|
58
|
-
import("@aws-sdk/types").EndpointV2
|
|
59
|
-
>
|
|
56
|
+
| import("@smithy/types").EndpointV2
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
60
58
|
))
|
|
61
59
|
| undefined;
|
|
62
60
|
endpointProvider: (
|
|
63
61
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
64
62
|
context?: {
|
|
65
|
-
logger?: import("@
|
|
63
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
66
64
|
}
|
|
67
|
-
) => import("@
|
|
65
|
+
) => import("@smithy/types").EndpointV2;
|
|
68
66
|
tls?: boolean | undefined;
|
|
69
67
|
retryStrategy?:
|
|
70
|
-
| import("@
|
|
71
|
-
| import("@
|
|
68
|
+
| import("@smithy/types").RetryStrategy
|
|
69
|
+
| import("@smithy/types").RetryStrategyV2
|
|
72
70
|
| undefined;
|
|
73
71
|
credentials?:
|
|
74
|
-
| import("@
|
|
75
|
-
| import("@
|
|
76
|
-
import("@
|
|
72
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
73
|
+
| import("@smithy/types").Provider<
|
|
74
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
77
75
|
>
|
|
78
76
|
| undefined;
|
|
79
77
|
signer?:
|
|
80
|
-
| import("@
|
|
78
|
+
| import("@smithy/types").RequestSigner
|
|
81
79
|
| ((
|
|
82
|
-
authScheme?: import("@
|
|
83
|
-
) => Promise<import("@
|
|
80
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
81
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
84
82
|
| undefined;
|
|
85
83
|
signingEscapePath?: boolean | undefined;
|
|
86
84
|
systemClockOffset?: number | undefined;
|
|
87
85
|
signingRegion?: string | undefined;
|
|
88
86
|
signerConstructor?:
|
|
89
87
|
| (new (
|
|
90
|
-
options: import("@
|
|
91
|
-
import("@
|
|
92
|
-
) => import("@
|
|
88
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
89
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
90
|
+
) => import("@smithy/types").RequestSigner)
|
|
93
91
|
| undefined;
|
|
94
|
-
customUserAgent?: string | import("@
|
|
92
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
95
93
|
};
|