@aws-sdk/client-ivs-realtime 3.298.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 +373 -0
- package/dist-cjs/IVSRealTime.js +157 -0
- package/dist-cjs/IVSRealTimeClient.js +40 -0
- package/dist-cjs/commands/CreateParticipantTokenCommand.js +45 -0
- package/dist-cjs/commands/CreateStageCommand.js +45 -0
- package/dist-cjs/commands/DeleteStageCommand.js +45 -0
- package/dist-cjs/commands/DisconnectParticipantCommand.js +45 -0
- package/dist-cjs/commands/GetStageCommand.js +45 -0
- package/dist-cjs/commands/ListStagesCommand.js +45 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +45 -0
- package/dist-cjs/commands/TagResourceCommand.js +45 -0
- package/dist-cjs/commands/UntagResourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateStageCommand.js +45 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/IVSRealTimeServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +107 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListStagesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +922 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/IVSRealTime.js +153 -0
- package/dist-es/IVSRealTimeClient.js +36 -0
- package/dist-es/commands/CreateParticipantTokenCommand.js +41 -0
- package/dist-es/commands/CreateStageCommand.js +41 -0
- package/dist-es/commands/DeleteStageCommand.js +41 -0
- package/dist-es/commands/DisconnectParticipantCommand.js +41 -0
- package/dist-es/commands/GetStageCommand.js +41 -0
- package/dist-es/commands/ListStagesCommand.js +41 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +41 -0
- package/dist-es/commands/TagResourceCommand.js +41 -0
- package/dist-es/commands/UntagResourceCommand.js +41 -0
- package/dist-es/commands/UpdateStageCommand.js +41 -0
- package/dist-es/commands/index.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 +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/IVSRealTimeServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +97 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListStagesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +899 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/IVSRealTime.d.ts +175 -0
- package/dist-types/IVSRealTimeClient.d.ts +256 -0
- package/dist-types/commands/CreateParticipantTokenCommand.d.ts +77 -0
- package/dist-types/commands/CreateStageCommand.d.ts +72 -0
- package/dist-types/commands/DeleteStageCommand.d.ts +75 -0
- package/dist-types/commands/DisconnectParticipantCommand.d.ts +72 -0
- package/dist-types/commands/GetStageCommand.d.ts +69 -0
- package/dist-types/commands/ListStagesCommand.d.ts +69 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +69 -0
- package/dist-types/commands/TagResourceCommand.d.ts +69 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +69 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +75 -0
- package/dist-types/commands/index.d.ts +10 -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 +6 -0
- package/dist-types/models/IVSRealTimeServiceException.d.ts +12 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +477 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListStagesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +32 -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 +18 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +174 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +172 -0
- package/dist-types/ts3.4/commands/CreateParticipantTokenCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateStageCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteStageCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetStageCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListStagesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateStageCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -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 +6 -0
- package/dist-types/ts3.4/models/IVSRealTimeServiceException.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 +153 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListStagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +98 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { IVSRealTimeClientConfig } from "./IVSRealTimeClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
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
|
+
serviceId: string;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
24
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
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,18 @@
|
|
|
1
|
+
import { IVSRealTimeClientConfig } from "./IVSRealTimeClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
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
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
18
|
+
};
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateParticipantTokenCommandInput,
|
|
4
|
+
CreateParticipantTokenCommandOutput,
|
|
5
|
+
} from "./commands/CreateParticipantTokenCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateStageCommandInput,
|
|
8
|
+
CreateStageCommandOutput,
|
|
9
|
+
} from "./commands/CreateStageCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteStageCommandInput,
|
|
12
|
+
DeleteStageCommandOutput,
|
|
13
|
+
} from "./commands/DeleteStageCommand";
|
|
14
|
+
import {
|
|
15
|
+
DisconnectParticipantCommandInput,
|
|
16
|
+
DisconnectParticipantCommandOutput,
|
|
17
|
+
} from "./commands/DisconnectParticipantCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetStageCommandInput,
|
|
20
|
+
GetStageCommandOutput,
|
|
21
|
+
} from "./commands/GetStageCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListStagesCommandInput,
|
|
24
|
+
ListStagesCommandOutput,
|
|
25
|
+
} from "./commands/ListStagesCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListTagsForResourceCommandInput,
|
|
28
|
+
ListTagsForResourceCommandOutput,
|
|
29
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
30
|
+
import {
|
|
31
|
+
TagResourceCommandInput,
|
|
32
|
+
TagResourceCommandOutput,
|
|
33
|
+
} from "./commands/TagResourceCommand";
|
|
34
|
+
import {
|
|
35
|
+
UntagResourceCommandInput,
|
|
36
|
+
UntagResourceCommandOutput,
|
|
37
|
+
} from "./commands/UntagResourceCommand";
|
|
38
|
+
import {
|
|
39
|
+
UpdateStageCommandInput,
|
|
40
|
+
UpdateStageCommandOutput,
|
|
41
|
+
} from "./commands/UpdateStageCommand";
|
|
42
|
+
import { IVSRealTimeClient } from "./IVSRealTimeClient";
|
|
43
|
+
export declare class IVSRealTime extends IVSRealTimeClient {
|
|
44
|
+
createParticipantToken(
|
|
45
|
+
args: CreateParticipantTokenCommandInput,
|
|
46
|
+
options?: __HttpHandlerOptions
|
|
47
|
+
): Promise<CreateParticipantTokenCommandOutput>;
|
|
48
|
+
createParticipantToken(
|
|
49
|
+
args: CreateParticipantTokenCommandInput,
|
|
50
|
+
cb: (err: any, data?: CreateParticipantTokenCommandOutput) => void
|
|
51
|
+
): void;
|
|
52
|
+
createParticipantToken(
|
|
53
|
+
args: CreateParticipantTokenCommandInput,
|
|
54
|
+
options: __HttpHandlerOptions,
|
|
55
|
+
cb: (err: any, data?: CreateParticipantTokenCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
createStage(
|
|
58
|
+
args: CreateStageCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<CreateStageCommandOutput>;
|
|
61
|
+
createStage(
|
|
62
|
+
args: CreateStageCommandInput,
|
|
63
|
+
cb: (err: any, data?: CreateStageCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
createStage(
|
|
66
|
+
args: CreateStageCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: CreateStageCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
deleteStage(
|
|
71
|
+
args: DeleteStageCommandInput,
|
|
72
|
+
options?: __HttpHandlerOptions
|
|
73
|
+
): Promise<DeleteStageCommandOutput>;
|
|
74
|
+
deleteStage(
|
|
75
|
+
args: DeleteStageCommandInput,
|
|
76
|
+
cb: (err: any, data?: DeleteStageCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
deleteStage(
|
|
79
|
+
args: DeleteStageCommandInput,
|
|
80
|
+
options: __HttpHandlerOptions,
|
|
81
|
+
cb: (err: any, data?: DeleteStageCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
disconnectParticipant(
|
|
84
|
+
args: DisconnectParticipantCommandInput,
|
|
85
|
+
options?: __HttpHandlerOptions
|
|
86
|
+
): Promise<DisconnectParticipantCommandOutput>;
|
|
87
|
+
disconnectParticipant(
|
|
88
|
+
args: DisconnectParticipantCommandInput,
|
|
89
|
+
cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
|
|
90
|
+
): void;
|
|
91
|
+
disconnectParticipant(
|
|
92
|
+
args: DisconnectParticipantCommandInput,
|
|
93
|
+
options: __HttpHandlerOptions,
|
|
94
|
+
cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
|
|
95
|
+
): void;
|
|
96
|
+
getStage(
|
|
97
|
+
args: GetStageCommandInput,
|
|
98
|
+
options?: __HttpHandlerOptions
|
|
99
|
+
): Promise<GetStageCommandOutput>;
|
|
100
|
+
getStage(
|
|
101
|
+
args: GetStageCommandInput,
|
|
102
|
+
cb: (err: any, data?: GetStageCommandOutput) => void
|
|
103
|
+
): void;
|
|
104
|
+
getStage(
|
|
105
|
+
args: GetStageCommandInput,
|
|
106
|
+
options: __HttpHandlerOptions,
|
|
107
|
+
cb: (err: any, data?: GetStageCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
listStages(
|
|
110
|
+
args: ListStagesCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<ListStagesCommandOutput>;
|
|
113
|
+
listStages(
|
|
114
|
+
args: ListStagesCommandInput,
|
|
115
|
+
cb: (err: any, data?: ListStagesCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
listStages(
|
|
118
|
+
args: ListStagesCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: ListStagesCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
listTagsForResource(
|
|
123
|
+
args: ListTagsForResourceCommandInput,
|
|
124
|
+
options?: __HttpHandlerOptions
|
|
125
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
126
|
+
listTagsForResource(
|
|
127
|
+
args: ListTagsForResourceCommandInput,
|
|
128
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
listTagsForResource(
|
|
131
|
+
args: ListTagsForResourceCommandInput,
|
|
132
|
+
options: __HttpHandlerOptions,
|
|
133
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
tagResource(
|
|
136
|
+
args: TagResourceCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<TagResourceCommandOutput>;
|
|
139
|
+
tagResource(
|
|
140
|
+
args: TagResourceCommandInput,
|
|
141
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
tagResource(
|
|
144
|
+
args: TagResourceCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
untagResource(
|
|
149
|
+
args: UntagResourceCommandInput,
|
|
150
|
+
options?: __HttpHandlerOptions
|
|
151
|
+
): Promise<UntagResourceCommandOutput>;
|
|
152
|
+
untagResource(
|
|
153
|
+
args: UntagResourceCommandInput,
|
|
154
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
untagResource(
|
|
157
|
+
args: UntagResourceCommandInput,
|
|
158
|
+
options: __HttpHandlerOptions,
|
|
159
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
160
|
+
): void;
|
|
161
|
+
updateStage(
|
|
162
|
+
args: UpdateStageCommandInput,
|
|
163
|
+
options?: __HttpHandlerOptions
|
|
164
|
+
): Promise<UpdateStageCommandOutput>;
|
|
165
|
+
updateStage(
|
|
166
|
+
args: UpdateStageCommandInput,
|
|
167
|
+
cb: (err: any, data?: UpdateStageCommandOutput) => void
|
|
168
|
+
): void;
|
|
169
|
+
updateStage(
|
|
170
|
+
args: UpdateStageCommandInput,
|
|
171
|
+
options: __HttpHandlerOptions,
|
|
172
|
+
cb: (err: any, data?: UpdateStageCommandOutput) => void
|
|
173
|
+
): void;
|
|
174
|
+
}
|
|
@@ -0,0 +1,172 @@
|
|
|
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 as __DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
35
|
+
Credentials as __Credentials,
|
|
36
|
+
Decoder as __Decoder,
|
|
37
|
+
Encoder as __Encoder,
|
|
38
|
+
HashConstructor as __HashConstructor,
|
|
39
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
40
|
+
Logger as __Logger,
|
|
41
|
+
Provider as __Provider,
|
|
42
|
+
Provider,
|
|
43
|
+
StreamCollector as __StreamCollector,
|
|
44
|
+
UrlParser as __UrlParser,
|
|
45
|
+
UserAgent as __UserAgent,
|
|
46
|
+
} from "@aws-sdk/types";
|
|
47
|
+
import {
|
|
48
|
+
CreateParticipantTokenCommandInput,
|
|
49
|
+
CreateParticipantTokenCommandOutput,
|
|
50
|
+
} from "./commands/CreateParticipantTokenCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateStageCommandInput,
|
|
53
|
+
CreateStageCommandOutput,
|
|
54
|
+
} from "./commands/CreateStageCommand";
|
|
55
|
+
import {
|
|
56
|
+
DeleteStageCommandInput,
|
|
57
|
+
DeleteStageCommandOutput,
|
|
58
|
+
} from "./commands/DeleteStageCommand";
|
|
59
|
+
import {
|
|
60
|
+
DisconnectParticipantCommandInput,
|
|
61
|
+
DisconnectParticipantCommandOutput,
|
|
62
|
+
} from "./commands/DisconnectParticipantCommand";
|
|
63
|
+
import {
|
|
64
|
+
GetStageCommandInput,
|
|
65
|
+
GetStageCommandOutput,
|
|
66
|
+
} from "./commands/GetStageCommand";
|
|
67
|
+
import {
|
|
68
|
+
ListStagesCommandInput,
|
|
69
|
+
ListStagesCommandOutput,
|
|
70
|
+
} from "./commands/ListStagesCommand";
|
|
71
|
+
import {
|
|
72
|
+
ListTagsForResourceCommandInput,
|
|
73
|
+
ListTagsForResourceCommandOutput,
|
|
74
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
75
|
+
import {
|
|
76
|
+
TagResourceCommandInput,
|
|
77
|
+
TagResourceCommandOutput,
|
|
78
|
+
} from "./commands/TagResourceCommand";
|
|
79
|
+
import {
|
|
80
|
+
UntagResourceCommandInput,
|
|
81
|
+
UntagResourceCommandOutput,
|
|
82
|
+
} from "./commands/UntagResourceCommand";
|
|
83
|
+
import {
|
|
84
|
+
UpdateStageCommandInput,
|
|
85
|
+
UpdateStageCommandOutput,
|
|
86
|
+
} from "./commands/UpdateStageCommand";
|
|
87
|
+
import {
|
|
88
|
+
ClientInputEndpointParameters,
|
|
89
|
+
ClientResolvedEndpointParameters,
|
|
90
|
+
EndpointParameters,
|
|
91
|
+
} from "./endpoint/EndpointParameters";
|
|
92
|
+
export type ServiceInputTypes =
|
|
93
|
+
| CreateParticipantTokenCommandInput
|
|
94
|
+
| CreateStageCommandInput
|
|
95
|
+
| DeleteStageCommandInput
|
|
96
|
+
| DisconnectParticipantCommandInput
|
|
97
|
+
| GetStageCommandInput
|
|
98
|
+
| ListStagesCommandInput
|
|
99
|
+
| ListTagsForResourceCommandInput
|
|
100
|
+
| TagResourceCommandInput
|
|
101
|
+
| UntagResourceCommandInput
|
|
102
|
+
| UpdateStageCommandInput;
|
|
103
|
+
export type ServiceOutputTypes =
|
|
104
|
+
| CreateParticipantTokenCommandOutput
|
|
105
|
+
| CreateStageCommandOutput
|
|
106
|
+
| DeleteStageCommandOutput
|
|
107
|
+
| DisconnectParticipantCommandOutput
|
|
108
|
+
| GetStageCommandOutput
|
|
109
|
+
| ListStagesCommandOutput
|
|
110
|
+
| ListTagsForResourceCommandOutput
|
|
111
|
+
| TagResourceCommandOutput
|
|
112
|
+
| UntagResourceCommandOutput
|
|
113
|
+
| UpdateStageCommandOutput;
|
|
114
|
+
export interface ClientDefaults
|
|
115
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
116
|
+
requestHandler?: __HttpHandler;
|
|
117
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
118
|
+
urlParser?: __UrlParser;
|
|
119
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
120
|
+
streamCollector?: __StreamCollector;
|
|
121
|
+
base64Decoder?: __Decoder;
|
|
122
|
+
base64Encoder?: __Encoder;
|
|
123
|
+
utf8Decoder?: __Decoder;
|
|
124
|
+
utf8Encoder?: __Encoder;
|
|
125
|
+
runtime?: string;
|
|
126
|
+
disableHostPrefix?: boolean;
|
|
127
|
+
serviceId?: string;
|
|
128
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
129
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
130
|
+
region?: string | __Provider<string>;
|
|
131
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
132
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
133
|
+
maxAttempts?: number | __Provider<number>;
|
|
134
|
+
retryMode?: string | __Provider<string>;
|
|
135
|
+
logger?: __Logger;
|
|
136
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
137
|
+
}
|
|
138
|
+
type IVSRealTimeClientConfigType = Partial<
|
|
139
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
140
|
+
> &
|
|
141
|
+
ClientDefaults &
|
|
142
|
+
RegionInputConfig &
|
|
143
|
+
EndpointInputConfig<EndpointParameters> &
|
|
144
|
+
RetryInputConfig &
|
|
145
|
+
HostHeaderInputConfig &
|
|
146
|
+
AwsAuthInputConfig &
|
|
147
|
+
UserAgentInputConfig &
|
|
148
|
+
ClientInputEndpointParameters;
|
|
149
|
+
export interface IVSRealTimeClientConfig extends IVSRealTimeClientConfigType {}
|
|
150
|
+
type IVSRealTimeClientResolvedConfigType =
|
|
151
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
152
|
+
Required<ClientDefaults> &
|
|
153
|
+
RegionResolvedConfig &
|
|
154
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
155
|
+
RetryResolvedConfig &
|
|
156
|
+
HostHeaderResolvedConfig &
|
|
157
|
+
AwsAuthResolvedConfig &
|
|
158
|
+
UserAgentResolvedConfig &
|
|
159
|
+
ClientResolvedEndpointParameters;
|
|
160
|
+
export interface IVSRealTimeClientResolvedConfig
|
|
161
|
+
extends IVSRealTimeClientResolvedConfigType {}
|
|
162
|
+
export declare class IVSRealTimeClient extends __Client<
|
|
163
|
+
__HttpHandlerOptions,
|
|
164
|
+
ServiceInputTypes,
|
|
165
|
+
ServiceOutputTypes,
|
|
166
|
+
IVSRealTimeClientResolvedConfig
|
|
167
|
+
> {
|
|
168
|
+
readonly config: IVSRealTimeClientResolvedConfig;
|
|
169
|
+
constructor(configuration: IVSRealTimeClientConfig);
|
|
170
|
+
destroy(): void;
|
|
171
|
+
}
|
|
172
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateParticipantTokenRequest,
|
|
16
|
+
CreateParticipantTokenResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateParticipantTokenCommandInput
|
|
19
|
+
extends CreateParticipantTokenRequest {}
|
|
20
|
+
export interface CreateParticipantTokenCommandOutput
|
|
21
|
+
extends CreateParticipantTokenResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateParticipantTokenCommand extends $Command<
|
|
24
|
+
CreateParticipantTokenCommandInput,
|
|
25
|
+
CreateParticipantTokenCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateParticipantTokenCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateParticipantTokenCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateParticipantTokenCommandInput,
|
|
37
|
+
CreateParticipantTokenCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import { CreateStageRequest, CreateStageResponse } from "../models/models_0";
|
|
15
|
+
export interface CreateStageCommandInput extends CreateStageRequest {}
|
|
16
|
+
export interface CreateStageCommandOutput
|
|
17
|
+
extends CreateStageResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateStageCommand extends $Command<
|
|
20
|
+
CreateStageCommandInput,
|
|
21
|
+
CreateStageCommandOutput,
|
|
22
|
+
IVSRealTimeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateStageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateStageCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateStageCommandInput, CreateStageCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import { DeleteStageRequest, DeleteStageResponse } from "../models/models_0";
|
|
15
|
+
export interface DeleteStageCommandInput extends DeleteStageRequest {}
|
|
16
|
+
export interface DeleteStageCommandOutput
|
|
17
|
+
extends DeleteStageResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteStageCommand extends $Command<
|
|
20
|
+
DeleteStageCommandInput,
|
|
21
|
+
DeleteStageCommandOutput,
|
|
22
|
+
IVSRealTimeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteStageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteStageCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteStageCommandInput, DeleteStageCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
DisconnectParticipantRequest,
|
|
16
|
+
DisconnectParticipantResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DisconnectParticipantCommandInput
|
|
19
|
+
extends DisconnectParticipantRequest {}
|
|
20
|
+
export interface DisconnectParticipantCommandOutput
|
|
21
|
+
extends DisconnectParticipantResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DisconnectParticipantCommand extends $Command<
|
|
24
|
+
DisconnectParticipantCommandInput,
|
|
25
|
+
DisconnectParticipantCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DisconnectParticipantCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DisconnectParticipantCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DisconnectParticipantCommandInput,
|
|
37
|
+
DisconnectParticipantCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import { GetStageRequest, GetStageResponse } from "../models/models_0";
|
|
15
|
+
export interface GetStageCommandInput extends GetStageRequest {}
|
|
16
|
+
export interface GetStageCommandOutput
|
|
17
|
+
extends GetStageResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetStageCommand extends $Command<
|
|
20
|
+
GetStageCommandInput,
|
|
21
|
+
GetStageCommandOutput,
|
|
22
|
+
IVSRealTimeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetStageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetStageCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetStageCommandInput, GetStageCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import { ListStagesRequest, ListStagesResponse } from "../models/models_0";
|
|
15
|
+
export interface ListStagesCommandInput extends ListStagesRequest {}
|
|
16
|
+
export interface ListStagesCommandOutput
|
|
17
|
+
extends ListStagesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListStagesCommand extends $Command<
|
|
20
|
+
ListStagesCommandInput,
|
|
21
|
+
ListStagesCommandOutput,
|
|
22
|
+
IVSRealTimeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListStagesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListStagesCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListStagesCommandInput, ListStagesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
ListTagsForResourceRequest,
|
|
16
|
+
ListTagsForResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListTagsForResourceCommandInput
|
|
19
|
+
extends ListTagsForResourceRequest {}
|
|
20
|
+
export interface ListTagsForResourceCommandOutput
|
|
21
|
+
extends ListTagsForResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|