@aws-sdk/client-ivs 3.360.0 → 3.361.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/README.md +29 -1
- package/dist-cjs/Ivs.js +4 -0
- package/dist-cjs/commands/BatchStartViewerSessionRevocationCommand.js +46 -0
- package/dist-cjs/commands/StartViewerSessionRevocationCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +15 -15
- package/dist-cjs/protocols/Aws_restJson1.js +119 -2
- package/dist-es/Ivs.js +4 -0
- package/dist-es/commands/BatchStartViewerSessionRevocationCommand.js +42 -0
- package/dist-es/commands/StartViewerSessionRevocationCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +13 -13
- package/dist-es/protocols/Aws_restJson1.js +113 -0
- package/dist-types/Ivs.d.ts +27 -1
- package/dist-types/IvsClient.d.ts +17 -3
- package/dist-types/commands/BatchStartViewerSessionRevocationCommand.d.ts +90 -0
- package/dist-types/commands/StartViewerSessionRevocationCommand.d.ts +89 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +13 -1
- package/dist-types/models/models_0.d.ts +106 -19
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Ivs.d.ts +40 -0
- package/dist-types/ts3.4/IvsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/BatchStartViewerSessionRevocationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartViewerSessionRevocationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -8
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { BatchGetChannelCommandInput, BatchGetChannelCommandOutput } from "../commands/BatchGetChannelCommand";
|
|
4
4
|
import { BatchGetStreamKeyCommandInput, BatchGetStreamKeyCommandOutput } from "../commands/BatchGetStreamKeyCommand";
|
|
5
|
+
import { BatchStartViewerSessionRevocationCommandInput, BatchStartViewerSessionRevocationCommandOutput } from "../commands/BatchStartViewerSessionRevocationCommand";
|
|
5
6
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
|
|
6
7
|
import { CreateRecordingConfigurationCommandInput, CreateRecordingConfigurationCommandOutput } from "../commands/CreateRecordingConfigurationCommand";
|
|
7
8
|
import { CreateStreamKeyCommandInput, CreateStreamKeyCommandOutput } from "../commands/CreateStreamKeyCommand";
|
|
@@ -24,6 +25,7 @@ import { ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/L
|
|
|
24
25
|
import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
|
|
25
26
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
26
27
|
import { PutMetadataCommandInput, PutMetadataCommandOutput } from "../commands/PutMetadataCommand";
|
|
28
|
+
import { StartViewerSessionRevocationCommandInput, StartViewerSessionRevocationCommandOutput } from "../commands/StartViewerSessionRevocationCommand";
|
|
27
29
|
import { StopStreamCommandInput, StopStreamCommandOutput } from "../commands/StopStreamCommand";
|
|
28
30
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
29
31
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -36,6 +38,10 @@ export declare const se_BatchGetChannelCommand: (input: BatchGetChannelCommandIn
|
|
|
36
38
|
* serializeAws_restJson1BatchGetStreamKeyCommand
|
|
37
39
|
*/
|
|
38
40
|
export declare const se_BatchGetStreamKeyCommand: (input: BatchGetStreamKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
/**
|
|
42
|
+
* serializeAws_restJson1BatchStartViewerSessionRevocationCommand
|
|
43
|
+
*/
|
|
44
|
+
export declare const se_BatchStartViewerSessionRevocationCommand: (input: BatchStartViewerSessionRevocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
45
|
/**
|
|
40
46
|
* serializeAws_restJson1CreateChannelCommand
|
|
41
47
|
*/
|
|
@@ -124,6 +130,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
124
130
|
* serializeAws_restJson1PutMetadataCommand
|
|
125
131
|
*/
|
|
126
132
|
export declare const se_PutMetadataCommand: (input: PutMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
+
/**
|
|
134
|
+
* serializeAws_restJson1StartViewerSessionRevocationCommand
|
|
135
|
+
*/
|
|
136
|
+
export declare const se_StartViewerSessionRevocationCommand: (input: StartViewerSessionRevocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
137
|
/**
|
|
128
138
|
* serializeAws_restJson1StopStreamCommand
|
|
129
139
|
*/
|
|
@@ -148,6 +158,10 @@ export declare const de_BatchGetChannelCommand: (output: __HttpResponse, context
|
|
|
148
158
|
* deserializeAws_restJson1BatchGetStreamKeyCommand
|
|
149
159
|
*/
|
|
150
160
|
export declare const de_BatchGetStreamKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetStreamKeyCommandOutput>;
|
|
161
|
+
/**
|
|
162
|
+
* deserializeAws_restJson1BatchStartViewerSessionRevocationCommand
|
|
163
|
+
*/
|
|
164
|
+
export declare const de_BatchStartViewerSessionRevocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchStartViewerSessionRevocationCommandOutput>;
|
|
151
165
|
/**
|
|
152
166
|
* deserializeAws_restJson1CreateChannelCommand
|
|
153
167
|
*/
|
|
@@ -236,6 +250,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
236
250
|
* deserializeAws_restJson1PutMetadataCommand
|
|
237
251
|
*/
|
|
238
252
|
export declare const de_PutMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMetadataCommandOutput>;
|
|
253
|
+
/**
|
|
254
|
+
* deserializeAws_restJson1StartViewerSessionRevocationCommand
|
|
255
|
+
*/
|
|
256
|
+
export declare const de_StartViewerSessionRevocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartViewerSessionRevocationCommandOutput>;
|
|
239
257
|
/**
|
|
240
258
|
* deserializeAws_restJson1StopStreamCommand
|
|
241
259
|
*/
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
BatchGetStreamKeyCommandInput,
|
|
8
8
|
BatchGetStreamKeyCommandOutput,
|
|
9
9
|
} from "./commands/BatchGetStreamKeyCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchStartViewerSessionRevocationCommandInput,
|
|
12
|
+
BatchStartViewerSessionRevocationCommandOutput,
|
|
13
|
+
} from "./commands/BatchStartViewerSessionRevocationCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateChannelCommandInput,
|
|
12
16
|
CreateChannelCommandOutput,
|
|
@@ -95,6 +99,10 @@ import {
|
|
|
95
99
|
PutMetadataCommandInput,
|
|
96
100
|
PutMetadataCommandOutput,
|
|
97
101
|
} from "./commands/PutMetadataCommand";
|
|
102
|
+
import {
|
|
103
|
+
StartViewerSessionRevocationCommandInput,
|
|
104
|
+
StartViewerSessionRevocationCommandOutput,
|
|
105
|
+
} from "./commands/StartViewerSessionRevocationCommand";
|
|
98
106
|
import {
|
|
99
107
|
StopStreamCommandInput,
|
|
100
108
|
StopStreamCommandOutput,
|
|
@@ -139,6 +147,25 @@ export interface Ivs {
|
|
|
139
147
|
options: __HttpHandlerOptions,
|
|
140
148
|
cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void
|
|
141
149
|
): void;
|
|
150
|
+
batchStartViewerSessionRevocation(
|
|
151
|
+
args: BatchStartViewerSessionRevocationCommandInput,
|
|
152
|
+
options?: __HttpHandlerOptions
|
|
153
|
+
): Promise<BatchStartViewerSessionRevocationCommandOutput>;
|
|
154
|
+
batchStartViewerSessionRevocation(
|
|
155
|
+
args: BatchStartViewerSessionRevocationCommandInput,
|
|
156
|
+
cb: (
|
|
157
|
+
err: any,
|
|
158
|
+
data?: BatchStartViewerSessionRevocationCommandOutput
|
|
159
|
+
) => void
|
|
160
|
+
): void;
|
|
161
|
+
batchStartViewerSessionRevocation(
|
|
162
|
+
args: BatchStartViewerSessionRevocationCommandInput,
|
|
163
|
+
options: __HttpHandlerOptions,
|
|
164
|
+
cb: (
|
|
165
|
+
err: any,
|
|
166
|
+
data?: BatchStartViewerSessionRevocationCommandOutput
|
|
167
|
+
) => void
|
|
168
|
+
): void;
|
|
142
169
|
createChannel(
|
|
143
170
|
args: CreateChannelCommandInput,
|
|
144
171
|
options?: __HttpHandlerOptions
|
|
@@ -425,6 +452,19 @@ export interface Ivs {
|
|
|
425
452
|
options: __HttpHandlerOptions,
|
|
426
453
|
cb: (err: any, data?: PutMetadataCommandOutput) => void
|
|
427
454
|
): void;
|
|
455
|
+
startViewerSessionRevocation(
|
|
456
|
+
args: StartViewerSessionRevocationCommandInput,
|
|
457
|
+
options?: __HttpHandlerOptions
|
|
458
|
+
): Promise<StartViewerSessionRevocationCommandOutput>;
|
|
459
|
+
startViewerSessionRevocation(
|
|
460
|
+
args: StartViewerSessionRevocationCommandInput,
|
|
461
|
+
cb: (err: any, data?: StartViewerSessionRevocationCommandOutput) => void
|
|
462
|
+
): void;
|
|
463
|
+
startViewerSessionRevocation(
|
|
464
|
+
args: StartViewerSessionRevocationCommandInput,
|
|
465
|
+
options: __HttpHandlerOptions,
|
|
466
|
+
cb: (err: any, data?: StartViewerSessionRevocationCommandOutput) => void
|
|
467
|
+
): void;
|
|
428
468
|
stopStream(
|
|
429
469
|
args: StopStreamCommandInput,
|
|
430
470
|
options?: __HttpHandlerOptions
|
|
@@ -54,6 +54,10 @@ import {
|
|
|
54
54
|
BatchGetStreamKeyCommandInput,
|
|
55
55
|
BatchGetStreamKeyCommandOutput,
|
|
56
56
|
} from "./commands/BatchGetStreamKeyCommand";
|
|
57
|
+
import {
|
|
58
|
+
BatchStartViewerSessionRevocationCommandInput,
|
|
59
|
+
BatchStartViewerSessionRevocationCommandOutput,
|
|
60
|
+
} from "./commands/BatchStartViewerSessionRevocationCommand";
|
|
57
61
|
import {
|
|
58
62
|
CreateChannelCommandInput,
|
|
59
63
|
CreateChannelCommandOutput,
|
|
@@ -142,6 +146,10 @@ import {
|
|
|
142
146
|
PutMetadataCommandInput,
|
|
143
147
|
PutMetadataCommandOutput,
|
|
144
148
|
} from "./commands/PutMetadataCommand";
|
|
149
|
+
import {
|
|
150
|
+
StartViewerSessionRevocationCommandInput,
|
|
151
|
+
StartViewerSessionRevocationCommandOutput,
|
|
152
|
+
} from "./commands/StartViewerSessionRevocationCommand";
|
|
145
153
|
import {
|
|
146
154
|
StopStreamCommandInput,
|
|
147
155
|
StopStreamCommandOutput,
|
|
@@ -167,6 +175,7 @@ export { __Client };
|
|
|
167
175
|
export type ServiceInputTypes =
|
|
168
176
|
| BatchGetChannelCommandInput
|
|
169
177
|
| BatchGetStreamKeyCommandInput
|
|
178
|
+
| BatchStartViewerSessionRevocationCommandInput
|
|
170
179
|
| CreateChannelCommandInput
|
|
171
180
|
| CreateRecordingConfigurationCommandInput
|
|
172
181
|
| CreateStreamKeyCommandInput
|
|
@@ -189,6 +198,7 @@ export type ServiceInputTypes =
|
|
|
189
198
|
| ListStreamsCommandInput
|
|
190
199
|
| ListTagsForResourceCommandInput
|
|
191
200
|
| PutMetadataCommandInput
|
|
201
|
+
| StartViewerSessionRevocationCommandInput
|
|
192
202
|
| StopStreamCommandInput
|
|
193
203
|
| TagResourceCommandInput
|
|
194
204
|
| UntagResourceCommandInput
|
|
@@ -196,6 +206,7 @@ export type ServiceInputTypes =
|
|
|
196
206
|
export type ServiceOutputTypes =
|
|
197
207
|
| BatchGetChannelCommandOutput
|
|
198
208
|
| BatchGetStreamKeyCommandOutput
|
|
209
|
+
| BatchStartViewerSessionRevocationCommandOutput
|
|
199
210
|
| CreateChannelCommandOutput
|
|
200
211
|
| CreateRecordingConfigurationCommandOutput
|
|
201
212
|
| CreateStreamKeyCommandOutput
|
|
@@ -218,6 +229,7 @@ export type ServiceOutputTypes =
|
|
|
218
229
|
| ListStreamsCommandOutput
|
|
219
230
|
| ListTagsForResourceCommandOutput
|
|
220
231
|
| PutMetadataCommandOutput
|
|
232
|
+
| StartViewerSessionRevocationCommandOutput
|
|
221
233
|
| StopStreamCommandOutput
|
|
222
234
|
| TagResourceCommandOutput
|
|
223
235
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IvsClient";
|
|
14
|
+
import {
|
|
15
|
+
BatchStartViewerSessionRevocationRequest,
|
|
16
|
+
BatchStartViewerSessionRevocationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface BatchStartViewerSessionRevocationCommandInput
|
|
20
|
+
extends BatchStartViewerSessionRevocationRequest {}
|
|
21
|
+
export interface BatchStartViewerSessionRevocationCommandOutput
|
|
22
|
+
extends BatchStartViewerSessionRevocationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class BatchStartViewerSessionRevocationCommand extends $Command<
|
|
25
|
+
BatchStartViewerSessionRevocationCommandInput,
|
|
26
|
+
BatchStartViewerSessionRevocationCommandOutput,
|
|
27
|
+
IvsClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: BatchStartViewerSessionRevocationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: BatchStartViewerSessionRevocationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IvsClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
BatchStartViewerSessionRevocationCommandInput,
|
|
38
|
+
BatchStartViewerSessionRevocationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IvsClient";
|
|
14
|
+
import {
|
|
15
|
+
StartViewerSessionRevocationRequest,
|
|
16
|
+
StartViewerSessionRevocationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartViewerSessionRevocationCommandInput
|
|
20
|
+
extends StartViewerSessionRevocationRequest {}
|
|
21
|
+
export interface StartViewerSessionRevocationCommandOutput
|
|
22
|
+
extends StartViewerSessionRevocationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartViewerSessionRevocationCommand extends $Command<
|
|
25
|
+
StartViewerSessionRevocationCommandInput,
|
|
26
|
+
StartViewerSessionRevocationCommandOutput,
|
|
27
|
+
IvsClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartViewerSessionRevocationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartViewerSessionRevocationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IvsClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartViewerSessionRevocationCommandInput,
|
|
38
|
+
StartViewerSessionRevocationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./BatchGetChannelCommand";
|
|
2
2
|
export * from "./BatchGetStreamKeyCommand";
|
|
3
|
+
export * from "./BatchStartViewerSessionRevocationCommand";
|
|
3
4
|
export * from "./CreateChannelCommand";
|
|
4
5
|
export * from "./CreateRecordingConfigurationCommand";
|
|
5
6
|
export * from "./CreateStreamKeyCommand";
|
|
@@ -22,6 +23,7 @@ export * from "./ListStreamSessionsCommand";
|
|
|
22
23
|
export * from "./ListStreamsCommand";
|
|
23
24
|
export * from "./ListTagsForResourceCommand";
|
|
24
25
|
export * from "./PutMetadataCommand";
|
|
26
|
+
export * from "./StartViewerSessionRevocationCommand";
|
|
25
27
|
export * from "./StopStreamCommand";
|
|
26
28
|
export * from "./TagResourceCommand";
|
|
27
29
|
export * from "./UntagResourceCommand";
|
|
@@ -65,6 +65,31 @@ export interface BatchGetStreamKeyResponse {
|
|
|
65
65
|
streamKeys?: StreamKey[];
|
|
66
66
|
errors?: BatchError[];
|
|
67
67
|
}
|
|
68
|
+
export interface BatchStartViewerSessionRevocationViewerSession {
|
|
69
|
+
channelArn: string | undefined;
|
|
70
|
+
viewerId: string | undefined;
|
|
71
|
+
viewerSessionVersionsLessThanOrEqualTo?: number;
|
|
72
|
+
}
|
|
73
|
+
export interface BatchStartViewerSessionRevocationRequest {
|
|
74
|
+
viewerSessions: BatchStartViewerSessionRevocationViewerSession[] | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface BatchStartViewerSessionRevocationError {
|
|
77
|
+
channelArn: string | undefined;
|
|
78
|
+
viewerId: string | undefined;
|
|
79
|
+
code?: string;
|
|
80
|
+
message?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface BatchStartViewerSessionRevocationResponse {
|
|
83
|
+
errors?: BatchStartViewerSessionRevocationError[];
|
|
84
|
+
}
|
|
85
|
+
export declare class ValidationException extends __BaseException {
|
|
86
|
+
readonly name: "ValidationException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
exceptionMessage?: string;
|
|
89
|
+
constructor(
|
|
90
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
91
|
+
);
|
|
92
|
+
}
|
|
68
93
|
export interface CreateChannelRequest {
|
|
69
94
|
name?: string;
|
|
70
95
|
latencyMode?: ChannelLatencyMode | string;
|
|
@@ -103,14 +128,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
103
128
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
104
129
|
);
|
|
105
130
|
}
|
|
106
|
-
export declare class ValidationException extends __BaseException {
|
|
107
|
-
readonly name: "ValidationException";
|
|
108
|
-
readonly $fault: "client";
|
|
109
|
-
exceptionMessage?: string;
|
|
110
|
-
constructor(
|
|
111
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
112
|
-
);
|
|
113
|
-
}
|
|
114
131
|
export declare class ConflictException extends __BaseException {
|
|
115
132
|
readonly name: "ConflictException";
|
|
116
133
|
readonly $fault: "client";
|
|
@@ -415,6 +432,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
415
432
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
416
433
|
);
|
|
417
434
|
}
|
|
435
|
+
export interface StartViewerSessionRevocationRequest {
|
|
436
|
+
channelArn: string | undefined;
|
|
437
|
+
viewerId: string | undefined;
|
|
438
|
+
viewerSessionVersionsLessThanOrEqualTo?: number;
|
|
439
|
+
}
|
|
440
|
+
export interface StartViewerSessionRevocationResponse {}
|
|
418
441
|
export interface StopStreamRequest {
|
|
419
442
|
channelArn: string | undefined;
|
|
420
443
|
}
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
BatchGetStreamKeyCommandInput,
|
|
12
12
|
BatchGetStreamKeyCommandOutput,
|
|
13
13
|
} from "../commands/BatchGetStreamKeyCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchStartViewerSessionRevocationCommandInput,
|
|
16
|
+
BatchStartViewerSessionRevocationCommandOutput,
|
|
17
|
+
} from "../commands/BatchStartViewerSessionRevocationCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateChannelCommandInput,
|
|
16
20
|
CreateChannelCommandOutput,
|
|
@@ -99,6 +103,10 @@ import {
|
|
|
99
103
|
PutMetadataCommandInput,
|
|
100
104
|
PutMetadataCommandOutput,
|
|
101
105
|
} from "../commands/PutMetadataCommand";
|
|
106
|
+
import {
|
|
107
|
+
StartViewerSessionRevocationCommandInput,
|
|
108
|
+
StartViewerSessionRevocationCommandOutput,
|
|
109
|
+
} from "../commands/StartViewerSessionRevocationCommand";
|
|
102
110
|
import {
|
|
103
111
|
StopStreamCommandInput,
|
|
104
112
|
StopStreamCommandOutput,
|
|
@@ -123,6 +131,10 @@ export declare const se_BatchGetStreamKeyCommand: (
|
|
|
123
131
|
input: BatchGetStreamKeyCommandInput,
|
|
124
132
|
context: __SerdeContext
|
|
125
133
|
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_BatchStartViewerSessionRevocationCommand: (
|
|
135
|
+
input: BatchStartViewerSessionRevocationCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
126
138
|
export declare const se_CreateChannelCommand: (
|
|
127
139
|
input: CreateChannelCommandInput,
|
|
128
140
|
context: __SerdeContext
|
|
@@ -211,6 +223,10 @@ export declare const se_PutMetadataCommand: (
|
|
|
211
223
|
input: PutMetadataCommandInput,
|
|
212
224
|
context: __SerdeContext
|
|
213
225
|
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const se_StartViewerSessionRevocationCommand: (
|
|
227
|
+
input: StartViewerSessionRevocationCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
214
230
|
export declare const se_StopStreamCommand: (
|
|
215
231
|
input: StopStreamCommandInput,
|
|
216
232
|
context: __SerdeContext
|
|
@@ -235,6 +251,10 @@ export declare const de_BatchGetStreamKeyCommand: (
|
|
|
235
251
|
output: __HttpResponse,
|
|
236
252
|
context: __SerdeContext
|
|
237
253
|
) => Promise<BatchGetStreamKeyCommandOutput>;
|
|
254
|
+
export declare const de_BatchStartViewerSessionRevocationCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<BatchStartViewerSessionRevocationCommandOutput>;
|
|
238
258
|
export declare const de_CreateChannelCommand: (
|
|
239
259
|
output: __HttpResponse,
|
|
240
260
|
context: __SerdeContext
|
|
@@ -323,6 +343,10 @@ export declare const de_PutMetadataCommand: (
|
|
|
323
343
|
output: __HttpResponse,
|
|
324
344
|
context: __SerdeContext
|
|
325
345
|
) => Promise<PutMetadataCommandOutput>;
|
|
346
|
+
export declare const de_StartViewerSessionRevocationCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<StartViewerSessionRevocationCommandOutput>;
|
|
326
350
|
export declare const de_StopStreamCommand: (
|
|
327
351
|
output: __HttpResponse,
|
|
328
352
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.361.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|