@aws-sdk/client-kinesis-video-webrtc-storage 3.234.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 +212 -0
- package/dist-cjs/KinesisVideoWebRTCStorage.js +37 -0
- package/dist-cjs/KinesisVideoWebRTCStorageClient.js +40 -0
- package/dist-cjs/commands/JoinStorageSessionAsViewerCommand.js +46 -0
- package/dist-cjs/commands/JoinStorageSessionCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +303 -0
- package/dist-cjs/index.js +10 -0
- package/dist-cjs/models/KinesisVideoWebRTCStorageServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +64 -0
- package/dist-cjs/protocols/Aws_restJson1.js +237 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +51 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/KinesisVideoWebRTCStorage.js +33 -0
- package/dist-es/KinesisVideoWebRTCStorageClient.js +36 -0
- package/dist-es/commands/JoinStorageSessionAsViewerCommand.js +42 -0
- package/dist-es/commands/JoinStorageSessionCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +300 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/KinesisVideoWebRTCStorageServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +55 -0
- package/dist-es/protocols/Aws_restJson1.js +230 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +46 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/KinesisVideoWebRTCStorage.d.ts +60 -0
- package/dist-types/KinesisVideoWebRTCStorageClient.d.ts +144 -0
- package/dist-types/commands/JoinStorageSessionAsViewerCommand.d.ts +54 -0
- package/dist-types/commands/JoinStorageSessionCommand.d.ts +58 -0
- package/dist-types/commands/index.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/index.d.ts +5 -0
- package/dist-types/models/KinesisVideoWebRTCStorageServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +105 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +8 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/KinesisVideoWebRTCStorage.d.ts +38 -0
- package/dist-types/ts3.4/KinesisVideoWebRTCStorageClient.d.ts +124 -0
- package/dist-types/ts3.4/commands/JoinStorageSessionAsViewerCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/JoinStorageSessionCommand.d.ts +33 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -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/index.d.ts +5 -0
- package/dist-types/ts3.4/models/KinesisVideoWebRTCStorageServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +43 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +29 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +82 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +102 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { KinesisVideoWebRTCStorageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoWebRTCStorageClient";
|
|
5
|
+
import { JoinStorageSessionInput } from "../models/models_0";
|
|
6
|
+
export interface JoinStorageSessionCommandInput extends JoinStorageSessionInput {
|
|
7
|
+
}
|
|
8
|
+
export interface JoinStorageSessionCommandOutput extends __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>
|
|
12
|
+
* Join the ongoing one way-video and/or multi-way audio WebRTC session as
|
|
13
|
+
* a video producing device for an input channel. If there’s no existing
|
|
14
|
+
* session for the channel, a new streaming session needs to be created, and the
|
|
15
|
+
* Amazon Resource Name (ARN) of the signaling channel must be provided.
|
|
16
|
+
* </p>
|
|
17
|
+
* <p>Currently for the <code>SINGLE_MASTER</code> type, a video producing
|
|
18
|
+
* device is able to ingest both audio and video media into a stream,
|
|
19
|
+
* while viewers can only ingest audio. Both a video producing device
|
|
20
|
+
* and viewers can join the session first, and wait for other participants.</p>
|
|
21
|
+
* <p>While participants are having peer to peer conversations through webRTC,
|
|
22
|
+
* the ingested media session will be stored into the Kinesis Video Stream.
|
|
23
|
+
* Multiple viewers are able to playback real-time media.</p>
|
|
24
|
+
* <p>Customers can also use existing Kinesis Video Streams features like
|
|
25
|
+
* <code>HLS</code> or <code>DASH</code> playback, Image generation, and more
|
|
26
|
+
* with ingested WebRTC media.</p>
|
|
27
|
+
* <note>
|
|
28
|
+
* <p>Assume that only one video producing device client
|
|
29
|
+
* can be associated with a session for the channel. If more than one
|
|
30
|
+
* client joins the session of a specific channel as a video producing device,
|
|
31
|
+
* the most recent client request takes precedence. </p>
|
|
32
|
+
* </note>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { KinesisVideoWebRTCStorageClient, JoinStorageSessionCommand } from "@aws-sdk/client-kinesis-video-webrtc-storage"; // ES Modules import
|
|
37
|
+
* // const { KinesisVideoWebRTCStorageClient, JoinStorageSessionCommand } = require("@aws-sdk/client-kinesis-video-webrtc-storage"); // CommonJS import
|
|
38
|
+
* const client = new KinesisVideoWebRTCStorageClient(config);
|
|
39
|
+
* const command = new JoinStorageSessionCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @see {@link JoinStorageSessionCommandInput} for command's `input` shape.
|
|
44
|
+
* @see {@link JoinStorageSessionCommandOutput} for command's `response` shape.
|
|
45
|
+
* @see {@link KinesisVideoWebRTCStorageClientResolvedConfig | config} for KinesisVideoWebRTCStorageClient's `config` shape.
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
export declare class JoinStorageSessionCommand extends $Command<JoinStorageSessionCommandInput, JoinStorageSessionCommandOutput, KinesisVideoWebRTCStorageClientResolvedConfig> {
|
|
49
|
+
readonly input: JoinStorageSessionCommandInput;
|
|
50
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
constructor(input: JoinStorageSessionCommandInput);
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoWebRTCStorageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<JoinStorageSessionCommandInput, JoinStorageSessionCommandOutput>;
|
|
56
|
+
private serialize;
|
|
57
|
+
private deserialize;
|
|
58
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, 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> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
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
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from KinesisVideoWebRTCStorage service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class KinesisVideoWebRTCStorageServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { KinesisVideoWebRTCStorageServiceException as __BaseException } from "./KinesisVideoWebRTCStorageServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <ol>
|
|
5
|
+
* <li>
|
|
6
|
+
* <p>You do not have required permissions to perform this operation</p>
|
|
7
|
+
* </li>
|
|
8
|
+
* </ol>
|
|
9
|
+
* <ol>
|
|
10
|
+
* <li>
|
|
11
|
+
* <p>The <code>AccessDeniedException</code> can be thrown for operation access as well as tokens or resource access</p>
|
|
12
|
+
* </li>
|
|
13
|
+
* </ol>
|
|
14
|
+
*/
|
|
15
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
16
|
+
readonly name: "AccessDeniedException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* <p>
|
|
25
|
+
* Kinesis Video Streams has throttled the request because you have exceeded the limit of allowed client calls. Try making the call later.
|
|
26
|
+
* </p>
|
|
27
|
+
*/
|
|
28
|
+
export declare class ClientLimitExceededException extends __BaseException {
|
|
29
|
+
readonly name: "ClientLimitExceededException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
constructor(opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* <ol>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>The value for this input parameter is invalid.</p>
|
|
40
|
+
* </li>
|
|
41
|
+
* </ol>
|
|
42
|
+
* <ol>
|
|
43
|
+
* <li>
|
|
44
|
+
* <p>Additional details may <b>not</b>be returned.</p>
|
|
45
|
+
* </li>
|
|
46
|
+
* </ol>
|
|
47
|
+
*/
|
|
48
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
49
|
+
readonly name: "InvalidArgumentException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
55
|
+
}
|
|
56
|
+
export interface JoinStorageSessionInput {
|
|
57
|
+
/**
|
|
58
|
+
* <p>
|
|
59
|
+
* The Amazon Resource Name (ARN) of the signaling channel.
|
|
60
|
+
* </p>
|
|
61
|
+
*/
|
|
62
|
+
channelArn: string | undefined;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <ol>
|
|
66
|
+
* <li>
|
|
67
|
+
* <p>The specified resource is not found</p>
|
|
68
|
+
* </li>
|
|
69
|
+
* </ol>
|
|
70
|
+
* <ol>
|
|
71
|
+
* <li>
|
|
72
|
+
* <p>You have not specified a channel in this API call.</p>
|
|
73
|
+
* </li>
|
|
74
|
+
* </ol>
|
|
75
|
+
*/
|
|
76
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
+
readonly name: "ResourceNotFoundException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
83
|
+
}
|
|
84
|
+
export interface JoinStorageSessionAsViewerInput {
|
|
85
|
+
/**
|
|
86
|
+
* <p>
|
|
87
|
+
* The Amazon Resource Name (ARN) of the signaling channel.
|
|
88
|
+
* </p>
|
|
89
|
+
*/
|
|
90
|
+
channelArn: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>
|
|
93
|
+
* The unique identifier for the sender client.
|
|
94
|
+
* </p>
|
|
95
|
+
*/
|
|
96
|
+
clientId: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
export declare const JoinStorageSessionInputFilterSensitiveLog: (obj: JoinStorageSessionInput) => any;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
export declare const JoinStorageSessionAsViewerInputFilterSensitiveLog: (obj: JoinStorageSessionAsViewerInput) => any;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { JoinStorageSessionAsViewerCommandInput, JoinStorageSessionAsViewerCommandOutput } from "../commands/JoinStorageSessionAsViewerCommand";
|
|
4
|
+
import { JoinStorageSessionCommandInput, JoinStorageSessionCommandOutput } from "../commands/JoinStorageSessionCommand";
|
|
5
|
+
export declare const serializeAws_restJson1JoinStorageSessionCommand: (input: JoinStorageSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
6
|
+
export declare const serializeAws_restJson1JoinStorageSessionAsViewerCommand: (input: JoinStorageSessionAsViewerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
7
|
+
export declare const deserializeAws_restJson1JoinStorageSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<JoinStorageSessionCommandOutput>;
|
|
8
|
+
export declare const deserializeAws_restJson1JoinStorageSessionAsViewerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<JoinStorageSessionAsViewerCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: KinesisVideoWebRTCStorageClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
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").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: KinesisVideoWebRTCStorageClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
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").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: KinesisVideoWebRTCStorageClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
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> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: KinesisVideoWebRTCStorageClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
12
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
JoinStorageSessionAsViewerCommandInput,
|
|
4
|
+
JoinStorageSessionAsViewerCommandOutput,
|
|
5
|
+
} from "./commands/JoinStorageSessionAsViewerCommand";
|
|
6
|
+
import {
|
|
7
|
+
JoinStorageSessionCommandInput,
|
|
8
|
+
JoinStorageSessionCommandOutput,
|
|
9
|
+
} from "./commands/JoinStorageSessionCommand";
|
|
10
|
+
import { KinesisVideoWebRTCStorageClient } from "./KinesisVideoWebRTCStorageClient";
|
|
11
|
+
export declare class KinesisVideoWebRTCStorage extends KinesisVideoWebRTCStorageClient {
|
|
12
|
+
joinStorageSession(
|
|
13
|
+
args: JoinStorageSessionCommandInput,
|
|
14
|
+
options?: __HttpHandlerOptions
|
|
15
|
+
): Promise<JoinStorageSessionCommandOutput>;
|
|
16
|
+
joinStorageSession(
|
|
17
|
+
args: JoinStorageSessionCommandInput,
|
|
18
|
+
cb: (err: any, data?: JoinStorageSessionCommandOutput) => void
|
|
19
|
+
): void;
|
|
20
|
+
joinStorageSession(
|
|
21
|
+
args: JoinStorageSessionCommandInput,
|
|
22
|
+
options: __HttpHandlerOptions,
|
|
23
|
+
cb: (err: any, data?: JoinStorageSessionCommandOutput) => void
|
|
24
|
+
): void;
|
|
25
|
+
joinStorageSessionAsViewer(
|
|
26
|
+
args: JoinStorageSessionAsViewerCommandInput,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Promise<JoinStorageSessionAsViewerCommandOutput>;
|
|
29
|
+
joinStorageSessionAsViewer(
|
|
30
|
+
args: JoinStorageSessionAsViewerCommandInput,
|
|
31
|
+
cb: (err: any, data?: JoinStorageSessionAsViewerCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
joinStorageSessionAsViewer(
|
|
34
|
+
args: JoinStorageSessionAsViewerCommandInput,
|
|
35
|
+
options: __HttpHandlerOptions,
|
|
36
|
+
cb: (err: any, data?: JoinStorageSessionAsViewerCommandOutput) => void
|
|
37
|
+
): void;
|
|
38
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
Client as __Client,
|
|
28
|
+
DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
Decoder as __Decoder,
|
|
36
|
+
Encoder as __Encoder,
|
|
37
|
+
HashConstructor as __HashConstructor,
|
|
38
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
39
|
+
Logger as __Logger,
|
|
40
|
+
Provider as __Provider,
|
|
41
|
+
Provider,
|
|
42
|
+
StreamCollector as __StreamCollector,
|
|
43
|
+
UrlParser as __UrlParser,
|
|
44
|
+
UserAgent as __UserAgent,
|
|
45
|
+
} from "@aws-sdk/types";
|
|
46
|
+
import {
|
|
47
|
+
JoinStorageSessionAsViewerCommandInput,
|
|
48
|
+
JoinStorageSessionAsViewerCommandOutput,
|
|
49
|
+
} from "./commands/JoinStorageSessionAsViewerCommand";
|
|
50
|
+
import {
|
|
51
|
+
JoinStorageSessionCommandInput,
|
|
52
|
+
JoinStorageSessionCommandOutput,
|
|
53
|
+
} from "./commands/JoinStorageSessionCommand";
|
|
54
|
+
import {
|
|
55
|
+
ClientInputEndpointParameters,
|
|
56
|
+
ClientResolvedEndpointParameters,
|
|
57
|
+
EndpointParameters,
|
|
58
|
+
} from "./endpoint/EndpointParameters";
|
|
59
|
+
export declare type ServiceInputTypes =
|
|
60
|
+
| JoinStorageSessionAsViewerCommandInput
|
|
61
|
+
| JoinStorageSessionCommandInput;
|
|
62
|
+
export declare type ServiceOutputTypes =
|
|
63
|
+
| JoinStorageSessionAsViewerCommandOutput
|
|
64
|
+
| JoinStorageSessionCommandOutput;
|
|
65
|
+
export interface ClientDefaults
|
|
66
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
67
|
+
requestHandler?: __HttpHandler;
|
|
68
|
+
sha256?: __HashConstructor;
|
|
69
|
+
urlParser?: __UrlParser;
|
|
70
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
71
|
+
streamCollector?: __StreamCollector;
|
|
72
|
+
base64Decoder?: __Decoder;
|
|
73
|
+
base64Encoder?: __Encoder;
|
|
74
|
+
utf8Decoder?: __Decoder;
|
|
75
|
+
utf8Encoder?: __Encoder;
|
|
76
|
+
runtime?: string;
|
|
77
|
+
disableHostPrefix?: boolean;
|
|
78
|
+
maxAttempts?: number | __Provider<number>;
|
|
79
|
+
retryMode?: string | __Provider<string>;
|
|
80
|
+
logger?: __Logger;
|
|
81
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
82
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
83
|
+
serviceId?: string;
|
|
84
|
+
region?: string | __Provider<string>;
|
|
85
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
86
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
87
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
88
|
+
}
|
|
89
|
+
declare type KinesisVideoWebRTCStorageClientConfigType = Partial<
|
|
90
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
91
|
+
> &
|
|
92
|
+
ClientDefaults &
|
|
93
|
+
RegionInputConfig &
|
|
94
|
+
EndpointInputConfig<EndpointParameters> &
|
|
95
|
+
RetryInputConfig &
|
|
96
|
+
HostHeaderInputConfig &
|
|
97
|
+
AwsAuthInputConfig &
|
|
98
|
+
UserAgentInputConfig &
|
|
99
|
+
ClientInputEndpointParameters;
|
|
100
|
+
export interface KinesisVideoWebRTCStorageClientConfig
|
|
101
|
+
extends KinesisVideoWebRTCStorageClientConfigType {}
|
|
102
|
+
declare type KinesisVideoWebRTCStorageClientResolvedConfigType =
|
|
103
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
104
|
+
Required<ClientDefaults> &
|
|
105
|
+
RegionResolvedConfig &
|
|
106
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
107
|
+
RetryResolvedConfig &
|
|
108
|
+
HostHeaderResolvedConfig &
|
|
109
|
+
AwsAuthResolvedConfig &
|
|
110
|
+
UserAgentResolvedConfig &
|
|
111
|
+
ClientResolvedEndpointParameters;
|
|
112
|
+
export interface KinesisVideoWebRTCStorageClientResolvedConfig
|
|
113
|
+
extends KinesisVideoWebRTCStorageClientResolvedConfigType {}
|
|
114
|
+
export declare class KinesisVideoWebRTCStorageClient extends __Client<
|
|
115
|
+
__HttpHandlerOptions,
|
|
116
|
+
ServiceInputTypes,
|
|
117
|
+
ServiceOutputTypes,
|
|
118
|
+
KinesisVideoWebRTCStorageClientResolvedConfig
|
|
119
|
+
> {
|
|
120
|
+
readonly config: KinesisVideoWebRTCStorageClientResolvedConfig;
|
|
121
|
+
constructor(configuration: KinesisVideoWebRTCStorageClientConfig);
|
|
122
|
+
destroy(): void;
|
|
123
|
+
}
|
|
124
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
KinesisVideoWebRTCStorageClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../KinesisVideoWebRTCStorageClient";
|
|
14
|
+
import { JoinStorageSessionAsViewerInput } from "../models/models_0";
|
|
15
|
+
export interface JoinStorageSessionAsViewerCommandInput
|
|
16
|
+
extends JoinStorageSessionAsViewerInput {}
|
|
17
|
+
export interface JoinStorageSessionAsViewerCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class JoinStorageSessionAsViewerCommand extends $Command<
|
|
20
|
+
JoinStorageSessionAsViewerCommandInput,
|
|
21
|
+
JoinStorageSessionAsViewerCommandOutput,
|
|
22
|
+
KinesisVideoWebRTCStorageClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: JoinStorageSessionAsViewerCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: JoinStorageSessionAsViewerCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisVideoWebRTCStorageClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
JoinStorageSessionAsViewerCommandInput,
|
|
33
|
+
JoinStorageSessionAsViewerCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
KinesisVideoWebRTCStorageClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../KinesisVideoWebRTCStorageClient";
|
|
14
|
+
import { JoinStorageSessionInput } from "../models/models_0";
|
|
15
|
+
export interface JoinStorageSessionCommandInput
|
|
16
|
+
extends JoinStorageSessionInput {}
|
|
17
|
+
export interface JoinStorageSessionCommandOutput extends __MetadataBearer {}
|
|
18
|
+
export declare class JoinStorageSessionCommand extends $Command<
|
|
19
|
+
JoinStorageSessionCommandInput,
|
|
20
|
+
JoinStorageSessionCommandOutput,
|
|
21
|
+
KinesisVideoWebRTCStorageClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: JoinStorageSessionCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
25
|
+
constructor(input: JoinStorageSessionCommandInput);
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: KinesisVideoWebRTCStorageClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<JoinStorageSessionCommandInput, JoinStorageSessionCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/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 declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|