@aws-sdk/client-kinesis-video-archived-media 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/KinesisVideoArchivedMedia.d.ts +112 -35
- package/dist-types/ts3.4/KinesisVideoArchivedMediaClient.d.ts +166 -79
- package/dist-types/ts3.4/commands/GetClipCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetDASHStreamingSessionURLCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetHLSStreamingSessionURLCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetImagesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetMediaForFragmentListCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListFragmentsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/KinesisVideoArchivedMediaServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +426 -384
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media
|
|
@@ -1,35 +1,112 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetClipCommandInput,
|
|
4
|
+
GetClipCommandOutput,
|
|
5
|
+
} from "./commands/GetClipCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetDASHStreamingSessionURLCommandInput,
|
|
8
|
+
GetDASHStreamingSessionURLCommandOutput,
|
|
9
|
+
} from "./commands/GetDASHStreamingSessionURLCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetHLSStreamingSessionURLCommandInput,
|
|
12
|
+
GetHLSStreamingSessionURLCommandOutput,
|
|
13
|
+
} from "./commands/GetHLSStreamingSessionURLCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetImagesCommandInput,
|
|
16
|
+
GetImagesCommandOutput,
|
|
17
|
+
} from "./commands/GetImagesCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetMediaForFragmentListCommandInput,
|
|
20
|
+
GetMediaForFragmentListCommandOutput,
|
|
21
|
+
} from "./commands/GetMediaForFragmentListCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListFragmentsCommandInput,
|
|
24
|
+
ListFragmentsCommandOutput,
|
|
25
|
+
} from "./commands/ListFragmentsCommand";
|
|
26
|
+
import { KinesisVideoArchivedMediaClient } from "./KinesisVideoArchivedMediaClient";
|
|
27
|
+
|
|
28
|
+
export declare class KinesisVideoArchivedMedia extends KinesisVideoArchivedMediaClient {
|
|
29
|
+
getClip(
|
|
30
|
+
args: GetClipCommandInput,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Promise<GetClipCommandOutput>;
|
|
33
|
+
getClip(
|
|
34
|
+
args: GetClipCommandInput,
|
|
35
|
+
cb: (err: any, data?: GetClipCommandOutput) => void
|
|
36
|
+
): void;
|
|
37
|
+
getClip(
|
|
38
|
+
args: GetClipCommandInput,
|
|
39
|
+
options: __HttpHandlerOptions,
|
|
40
|
+
cb: (err: any, data?: GetClipCommandOutput) => void
|
|
41
|
+
): void;
|
|
42
|
+
|
|
43
|
+
getDASHStreamingSessionURL(
|
|
44
|
+
args: GetDASHStreamingSessionURLCommandInput,
|
|
45
|
+
options?: __HttpHandlerOptions
|
|
46
|
+
): Promise<GetDASHStreamingSessionURLCommandOutput>;
|
|
47
|
+
getDASHStreamingSessionURL(
|
|
48
|
+
args: GetDASHStreamingSessionURLCommandInput,
|
|
49
|
+
cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void
|
|
50
|
+
): void;
|
|
51
|
+
getDASHStreamingSessionURL(
|
|
52
|
+
args: GetDASHStreamingSessionURLCommandInput,
|
|
53
|
+
options: __HttpHandlerOptions,
|
|
54
|
+
cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void
|
|
55
|
+
): void;
|
|
56
|
+
|
|
57
|
+
getHLSStreamingSessionURL(
|
|
58
|
+
args: GetHLSStreamingSessionURLCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<GetHLSStreamingSessionURLCommandOutput>;
|
|
61
|
+
getHLSStreamingSessionURL(
|
|
62
|
+
args: GetHLSStreamingSessionURLCommandInput,
|
|
63
|
+
cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
getHLSStreamingSessionURL(
|
|
66
|
+
args: GetHLSStreamingSessionURLCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
|
|
71
|
+
getImages(
|
|
72
|
+
args: GetImagesCommandInput,
|
|
73
|
+
options?: __HttpHandlerOptions
|
|
74
|
+
): Promise<GetImagesCommandOutput>;
|
|
75
|
+
getImages(
|
|
76
|
+
args: GetImagesCommandInput,
|
|
77
|
+
cb: (err: any, data?: GetImagesCommandOutput) => void
|
|
78
|
+
): void;
|
|
79
|
+
getImages(
|
|
80
|
+
args: GetImagesCommandInput,
|
|
81
|
+
options: __HttpHandlerOptions,
|
|
82
|
+
cb: (err: any, data?: GetImagesCommandOutput) => void
|
|
83
|
+
): void;
|
|
84
|
+
|
|
85
|
+
getMediaForFragmentList(
|
|
86
|
+
args: GetMediaForFragmentListCommandInput,
|
|
87
|
+
options?: __HttpHandlerOptions
|
|
88
|
+
): Promise<GetMediaForFragmentListCommandOutput>;
|
|
89
|
+
getMediaForFragmentList(
|
|
90
|
+
args: GetMediaForFragmentListCommandInput,
|
|
91
|
+
cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
getMediaForFragmentList(
|
|
94
|
+
args: GetMediaForFragmentListCommandInput,
|
|
95
|
+
options: __HttpHandlerOptions,
|
|
96
|
+
cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
|
|
99
|
+
listFragments(
|
|
100
|
+
args: ListFragmentsCommandInput,
|
|
101
|
+
options?: __HttpHandlerOptions
|
|
102
|
+
): Promise<ListFragmentsCommandOutput>;
|
|
103
|
+
listFragments(
|
|
104
|
+
args: ListFragmentsCommandInput,
|
|
105
|
+
cb: (err: any, data?: ListFragmentsCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
listFragments(
|
|
108
|
+
args: ListFragmentsCommandInput,
|
|
109
|
+
options: __HttpHandlerOptions,
|
|
110
|
+
cb: (err: any, data?: ListFragmentsCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
}
|
|
@@ -1,79 +1,166 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
export
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
GetClipCommandInput,
|
|
47
|
+
GetClipCommandOutput,
|
|
48
|
+
} from "./commands/GetClipCommand";
|
|
49
|
+
import {
|
|
50
|
+
GetDASHStreamingSessionURLCommandInput,
|
|
51
|
+
GetDASHStreamingSessionURLCommandOutput,
|
|
52
|
+
} from "./commands/GetDASHStreamingSessionURLCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetHLSStreamingSessionURLCommandInput,
|
|
55
|
+
GetHLSStreamingSessionURLCommandOutput,
|
|
56
|
+
} from "./commands/GetHLSStreamingSessionURLCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetImagesCommandInput,
|
|
59
|
+
GetImagesCommandOutput,
|
|
60
|
+
} from "./commands/GetImagesCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetMediaForFragmentListCommandInput,
|
|
63
|
+
GetMediaForFragmentListCommandOutput,
|
|
64
|
+
} from "./commands/GetMediaForFragmentListCommand";
|
|
65
|
+
import {
|
|
66
|
+
ListFragmentsCommandInput,
|
|
67
|
+
ListFragmentsCommandOutput,
|
|
68
|
+
} from "./commands/ListFragmentsCommand";
|
|
69
|
+
export declare type ServiceInputTypes =
|
|
70
|
+
| GetClipCommandInput
|
|
71
|
+
| GetDASHStreamingSessionURLCommandInput
|
|
72
|
+
| GetHLSStreamingSessionURLCommandInput
|
|
73
|
+
| GetImagesCommandInput
|
|
74
|
+
| GetMediaForFragmentListCommandInput
|
|
75
|
+
| ListFragmentsCommandInput;
|
|
76
|
+
export declare type ServiceOutputTypes =
|
|
77
|
+
| GetClipCommandOutput
|
|
78
|
+
| GetDASHStreamingSessionURLCommandOutput
|
|
79
|
+
| GetHLSStreamingSessionURLCommandOutput
|
|
80
|
+
| GetImagesCommandOutput
|
|
81
|
+
| GetMediaForFragmentListCommandOutput
|
|
82
|
+
| ListFragmentsCommandOutput;
|
|
83
|
+
export interface ClientDefaults
|
|
84
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
85
|
+
requestHandler?: __HttpHandler;
|
|
86
|
+
|
|
87
|
+
sha256?: __HashConstructor;
|
|
88
|
+
|
|
89
|
+
urlParser?: __UrlParser;
|
|
90
|
+
|
|
91
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
92
|
+
|
|
93
|
+
streamCollector?: __StreamCollector;
|
|
94
|
+
|
|
95
|
+
base64Decoder?: __Decoder;
|
|
96
|
+
|
|
97
|
+
base64Encoder?: __Encoder;
|
|
98
|
+
|
|
99
|
+
utf8Decoder?: __Decoder;
|
|
100
|
+
|
|
101
|
+
utf8Encoder?: __Encoder;
|
|
102
|
+
|
|
103
|
+
runtime?: string;
|
|
104
|
+
|
|
105
|
+
disableHostPrefix?: boolean;
|
|
106
|
+
|
|
107
|
+
maxAttempts?: number | __Provider<number>;
|
|
108
|
+
|
|
109
|
+
retryMode?: string | __Provider<string>;
|
|
110
|
+
|
|
111
|
+
logger?: __Logger;
|
|
112
|
+
|
|
113
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
114
|
+
|
|
115
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
116
|
+
|
|
117
|
+
serviceId?: string;
|
|
118
|
+
|
|
119
|
+
region?: string | __Provider<string>;
|
|
120
|
+
|
|
121
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
122
|
+
|
|
123
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
124
|
+
|
|
125
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
126
|
+
|
|
127
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
128
|
+
}
|
|
129
|
+
declare type KinesisVideoArchivedMediaClientConfigType = Partial<
|
|
130
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
131
|
+
> &
|
|
132
|
+
ClientDefaults &
|
|
133
|
+
RegionInputConfig &
|
|
134
|
+
EndpointsInputConfig &
|
|
135
|
+
RetryInputConfig &
|
|
136
|
+
HostHeaderInputConfig &
|
|
137
|
+
AwsAuthInputConfig &
|
|
138
|
+
UserAgentInputConfig;
|
|
139
|
+
|
|
140
|
+
export interface KinesisVideoArchivedMediaClientConfig
|
|
141
|
+
extends KinesisVideoArchivedMediaClientConfigType {}
|
|
142
|
+
declare type KinesisVideoArchivedMediaClientResolvedConfigType =
|
|
143
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
144
|
+
Required<ClientDefaults> &
|
|
145
|
+
RegionResolvedConfig &
|
|
146
|
+
EndpointsResolvedConfig &
|
|
147
|
+
RetryResolvedConfig &
|
|
148
|
+
HostHeaderResolvedConfig &
|
|
149
|
+
AwsAuthResolvedConfig &
|
|
150
|
+
UserAgentResolvedConfig;
|
|
151
|
+
|
|
152
|
+
export interface KinesisVideoArchivedMediaClientResolvedConfig
|
|
153
|
+
extends KinesisVideoArchivedMediaClientResolvedConfigType {}
|
|
154
|
+
|
|
155
|
+
export declare class KinesisVideoArchivedMediaClient extends __Client<
|
|
156
|
+
__HttpHandlerOptions,
|
|
157
|
+
ServiceInputTypes,
|
|
158
|
+
ServiceOutputTypes,
|
|
159
|
+
KinesisVideoArchivedMediaClientResolvedConfig
|
|
160
|
+
> {
|
|
161
|
+
readonly config: KinesisVideoArchivedMediaClientResolvedConfig;
|
|
162
|
+
constructor(configuration: KinesisVideoArchivedMediaClientConfig);
|
|
163
|
+
|
|
164
|
+
destroy(): void;
|
|
165
|
+
}
|
|
166
|
+
export {};
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisVideoArchivedMediaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisVideoArchivedMediaClient";
|
|
13
|
+
import { GetClipInput, GetClipOutput } from "../models/models_0";
|
|
14
|
+
export interface GetClipCommandInput extends GetClipInput {}
|
|
15
|
+
export interface GetClipCommandOutput extends GetClipOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class GetClipCommand extends $Command<
|
|
18
|
+
GetClipCommandInput,
|
|
19
|
+
GetClipCommandOutput,
|
|
20
|
+
KinesisVideoArchivedMediaClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: GetClipCommandInput;
|
|
23
|
+
constructor(input: GetClipCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: KinesisVideoArchivedMediaClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetClipCommandInput, GetClipCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisVideoArchivedMediaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisVideoArchivedMediaClient";
|
|
13
|
+
import {
|
|
14
|
+
GetDASHStreamingSessionURLInput,
|
|
15
|
+
GetDASHStreamingSessionURLOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDASHStreamingSessionURLCommandInput
|
|
18
|
+
extends GetDASHStreamingSessionURLInput {}
|
|
19
|
+
export interface GetDASHStreamingSessionURLCommandOutput
|
|
20
|
+
extends GetDASHStreamingSessionURLOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDASHStreamingSessionURLCommand extends $Command<
|
|
24
|
+
GetDASHStreamingSessionURLCommandInput,
|
|
25
|
+
GetDASHStreamingSessionURLCommandOutput,
|
|
26
|
+
KinesisVideoArchivedMediaClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDASHStreamingSessionURLCommandInput;
|
|
29
|
+
constructor(input: GetDASHStreamingSessionURLCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisVideoArchivedMediaClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetDASHStreamingSessionURLCommandInput,
|
|
37
|
+
GetDASHStreamingSessionURLCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisVideoArchivedMediaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisVideoArchivedMediaClient";
|
|
13
|
+
import {
|
|
14
|
+
GetHLSStreamingSessionURLInput,
|
|
15
|
+
GetHLSStreamingSessionURLOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetHLSStreamingSessionURLCommandInput
|
|
18
|
+
extends GetHLSStreamingSessionURLInput {}
|
|
19
|
+
export interface GetHLSStreamingSessionURLCommandOutput
|
|
20
|
+
extends GetHLSStreamingSessionURLOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetHLSStreamingSessionURLCommand extends $Command<
|
|
24
|
+
GetHLSStreamingSessionURLCommandInput,
|
|
25
|
+
GetHLSStreamingSessionURLCommandOutput,
|
|
26
|
+
KinesisVideoArchivedMediaClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetHLSStreamingSessionURLCommandInput;
|
|
29
|
+
constructor(input: GetHLSStreamingSessionURLCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisVideoArchivedMediaClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetHLSStreamingSessionURLCommandInput,
|
|
37
|
+
GetHLSStreamingSessionURLCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisVideoArchivedMediaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisVideoArchivedMediaClient";
|
|
13
|
+
import { GetImagesInput, GetImagesOutput } from "../models/models_0";
|
|
14
|
+
export interface GetImagesCommandInput extends GetImagesInput {}
|
|
15
|
+
export interface GetImagesCommandOutput
|
|
16
|
+
extends GetImagesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetImagesCommand extends $Command<
|
|
20
|
+
GetImagesCommandInput,
|
|
21
|
+
GetImagesCommandOutput,
|
|
22
|
+
KinesisVideoArchivedMediaClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetImagesCommandInput;
|
|
25
|
+
constructor(input: GetImagesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: KinesisVideoArchivedMediaClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetImagesCommandInput, GetImagesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|