@aws-sdk/client-kinesis-video 3.80.0 → 3.83.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/KinesisVideo.js +60 -0
- package/dist-cjs/commands/DescribeImageGenerationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DescribeNotificationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/UpdateImageGenerationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/UpdateNotificationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +109 -2
- package/dist-cjs/protocols/Aws_restJson1.js +393 -1
- package/dist-es/KinesisVideo.js +60 -0
- package/dist-es/commands/DescribeImageGenerationConfigurationCommand.js +39 -0
- package/dist-es/commands/DescribeNotificationConfigurationCommand.js +39 -0
- package/dist-es/commands/UpdateImageGenerationConfigurationCommand.js +39 -0
- package/dist-es/commands/UpdateNotificationConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +82 -0
- package/dist-es/protocols/Aws_restJson1.js +468 -1
- package/dist-types/KinesisVideo.d.ts +37 -9
- package/dist-types/KinesisVideoClient.d.ts +6 -2
- package/dist-types/commands/DescribeImageGenerationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DescribeNotificationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/GetSignalingChannelEndpointCommand.d.ts +2 -2
- package/dist-types/commands/ListSignalingChannelsCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/TagStreamCommand.d.ts +3 -3
- package/dist-types/commands/UpdateImageGenerationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNotificationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +264 -10
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/KinesisVideo.d.ts +20 -0
- package/dist-types/ts3.4/KinesisVideoClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeImageGenerationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateImageGenerationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +5 -5
|
@@ -4,6 +4,8 @@ import { CreateSignalingChannelCommandInput, CreateSignalingChannelCommandOutput
|
|
|
4
4
|
import { CreateStreamCommandInput, CreateStreamCommandOutput } from "../commands/CreateStreamCommand";
|
|
5
5
|
import { DeleteSignalingChannelCommandInput, DeleteSignalingChannelCommandOutput } from "../commands/DeleteSignalingChannelCommand";
|
|
6
6
|
import { DeleteStreamCommandInput, DeleteStreamCommandOutput } from "../commands/DeleteStreamCommand";
|
|
7
|
+
import { DescribeImageGenerationConfigurationCommandInput, DescribeImageGenerationConfigurationCommandOutput } from "../commands/DescribeImageGenerationConfigurationCommand";
|
|
8
|
+
import { DescribeNotificationConfigurationCommandInput, DescribeNotificationConfigurationCommandOutput } from "../commands/DescribeNotificationConfigurationCommand";
|
|
7
9
|
import { DescribeSignalingChannelCommandInput, DescribeSignalingChannelCommandOutput } from "../commands/DescribeSignalingChannelCommand";
|
|
8
10
|
import { DescribeStreamCommandInput, DescribeStreamCommandOutput } from "../commands/DescribeStreamCommand";
|
|
9
11
|
import { GetDataEndpointCommandInput, GetDataEndpointCommandOutput } from "../commands/GetDataEndpointCommand";
|
|
@@ -17,12 +19,16 @@ import { TagStreamCommandInput, TagStreamCommandOutput } from "../commands/TagSt
|
|
|
17
19
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
20
|
import { UntagStreamCommandInput, UntagStreamCommandOutput } from "../commands/UntagStreamCommand";
|
|
19
21
|
import { UpdateDataRetentionCommandInput, UpdateDataRetentionCommandOutput } from "../commands/UpdateDataRetentionCommand";
|
|
22
|
+
import { UpdateImageGenerationConfigurationCommandInput, UpdateImageGenerationConfigurationCommandOutput } from "../commands/UpdateImageGenerationConfigurationCommand";
|
|
23
|
+
import { UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput } from "../commands/UpdateNotificationConfigurationCommand";
|
|
20
24
|
import { UpdateSignalingChannelCommandInput, UpdateSignalingChannelCommandOutput } from "../commands/UpdateSignalingChannelCommand";
|
|
21
25
|
import { UpdateStreamCommandInput, UpdateStreamCommandOutput } from "../commands/UpdateStreamCommand";
|
|
22
26
|
export declare const serializeAws_restJson1CreateSignalingChannelCommand: (input: CreateSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
27
|
export declare const serializeAws_restJson1CreateStreamCommand: (input: CreateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
28
|
export declare const serializeAws_restJson1DeleteSignalingChannelCommand: (input: DeleteSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
29
|
export declare const serializeAws_restJson1DeleteStreamCommand: (input: DeleteStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1DescribeImageGenerationConfigurationCommand: (input: DescribeImageGenerationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_restJson1DescribeNotificationConfigurationCommand: (input: DescribeNotificationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
32
|
export declare const serializeAws_restJson1DescribeSignalingChannelCommand: (input: DescribeSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
33
|
export declare const serializeAws_restJson1DescribeStreamCommand: (input: DescribeStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
34
|
export declare const serializeAws_restJson1GetDataEndpointCommand: (input: GetDataEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -36,12 +42,16 @@ export declare const serializeAws_restJson1TagStreamCommand: (input: TagStreamCo
|
|
|
36
42
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
43
|
export declare const serializeAws_restJson1UntagStreamCommand: (input: UntagStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
44
|
export declare const serializeAws_restJson1UpdateDataRetentionCommand: (input: UpdateDataRetentionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
+
export declare const serializeAws_restJson1UpdateImageGenerationConfigurationCommand: (input: UpdateImageGenerationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_restJson1UpdateNotificationConfigurationCommand: (input: UpdateNotificationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
47
|
export declare const serializeAws_restJson1UpdateSignalingChannelCommand: (input: UpdateSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
48
|
export declare const serializeAws_restJson1UpdateStreamCommand: (input: UpdateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
49
|
export declare const deserializeAws_restJson1CreateSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSignalingChannelCommandOutput>;
|
|
42
50
|
export declare const deserializeAws_restJson1CreateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamCommandOutput>;
|
|
43
51
|
export declare const deserializeAws_restJson1DeleteSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSignalingChannelCommandOutput>;
|
|
44
52
|
export declare const deserializeAws_restJson1DeleteStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_restJson1DescribeImageGenerationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImageGenerationConfigurationCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_restJson1DescribeNotificationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationConfigurationCommandOutput>;
|
|
45
55
|
export declare const deserializeAws_restJson1DescribeSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSignalingChannelCommandOutput>;
|
|
46
56
|
export declare const deserializeAws_restJson1DescribeStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamCommandOutput>;
|
|
47
57
|
export declare const deserializeAws_restJson1GetDataEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataEndpointCommandOutput>;
|
|
@@ -55,5 +65,7 @@ export declare const deserializeAws_restJson1TagStreamCommand: (output: __HttpRe
|
|
|
55
65
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
56
66
|
export declare const deserializeAws_restJson1UntagStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagStreamCommandOutput>;
|
|
57
67
|
export declare const deserializeAws_restJson1UpdateDataRetentionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataRetentionCommandOutput>;
|
|
68
|
+
export declare const deserializeAws_restJson1UpdateImageGenerationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateImageGenerationConfigurationCommandOutput>;
|
|
69
|
+
export declare const deserializeAws_restJson1UpdateNotificationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationConfigurationCommandOutput>;
|
|
58
70
|
export declare const deserializeAws_restJson1UpdateSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSignalingChannelCommandOutput>;
|
|
59
71
|
export declare const deserializeAws_restJson1UpdateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStreamCommandOutput>;
|
|
@@ -3,6 +3,8 @@ import { CreateSignalingChannelCommandInput, CreateSignalingChannelCommandOutput
|
|
|
3
3
|
import { CreateStreamCommandInput, CreateStreamCommandOutput } from "./commands/CreateStreamCommand";
|
|
4
4
|
import { DeleteSignalingChannelCommandInput, DeleteSignalingChannelCommandOutput } from "./commands/DeleteSignalingChannelCommand";
|
|
5
5
|
import { DeleteStreamCommandInput, DeleteStreamCommandOutput } from "./commands/DeleteStreamCommand";
|
|
6
|
+
import { DescribeImageGenerationConfigurationCommandInput, DescribeImageGenerationConfigurationCommandOutput } from "./commands/DescribeImageGenerationConfigurationCommand";
|
|
7
|
+
import { DescribeNotificationConfigurationCommandInput, DescribeNotificationConfigurationCommandOutput } from "./commands/DescribeNotificationConfigurationCommand";
|
|
6
8
|
import { DescribeSignalingChannelCommandInput, DescribeSignalingChannelCommandOutput } from "./commands/DescribeSignalingChannelCommand";
|
|
7
9
|
import { DescribeStreamCommandInput, DescribeStreamCommandOutput } from "./commands/DescribeStreamCommand";
|
|
8
10
|
import { GetDataEndpointCommandInput, GetDataEndpointCommandOutput } from "./commands/GetDataEndpointCommand";
|
|
@@ -16,6 +18,8 @@ import { TagStreamCommandInput, TagStreamCommandOutput } from "./commands/TagStr
|
|
|
16
18
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
17
19
|
import { UntagStreamCommandInput, UntagStreamCommandOutput } from "./commands/UntagStreamCommand";
|
|
18
20
|
import { UpdateDataRetentionCommandInput, UpdateDataRetentionCommandOutput } from "./commands/UpdateDataRetentionCommand";
|
|
21
|
+
import { UpdateImageGenerationConfigurationCommandInput, UpdateImageGenerationConfigurationCommandOutput } from "./commands/UpdateImageGenerationConfigurationCommand";
|
|
22
|
+
import { UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput } from "./commands/UpdateNotificationConfigurationCommand";
|
|
19
23
|
import { UpdateSignalingChannelCommandInput, UpdateSignalingChannelCommandOutput } from "./commands/UpdateSignalingChannelCommand";
|
|
20
24
|
import { UpdateStreamCommandInput, UpdateStreamCommandOutput } from "./commands/UpdateStreamCommand";
|
|
21
25
|
import { KinesisVideoClient } from "./KinesisVideoClient";
|
|
@@ -38,6 +42,14 @@ export declare class KinesisVideo extends KinesisVideoClient {
|
|
|
38
42
|
deleteStream(args: DeleteStreamCommandInput, cb: (err: any, data?: DeleteStreamCommandOutput) => void): void;
|
|
39
43
|
deleteStream(args: DeleteStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStreamCommandOutput) => void): void;
|
|
40
44
|
|
|
45
|
+
describeImageGenerationConfiguration(args: DescribeImageGenerationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImageGenerationConfigurationCommandOutput>;
|
|
46
|
+
describeImageGenerationConfiguration(args: DescribeImageGenerationConfigurationCommandInput, cb: (err: any, data?: DescribeImageGenerationConfigurationCommandOutput) => void): void;
|
|
47
|
+
describeImageGenerationConfiguration(args: DescribeImageGenerationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImageGenerationConfigurationCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
describeNotificationConfiguration(args: DescribeNotificationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNotificationConfigurationCommandOutput>;
|
|
50
|
+
describeNotificationConfiguration(args: DescribeNotificationConfigurationCommandInput, cb: (err: any, data?: DescribeNotificationConfigurationCommandOutput) => void): void;
|
|
51
|
+
describeNotificationConfiguration(args: DescribeNotificationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotificationConfigurationCommandOutput) => void): void;
|
|
52
|
+
|
|
41
53
|
describeSignalingChannel(args: DescribeSignalingChannelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSignalingChannelCommandOutput>;
|
|
42
54
|
describeSignalingChannel(args: DescribeSignalingChannelCommandInput, cb: (err: any, data?: DescribeSignalingChannelCommandOutput) => void): void;
|
|
43
55
|
describeSignalingChannel(args: DescribeSignalingChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSignalingChannelCommandOutput) => void): void;
|
|
@@ -90,6 +102,14 @@ export declare class KinesisVideo extends KinesisVideoClient {
|
|
|
90
102
|
updateDataRetention(args: UpdateDataRetentionCommandInput, cb: (err: any, data?: UpdateDataRetentionCommandOutput) => void): void;
|
|
91
103
|
updateDataRetention(args: UpdateDataRetentionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataRetentionCommandOutput) => void): void;
|
|
92
104
|
|
|
105
|
+
updateImageGenerationConfiguration(args: UpdateImageGenerationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateImageGenerationConfigurationCommandOutput>;
|
|
106
|
+
updateImageGenerationConfiguration(args: UpdateImageGenerationConfigurationCommandInput, cb: (err: any, data?: UpdateImageGenerationConfigurationCommandOutput) => void): void;
|
|
107
|
+
updateImageGenerationConfiguration(args: UpdateImageGenerationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateImageGenerationConfigurationCommandOutput) => void): void;
|
|
108
|
+
|
|
109
|
+
updateNotificationConfiguration(args: UpdateNotificationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotificationConfigurationCommandOutput>;
|
|
110
|
+
updateNotificationConfiguration(args: UpdateNotificationConfigurationCommandInput, cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void): void;
|
|
111
|
+
updateNotificationConfiguration(args: UpdateNotificationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotificationConfigurationCommandOutput) => void): void;
|
|
112
|
+
|
|
93
113
|
updateSignalingChannel(args: UpdateSignalingChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSignalingChannelCommandOutput>;
|
|
94
114
|
updateSignalingChannel(args: UpdateSignalingChannelCommandInput, cb: (err: any, data?: UpdateSignalingChannelCommandOutput) => void): void;
|
|
95
115
|
updateSignalingChannel(args: UpdateSignalingChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSignalingChannelCommandOutput) => void): void;
|
|
@@ -10,6 +10,8 @@ import { CreateSignalingChannelCommandInput, CreateSignalingChannelCommandOutput
|
|
|
10
10
|
import { CreateStreamCommandInput, CreateStreamCommandOutput } from "./commands/CreateStreamCommand";
|
|
11
11
|
import { DeleteSignalingChannelCommandInput, DeleteSignalingChannelCommandOutput } from "./commands/DeleteSignalingChannelCommand";
|
|
12
12
|
import { DeleteStreamCommandInput, DeleteStreamCommandOutput } from "./commands/DeleteStreamCommand";
|
|
13
|
+
import { DescribeImageGenerationConfigurationCommandInput, DescribeImageGenerationConfigurationCommandOutput } from "./commands/DescribeImageGenerationConfigurationCommand";
|
|
14
|
+
import { DescribeNotificationConfigurationCommandInput, DescribeNotificationConfigurationCommandOutput } from "./commands/DescribeNotificationConfigurationCommand";
|
|
13
15
|
import { DescribeSignalingChannelCommandInput, DescribeSignalingChannelCommandOutput } from "./commands/DescribeSignalingChannelCommand";
|
|
14
16
|
import { DescribeStreamCommandInput, DescribeStreamCommandOutput } from "./commands/DescribeStreamCommand";
|
|
15
17
|
import { GetDataEndpointCommandInput, GetDataEndpointCommandOutput } from "./commands/GetDataEndpointCommand";
|
|
@@ -23,10 +25,12 @@ import { TagStreamCommandInput, TagStreamCommandOutput } from "./commands/TagStr
|
|
|
23
25
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
24
26
|
import { UntagStreamCommandInput, UntagStreamCommandOutput } from "./commands/UntagStreamCommand";
|
|
25
27
|
import { UpdateDataRetentionCommandInput, UpdateDataRetentionCommandOutput } from "./commands/UpdateDataRetentionCommand";
|
|
28
|
+
import { UpdateImageGenerationConfigurationCommandInput, UpdateImageGenerationConfigurationCommandOutput } from "./commands/UpdateImageGenerationConfigurationCommand";
|
|
29
|
+
import { UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput } from "./commands/UpdateNotificationConfigurationCommand";
|
|
26
30
|
import { UpdateSignalingChannelCommandInput, UpdateSignalingChannelCommandOutput } from "./commands/UpdateSignalingChannelCommand";
|
|
27
31
|
import { UpdateStreamCommandInput, UpdateStreamCommandOutput } from "./commands/UpdateStreamCommand";
|
|
28
|
-
export declare type ServiceInputTypes = CreateSignalingChannelCommandInput | CreateStreamCommandInput | DeleteSignalingChannelCommandInput | DeleteStreamCommandInput | DescribeSignalingChannelCommandInput | DescribeStreamCommandInput | GetDataEndpointCommandInput | GetSignalingChannelEndpointCommandInput | ListSignalingChannelsCommandInput | ListStreamsCommandInput | ListTagsForResourceCommandInput | ListTagsForStreamCommandInput | TagResourceCommandInput | TagStreamCommandInput | UntagResourceCommandInput | UntagStreamCommandInput | UpdateDataRetentionCommandInput | UpdateSignalingChannelCommandInput | UpdateStreamCommandInput;
|
|
29
|
-
export declare type ServiceOutputTypes = CreateSignalingChannelCommandOutput | CreateStreamCommandOutput | DeleteSignalingChannelCommandOutput | DeleteStreamCommandOutput | DescribeSignalingChannelCommandOutput | DescribeStreamCommandOutput | GetDataEndpointCommandOutput | GetSignalingChannelEndpointCommandOutput | ListSignalingChannelsCommandOutput | ListStreamsCommandOutput | ListTagsForResourceCommandOutput | ListTagsForStreamCommandOutput | TagResourceCommandOutput | TagStreamCommandOutput | UntagResourceCommandOutput | UntagStreamCommandOutput | UpdateDataRetentionCommandOutput | UpdateSignalingChannelCommandOutput | UpdateStreamCommandOutput;
|
|
32
|
+
export declare type ServiceInputTypes = CreateSignalingChannelCommandInput | CreateStreamCommandInput | DeleteSignalingChannelCommandInput | DeleteStreamCommandInput | DescribeImageGenerationConfigurationCommandInput | DescribeNotificationConfigurationCommandInput | DescribeSignalingChannelCommandInput | DescribeStreamCommandInput | GetDataEndpointCommandInput | GetSignalingChannelEndpointCommandInput | ListSignalingChannelsCommandInput | ListStreamsCommandInput | ListTagsForResourceCommandInput | ListTagsForStreamCommandInput | TagResourceCommandInput | TagStreamCommandInput | UntagResourceCommandInput | UntagStreamCommandInput | UpdateDataRetentionCommandInput | UpdateImageGenerationConfigurationCommandInput | UpdateNotificationConfigurationCommandInput | UpdateSignalingChannelCommandInput | UpdateStreamCommandInput;
|
|
33
|
+
export declare type ServiceOutputTypes = CreateSignalingChannelCommandOutput | CreateStreamCommandOutput | DeleteSignalingChannelCommandOutput | DeleteStreamCommandOutput | DescribeImageGenerationConfigurationCommandOutput | DescribeNotificationConfigurationCommandOutput | DescribeSignalingChannelCommandOutput | DescribeStreamCommandOutput | GetDataEndpointCommandOutput | GetSignalingChannelEndpointCommandOutput | ListSignalingChannelsCommandOutput | ListStreamsCommandOutput | ListTagsForResourceCommandOutput | ListTagsForStreamCommandOutput | TagResourceCommandOutput | TagStreamCommandOutput | UntagResourceCommandOutput | UntagStreamCommandOutput | UpdateDataRetentionCommandOutput | UpdateImageGenerationConfigurationCommandOutput | UpdateNotificationConfigurationCommandOutput | UpdateSignalingChannelCommandOutput | UpdateStreamCommandOutput;
|
|
30
34
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
31
35
|
|
|
32
36
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient";
|
|
4
|
+
import { DescribeImageGenerationConfigurationInput, DescribeImageGenerationConfigurationOutput } from "../models/models_0";
|
|
5
|
+
export interface DescribeImageGenerationConfigurationCommandInput extends DescribeImageGenerationConfigurationInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeImageGenerationConfigurationCommandOutput extends DescribeImageGenerationConfigurationOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeImageGenerationConfigurationCommand extends $Command<DescribeImageGenerationConfigurationCommandInput, DescribeImageGenerationConfigurationCommandOutput, KinesisVideoClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeImageGenerationConfigurationCommandInput;
|
|
12
|
+
constructor(input: DescribeImageGenerationConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeImageGenerationConfigurationCommandInput, DescribeImageGenerationConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient";
|
|
4
|
+
import { DescribeNotificationConfigurationInput, DescribeNotificationConfigurationOutput } from "../models/models_0";
|
|
5
|
+
export interface DescribeNotificationConfigurationCommandInput extends DescribeNotificationConfigurationInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeNotificationConfigurationCommandOutput extends DescribeNotificationConfigurationOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeNotificationConfigurationCommand extends $Command<DescribeNotificationConfigurationCommandInput, DescribeNotificationConfigurationCommandOutput, KinesisVideoClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeNotificationConfigurationCommandInput;
|
|
12
|
+
constructor(input: DescribeNotificationConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNotificationConfigurationCommandInput, DescribeNotificationConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient";
|
|
4
|
+
import { UpdateImageGenerationConfigurationInput, UpdateImageGenerationConfigurationOutput } from "../models/models_0";
|
|
5
|
+
export interface UpdateImageGenerationConfigurationCommandInput extends UpdateImageGenerationConfigurationInput {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateImageGenerationConfigurationCommandOutput extends UpdateImageGenerationConfigurationOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateImageGenerationConfigurationCommand extends $Command<UpdateImageGenerationConfigurationCommandInput, UpdateImageGenerationConfigurationCommandOutput, KinesisVideoClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateImageGenerationConfigurationCommandInput;
|
|
12
|
+
constructor(input: UpdateImageGenerationConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateImageGenerationConfigurationCommandInput, UpdateImageGenerationConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient";
|
|
4
|
+
import { UpdateNotificationConfigurationInput, UpdateNotificationConfigurationOutput } from "../models/models_0";
|
|
5
|
+
export interface UpdateNotificationConfigurationCommandInput extends UpdateNotificationConfigurationInput {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateNotificationConfigurationCommandOutput extends UpdateNotificationConfigurationOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateNotificationConfigurationCommand extends $Command<UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput, KinesisVideoClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateNotificationConfigurationCommandInput;
|
|
12
|
+
constructor(input: UpdateNotificationConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -2,6 +2,8 @@ export * from "./CreateSignalingChannelCommand";
|
|
|
2
2
|
export * from "./CreateStreamCommand";
|
|
3
3
|
export * from "./DeleteSignalingChannelCommand";
|
|
4
4
|
export * from "./DeleteStreamCommand";
|
|
5
|
+
export * from "./DescribeImageGenerationConfigurationCommand";
|
|
6
|
+
export * from "./DescribeNotificationConfigurationCommand";
|
|
5
7
|
export * from "./DescribeSignalingChannelCommand";
|
|
6
8
|
export * from "./DescribeStreamCommand";
|
|
7
9
|
export * from "./GetDataEndpointCommand";
|
|
@@ -15,5 +17,7 @@ export * from "./TagStreamCommand";
|
|
|
15
17
|
export * from "./UntagResourceCommand";
|
|
16
18
|
export * from "./UntagStreamCommand";
|
|
17
19
|
export * from "./UpdateDataRetentionCommand";
|
|
20
|
+
export * from "./UpdateImageGenerationConfigurationCommand";
|
|
21
|
+
export * from "./UpdateNotificationConfigurationCommand";
|
|
18
22
|
export * from "./UpdateSignalingChannelCommand";
|
|
19
23
|
export * from "./UpdateStreamCommand";
|
|
@@ -28,6 +28,7 @@ export declare enum APIName {
|
|
|
28
28
|
GET_CLIP = "GET_CLIP",
|
|
29
29
|
GET_DASH_STREAMING_SESSION_URL = "GET_DASH_STREAMING_SESSION_URL",
|
|
30
30
|
GET_HLS_STREAMING_SESSION_URL = "GET_HLS_STREAMING_SESSION_URL",
|
|
31
|
+
GET_IMAGES = "GET_IMAGES",
|
|
31
32
|
GET_MEDIA = "GET_MEDIA",
|
|
32
33
|
GET_MEDIA_FOR_FRAGMENT_LIST = "GET_MEDIA_FOR_FRAGMENT_LIST",
|
|
33
34
|
LIST_FRAGMENTS = "LIST_FRAGMENTS",
|
|
@@ -40,6 +41,7 @@ export declare enum Status {
|
|
|
40
41
|
UPDATING = "UPDATING"
|
|
41
42
|
}
|
|
42
43
|
export declare enum ChannelType {
|
|
44
|
+
FULL_MESH = "FULL_MESH",
|
|
43
45
|
SINGLE_MASTER = "SINGLE_MASTER"
|
|
44
46
|
}
|
|
45
47
|
|
|
@@ -102,6 +104,10 @@ export declare class ClientLimitExceededException extends __BaseException {
|
|
|
102
104
|
|
|
103
105
|
constructor(opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>);
|
|
104
106
|
}
|
|
107
|
+
export declare enum ConfigurationStatus {
|
|
108
|
+
DISABLED = "DISABLED",
|
|
109
|
+
ENABLED = "ENABLED"
|
|
110
|
+
}
|
|
105
111
|
|
|
106
112
|
export interface Tag {
|
|
107
113
|
|
|
@@ -259,6 +265,109 @@ export declare class NotAuthorizedException extends __BaseException {
|
|
|
259
265
|
|
|
260
266
|
constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
|
|
261
267
|
}
|
|
268
|
+
export interface DescribeImageGenerationConfigurationInput {
|
|
269
|
+
|
|
270
|
+
StreamName?: string;
|
|
271
|
+
|
|
272
|
+
StreamARN?: string;
|
|
273
|
+
}
|
|
274
|
+
export declare namespace DescribeImageGenerationConfigurationInput {
|
|
275
|
+
|
|
276
|
+
const filterSensitiveLog: (obj: DescribeImageGenerationConfigurationInput) => any;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
export interface ImageGenerationDestinationConfig {
|
|
280
|
+
|
|
281
|
+
Uri: string | undefined;
|
|
282
|
+
|
|
283
|
+
DestinationRegion: string | undefined;
|
|
284
|
+
}
|
|
285
|
+
export declare namespace ImageGenerationDestinationConfig {
|
|
286
|
+
|
|
287
|
+
const filterSensitiveLog: (obj: ImageGenerationDestinationConfig) => any;
|
|
288
|
+
}
|
|
289
|
+
export declare enum Format {
|
|
290
|
+
JPEG = "JPEG",
|
|
291
|
+
PNG = "PNG"
|
|
292
|
+
}
|
|
293
|
+
export declare enum FormatConfigKey {
|
|
294
|
+
JPEGQuality = "JPEGQuality"
|
|
295
|
+
}
|
|
296
|
+
export declare enum ImageSelectorType {
|
|
297
|
+
PRODUCER_TIMESTAMP = "PRODUCER_TIMESTAMP",
|
|
298
|
+
SERVER_TIMESTAMP = "SERVER_TIMESTAMP"
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export interface ImageGenerationConfiguration {
|
|
302
|
+
|
|
303
|
+
Status: ConfigurationStatus | string | undefined;
|
|
304
|
+
|
|
305
|
+
ImageSelectorType: ImageSelectorType | string | undefined;
|
|
306
|
+
|
|
307
|
+
DestinationConfig: ImageGenerationDestinationConfig | undefined;
|
|
308
|
+
|
|
309
|
+
SamplingInterval: number | undefined;
|
|
310
|
+
|
|
311
|
+
Format: Format | string | undefined;
|
|
312
|
+
|
|
313
|
+
FormatConfig?: {
|
|
314
|
+
[key: string]: string;
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
WidthPixels?: number;
|
|
318
|
+
|
|
319
|
+
HeightPixels?: number;
|
|
320
|
+
}
|
|
321
|
+
export declare namespace ImageGenerationConfiguration {
|
|
322
|
+
|
|
323
|
+
const filterSensitiveLog: (obj: ImageGenerationConfiguration) => any;
|
|
324
|
+
}
|
|
325
|
+
export interface DescribeImageGenerationConfigurationOutput {
|
|
326
|
+
|
|
327
|
+
ImageGenerationConfiguration?: ImageGenerationConfiguration;
|
|
328
|
+
}
|
|
329
|
+
export declare namespace DescribeImageGenerationConfigurationOutput {
|
|
330
|
+
|
|
331
|
+
const filterSensitiveLog: (obj: DescribeImageGenerationConfigurationOutput) => any;
|
|
332
|
+
}
|
|
333
|
+
export interface DescribeNotificationConfigurationInput {
|
|
334
|
+
|
|
335
|
+
StreamName?: string;
|
|
336
|
+
|
|
337
|
+
StreamARN?: string;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace DescribeNotificationConfigurationInput {
|
|
340
|
+
|
|
341
|
+
const filterSensitiveLog: (obj: DescribeNotificationConfigurationInput) => any;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
export interface NotificationDestinationConfig {
|
|
345
|
+
|
|
346
|
+
Uri: string | undefined;
|
|
347
|
+
}
|
|
348
|
+
export declare namespace NotificationDestinationConfig {
|
|
349
|
+
|
|
350
|
+
const filterSensitiveLog: (obj: NotificationDestinationConfig) => any;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export interface NotificationConfiguration {
|
|
354
|
+
|
|
355
|
+
Status: ConfigurationStatus | string | undefined;
|
|
356
|
+
|
|
357
|
+
DestinationConfig: NotificationDestinationConfig | undefined;
|
|
358
|
+
}
|
|
359
|
+
export declare namespace NotificationConfiguration {
|
|
360
|
+
|
|
361
|
+
const filterSensitiveLog: (obj: NotificationConfiguration) => any;
|
|
362
|
+
}
|
|
363
|
+
export interface DescribeNotificationConfigurationOutput {
|
|
364
|
+
|
|
365
|
+
NotificationConfiguration?: NotificationConfiguration;
|
|
366
|
+
}
|
|
367
|
+
export declare namespace DescribeNotificationConfigurationOutput {
|
|
368
|
+
|
|
369
|
+
const filterSensitiveLog: (obj: DescribeNotificationConfigurationOutput) => any;
|
|
370
|
+
}
|
|
262
371
|
export interface DescribeSignalingChannelInput {
|
|
263
372
|
|
|
264
373
|
ChannelName?: string;
|
|
@@ -585,6 +694,50 @@ export declare namespace UpdateDataRetentionOutput {
|
|
|
585
694
|
|
|
586
695
|
const filterSensitiveLog: (obj: UpdateDataRetentionOutput) => any;
|
|
587
696
|
}
|
|
697
|
+
|
|
698
|
+
export declare class NoDataRetentionException extends __BaseException {
|
|
699
|
+
readonly name: "NoDataRetentionException";
|
|
700
|
+
readonly $fault: "client";
|
|
701
|
+
Message?: string;
|
|
702
|
+
|
|
703
|
+
constructor(opts: __ExceptionOptionType<NoDataRetentionException, __BaseException>);
|
|
704
|
+
}
|
|
705
|
+
export interface UpdateImageGenerationConfigurationInput {
|
|
706
|
+
|
|
707
|
+
StreamName?: string;
|
|
708
|
+
|
|
709
|
+
StreamARN?: string;
|
|
710
|
+
|
|
711
|
+
ImageGenerationConfiguration?: ImageGenerationConfiguration;
|
|
712
|
+
}
|
|
713
|
+
export declare namespace UpdateImageGenerationConfigurationInput {
|
|
714
|
+
|
|
715
|
+
const filterSensitiveLog: (obj: UpdateImageGenerationConfigurationInput) => any;
|
|
716
|
+
}
|
|
717
|
+
export interface UpdateImageGenerationConfigurationOutput {
|
|
718
|
+
}
|
|
719
|
+
export declare namespace UpdateImageGenerationConfigurationOutput {
|
|
720
|
+
|
|
721
|
+
const filterSensitiveLog: (obj: UpdateImageGenerationConfigurationOutput) => any;
|
|
722
|
+
}
|
|
723
|
+
export interface UpdateNotificationConfigurationInput {
|
|
724
|
+
|
|
725
|
+
StreamName?: string;
|
|
726
|
+
|
|
727
|
+
StreamARN?: string;
|
|
728
|
+
|
|
729
|
+
NotificationConfiguration?: NotificationConfiguration;
|
|
730
|
+
}
|
|
731
|
+
export declare namespace UpdateNotificationConfigurationInput {
|
|
732
|
+
|
|
733
|
+
const filterSensitiveLog: (obj: UpdateNotificationConfigurationInput) => any;
|
|
734
|
+
}
|
|
735
|
+
export interface UpdateNotificationConfigurationOutput {
|
|
736
|
+
}
|
|
737
|
+
export declare namespace UpdateNotificationConfigurationOutput {
|
|
738
|
+
|
|
739
|
+
const filterSensitiveLog: (obj: UpdateNotificationConfigurationOutput) => any;
|
|
740
|
+
}
|
|
588
741
|
export interface UpdateSignalingChannelInput {
|
|
589
742
|
|
|
590
743
|
ChannelARN: string | undefined;
|
|
@@ -4,6 +4,8 @@ import { CreateSignalingChannelCommandInput, CreateSignalingChannelCommandOutput
|
|
|
4
4
|
import { CreateStreamCommandInput, CreateStreamCommandOutput } from "../commands/CreateStreamCommand";
|
|
5
5
|
import { DeleteSignalingChannelCommandInput, DeleteSignalingChannelCommandOutput } from "../commands/DeleteSignalingChannelCommand";
|
|
6
6
|
import { DeleteStreamCommandInput, DeleteStreamCommandOutput } from "../commands/DeleteStreamCommand";
|
|
7
|
+
import { DescribeImageGenerationConfigurationCommandInput, DescribeImageGenerationConfigurationCommandOutput } from "../commands/DescribeImageGenerationConfigurationCommand";
|
|
8
|
+
import { DescribeNotificationConfigurationCommandInput, DescribeNotificationConfigurationCommandOutput } from "../commands/DescribeNotificationConfigurationCommand";
|
|
7
9
|
import { DescribeSignalingChannelCommandInput, DescribeSignalingChannelCommandOutput } from "../commands/DescribeSignalingChannelCommand";
|
|
8
10
|
import { DescribeStreamCommandInput, DescribeStreamCommandOutput } from "../commands/DescribeStreamCommand";
|
|
9
11
|
import { GetDataEndpointCommandInput, GetDataEndpointCommandOutput } from "../commands/GetDataEndpointCommand";
|
|
@@ -17,12 +19,16 @@ import { TagStreamCommandInput, TagStreamCommandOutput } from "../commands/TagSt
|
|
|
17
19
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
20
|
import { UntagStreamCommandInput, UntagStreamCommandOutput } from "../commands/UntagStreamCommand";
|
|
19
21
|
import { UpdateDataRetentionCommandInput, UpdateDataRetentionCommandOutput } from "../commands/UpdateDataRetentionCommand";
|
|
22
|
+
import { UpdateImageGenerationConfigurationCommandInput, UpdateImageGenerationConfigurationCommandOutput } from "../commands/UpdateImageGenerationConfigurationCommand";
|
|
23
|
+
import { UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput } from "../commands/UpdateNotificationConfigurationCommand";
|
|
20
24
|
import { UpdateSignalingChannelCommandInput, UpdateSignalingChannelCommandOutput } from "../commands/UpdateSignalingChannelCommand";
|
|
21
25
|
import { UpdateStreamCommandInput, UpdateStreamCommandOutput } from "../commands/UpdateStreamCommand";
|
|
22
26
|
export declare const serializeAws_restJson1CreateSignalingChannelCommand: (input: CreateSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
27
|
export declare const serializeAws_restJson1CreateStreamCommand: (input: CreateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
28
|
export declare const serializeAws_restJson1DeleteSignalingChannelCommand: (input: DeleteSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
29
|
export declare const serializeAws_restJson1DeleteStreamCommand: (input: DeleteStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1DescribeImageGenerationConfigurationCommand: (input: DescribeImageGenerationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_restJson1DescribeNotificationConfigurationCommand: (input: DescribeNotificationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
32
|
export declare const serializeAws_restJson1DescribeSignalingChannelCommand: (input: DescribeSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
33
|
export declare const serializeAws_restJson1DescribeStreamCommand: (input: DescribeStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
34
|
export declare const serializeAws_restJson1GetDataEndpointCommand: (input: GetDataEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -36,12 +42,16 @@ export declare const serializeAws_restJson1TagStreamCommand: (input: TagStreamCo
|
|
|
36
42
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
43
|
export declare const serializeAws_restJson1UntagStreamCommand: (input: UntagStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
44
|
export declare const serializeAws_restJson1UpdateDataRetentionCommand: (input: UpdateDataRetentionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
+
export declare const serializeAws_restJson1UpdateImageGenerationConfigurationCommand: (input: UpdateImageGenerationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_restJson1UpdateNotificationConfigurationCommand: (input: UpdateNotificationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
47
|
export declare const serializeAws_restJson1UpdateSignalingChannelCommand: (input: UpdateSignalingChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
48
|
export declare const serializeAws_restJson1UpdateStreamCommand: (input: UpdateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
49
|
export declare const deserializeAws_restJson1CreateSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSignalingChannelCommandOutput>;
|
|
42
50
|
export declare const deserializeAws_restJson1CreateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamCommandOutput>;
|
|
43
51
|
export declare const deserializeAws_restJson1DeleteSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSignalingChannelCommandOutput>;
|
|
44
52
|
export declare const deserializeAws_restJson1DeleteStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_restJson1DescribeImageGenerationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImageGenerationConfigurationCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_restJson1DescribeNotificationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationConfigurationCommandOutput>;
|
|
45
55
|
export declare const deserializeAws_restJson1DescribeSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSignalingChannelCommandOutput>;
|
|
46
56
|
export declare const deserializeAws_restJson1DescribeStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamCommandOutput>;
|
|
47
57
|
export declare const deserializeAws_restJson1GetDataEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataEndpointCommandOutput>;
|
|
@@ -55,5 +65,7 @@ export declare const deserializeAws_restJson1TagStreamCommand: (output: __HttpRe
|
|
|
55
65
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
56
66
|
export declare const deserializeAws_restJson1UntagStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagStreamCommandOutput>;
|
|
57
67
|
export declare const deserializeAws_restJson1UpdateDataRetentionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataRetentionCommandOutput>;
|
|
68
|
+
export declare const deserializeAws_restJson1UpdateImageGenerationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateImageGenerationConfigurationCommandOutput>;
|
|
69
|
+
export declare const deserializeAws_restJson1UpdateNotificationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationConfigurationCommandOutput>;
|
|
58
70
|
export declare const deserializeAws_restJson1UpdateSignalingChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSignalingChannelCommandOutput>;
|
|
59
71
|
export declare const deserializeAws_restJson1UpdateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStreamCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Video Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.83.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.82.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.82.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.78.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.78.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.82.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.78.0",
|
|
39
39
|
"@aws-sdk/types": "3.78.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.78.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.81.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.78.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.80.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|