@aws-sdk/client-kinesis-video-archived-media 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/KinesisVideoArchivedMedia.d.ts +22 -34
- package/dist-types/ts3.4/KinesisVideoArchivedMediaClient.d.ts +7 -21
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/GetClipCommand.d.ts +8 -8
- package/dist-types/ts3.4/commands/GetDASHStreamingSessionURLCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHLSStreamingSessionURLCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetImagesCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetMediaForFragmentListCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListFragmentsCommand.d.ts +2 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +9 -36
- package/dist-types/ts3.4/pagination/GetImagesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -3,10 +3,7 @@ import {
|
|
|
3
3
|
PaginationConfiguration,
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
GetClipCommandInput,
|
|
8
|
-
GetClipCommandOutput,
|
|
9
|
-
} from "./commands/GetClipCommand";
|
|
6
|
+
import { GetClipCommandInput, GetClipCommandOutput } from "./commands/GetClipCommand";
|
|
10
7
|
import {
|
|
11
8
|
GetDASHStreamingSessionURLCommandInput,
|
|
12
9
|
GetDASHStreamingSessionURLCommandOutput,
|
|
@@ -15,10 +12,7 @@ import {
|
|
|
15
12
|
GetHLSStreamingSessionURLCommandInput,
|
|
16
13
|
GetHLSStreamingSessionURLCommandOutput,
|
|
17
14
|
} from "./commands/GetHLSStreamingSessionURLCommand";
|
|
18
|
-
import {
|
|
19
|
-
GetImagesCommandInput,
|
|
20
|
-
GetImagesCommandOutput,
|
|
21
|
-
} from "./commands/GetImagesCommand";
|
|
15
|
+
import { GetImagesCommandInput, GetImagesCommandOutput } from "./commands/GetImagesCommand";
|
|
22
16
|
import {
|
|
23
17
|
GetMediaForFragmentListCommandInput,
|
|
24
18
|
GetMediaForFragmentListCommandOutput,
|
|
@@ -29,100 +23,94 @@ import {
|
|
|
29
23
|
} from "./commands/ListFragmentsCommand";
|
|
30
24
|
import { KinesisVideoArchivedMediaClient } from "./KinesisVideoArchivedMediaClient";
|
|
31
25
|
export interface KinesisVideoArchivedMedia {
|
|
32
|
-
getClip(
|
|
33
|
-
|
|
34
|
-
options?: __HttpHandlerOptions
|
|
35
|
-
): Promise<GetClipCommandOutput>;
|
|
36
|
-
getClip(
|
|
37
|
-
args: GetClipCommandInput,
|
|
38
|
-
cb: (err: any, data?: GetClipCommandOutput) => void
|
|
39
|
-
): void;
|
|
26
|
+
getClip(args: GetClipCommandInput, options?: __HttpHandlerOptions): Promise<GetClipCommandOutput>;
|
|
27
|
+
getClip(args: GetClipCommandInput, cb: (err: any, data?: GetClipCommandOutput) => void): void;
|
|
40
28
|
getClip(
|
|
41
29
|
args: GetClipCommandInput,
|
|
42
30
|
options: __HttpHandlerOptions,
|
|
43
|
-
cb: (err: any, data?: GetClipCommandOutput) => void
|
|
31
|
+
cb: (err: any, data?: GetClipCommandOutput) => void,
|
|
44
32
|
): void;
|
|
45
33
|
getDASHStreamingSessionURL(): Promise<GetDASHStreamingSessionURLCommandOutput>;
|
|
46
34
|
getDASHStreamingSessionURL(
|
|
47
35
|
args: GetDASHStreamingSessionURLCommandInput,
|
|
48
|
-
options?: __HttpHandlerOptions
|
|
36
|
+
options?: __HttpHandlerOptions,
|
|
49
37
|
): Promise<GetDASHStreamingSessionURLCommandOutput>;
|
|
50
38
|
getDASHStreamingSessionURL(
|
|
51
39
|
args: GetDASHStreamingSessionURLCommandInput,
|
|
52
|
-
cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void
|
|
40
|
+
cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void,
|
|
53
41
|
): void;
|
|
54
42
|
getDASHStreamingSessionURL(
|
|
55
43
|
args: GetDASHStreamingSessionURLCommandInput,
|
|
56
44
|
options: __HttpHandlerOptions,
|
|
57
|
-
cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void
|
|
45
|
+
cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void,
|
|
58
46
|
): void;
|
|
59
47
|
getHLSStreamingSessionURL(): Promise<GetHLSStreamingSessionURLCommandOutput>;
|
|
60
48
|
getHLSStreamingSessionURL(
|
|
61
49
|
args: GetHLSStreamingSessionURLCommandInput,
|
|
62
|
-
options?: __HttpHandlerOptions
|
|
50
|
+
options?: __HttpHandlerOptions,
|
|
63
51
|
): Promise<GetHLSStreamingSessionURLCommandOutput>;
|
|
64
52
|
getHLSStreamingSessionURL(
|
|
65
53
|
args: GetHLSStreamingSessionURLCommandInput,
|
|
66
|
-
cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void
|
|
54
|
+
cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void,
|
|
67
55
|
): void;
|
|
68
56
|
getHLSStreamingSessionURL(
|
|
69
57
|
args: GetHLSStreamingSessionURLCommandInput,
|
|
70
58
|
options: __HttpHandlerOptions,
|
|
71
|
-
cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void
|
|
59
|
+
cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void,
|
|
72
60
|
): void;
|
|
73
61
|
getImages(
|
|
74
62
|
args: GetImagesCommandInput,
|
|
75
|
-
options?: __HttpHandlerOptions
|
|
63
|
+
options?: __HttpHandlerOptions,
|
|
76
64
|
): Promise<GetImagesCommandOutput>;
|
|
77
65
|
getImages(
|
|
78
66
|
args: GetImagesCommandInput,
|
|
79
|
-
cb: (err: any, data?: GetImagesCommandOutput) => void
|
|
67
|
+
cb: (err: any, data?: GetImagesCommandOutput) => void,
|
|
80
68
|
): void;
|
|
81
69
|
getImages(
|
|
82
70
|
args: GetImagesCommandInput,
|
|
83
71
|
options: __HttpHandlerOptions,
|
|
84
|
-
cb: (err: any, data?: GetImagesCommandOutput) => void
|
|
72
|
+
cb: (err: any, data?: GetImagesCommandOutput) => void,
|
|
85
73
|
): void;
|
|
86
74
|
getMediaForFragmentList(
|
|
87
75
|
args: GetMediaForFragmentListCommandInput,
|
|
88
|
-
options?: __HttpHandlerOptions
|
|
76
|
+
options?: __HttpHandlerOptions,
|
|
89
77
|
): Promise<GetMediaForFragmentListCommandOutput>;
|
|
90
78
|
getMediaForFragmentList(
|
|
91
79
|
args: GetMediaForFragmentListCommandInput,
|
|
92
|
-
cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void
|
|
80
|
+
cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void,
|
|
93
81
|
): void;
|
|
94
82
|
getMediaForFragmentList(
|
|
95
83
|
args: GetMediaForFragmentListCommandInput,
|
|
96
84
|
options: __HttpHandlerOptions,
|
|
97
|
-
cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void
|
|
85
|
+
cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void,
|
|
98
86
|
): void;
|
|
99
87
|
listFragments(): Promise<ListFragmentsCommandOutput>;
|
|
100
88
|
listFragments(
|
|
101
89
|
args: ListFragmentsCommandInput,
|
|
102
|
-
options?: __HttpHandlerOptions
|
|
90
|
+
options?: __HttpHandlerOptions,
|
|
103
91
|
): Promise<ListFragmentsCommandOutput>;
|
|
104
92
|
listFragments(
|
|
105
93
|
args: ListFragmentsCommandInput,
|
|
106
|
-
cb: (err: any, data?: ListFragmentsCommandOutput) => void
|
|
94
|
+
cb: (err: any, data?: ListFragmentsCommandOutput) => void,
|
|
107
95
|
): void;
|
|
108
96
|
listFragments(
|
|
109
97
|
args: ListFragmentsCommandInput,
|
|
110
98
|
options: __HttpHandlerOptions,
|
|
111
|
-
cb: (err: any, data?: ListFragmentsCommandOutput) => void
|
|
99
|
+
cb: (err: any, data?: ListFragmentsCommandOutput) => void,
|
|
112
100
|
): void;
|
|
113
101
|
paginateGetImages(
|
|
114
102
|
args: GetImagesCommandInput,
|
|
115
103
|
paginationConfig?: Pick<
|
|
116
104
|
PaginationConfiguration,
|
|
117
105
|
Exclude<keyof PaginationConfiguration, "client">
|
|
118
|
-
|
|
106
|
+
>,
|
|
119
107
|
): Paginator<GetImagesCommandOutput>;
|
|
120
108
|
paginateListFragments(
|
|
121
109
|
args?: ListFragmentsCommandInput,
|
|
122
110
|
paginationConfig?: Pick<
|
|
123
111
|
PaginationConfiguration,
|
|
124
112
|
Exclude<keyof PaginationConfiguration, "client">
|
|
125
|
-
|
|
113
|
+
>,
|
|
126
114
|
): Paginator<ListFragmentsCommandOutput>;
|
|
127
115
|
}
|
|
128
116
|
export declare class KinesisVideoArchivedMedia
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -37,10 +34,7 @@ import {
|
|
|
37
34
|
HttpAuthSchemeInputConfig,
|
|
38
35
|
HttpAuthSchemeResolvedConfig,
|
|
39
36
|
} from "./auth/httpAuthSchemeProvider";
|
|
40
|
-
import {
|
|
41
|
-
GetClipCommandInput,
|
|
42
|
-
GetClipCommandOutput,
|
|
43
|
-
} from "./commands/GetClipCommand";
|
|
37
|
+
import { GetClipCommandInput, GetClipCommandOutput } from "./commands/GetClipCommand";
|
|
44
38
|
import {
|
|
45
39
|
GetDASHStreamingSessionURLCommandInput,
|
|
46
40
|
GetDASHStreamingSessionURLCommandOutput,
|
|
@@ -49,10 +43,7 @@ import {
|
|
|
49
43
|
GetHLSStreamingSessionURLCommandInput,
|
|
50
44
|
GetHLSStreamingSessionURLCommandOutput,
|
|
51
45
|
} from "./commands/GetHLSStreamingSessionURLCommand";
|
|
52
|
-
import {
|
|
53
|
-
GetImagesCommandInput,
|
|
54
|
-
GetImagesCommandOutput,
|
|
55
|
-
} from "./commands/GetImagesCommand";
|
|
46
|
+
import { GetImagesCommandInput, GetImagesCommandOutput } from "./commands/GetImagesCommand";
|
|
56
47
|
import {
|
|
57
48
|
GetMediaForFragmentListCommandInput,
|
|
58
49
|
GetMediaForFragmentListCommandOutput,
|
|
@@ -82,8 +73,7 @@ export type ServiceOutputTypes =
|
|
|
82
73
|
| GetImagesCommandOutput
|
|
83
74
|
| GetMediaForFragmentListCommandOutput
|
|
84
75
|
| ListFragmentsCommandOutput;
|
|
85
|
-
export interface ClientDefaults
|
|
86
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
76
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
87
77
|
requestHandler?: __HttpHandlerUserInput;
|
|
88
78
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
89
79
|
urlParser?: __UrlParser;
|
|
@@ -120,8 +110,7 @@ export type KinesisVideoArchivedMediaClientConfigType = Partial<
|
|
|
120
110
|
EndpointInputConfig<EndpointParameters> &
|
|
121
111
|
HttpAuthSchemeInputConfig &
|
|
122
112
|
ClientInputEndpointParameters;
|
|
123
|
-
export interface KinesisVideoArchivedMediaClientConfig
|
|
124
|
-
extends KinesisVideoArchivedMediaClientConfigType {}
|
|
113
|
+
export interface KinesisVideoArchivedMediaClientConfig extends KinesisVideoArchivedMediaClientConfigType {}
|
|
125
114
|
export type KinesisVideoArchivedMediaClientResolvedConfigType =
|
|
126
115
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
127
116
|
Required<ClientDefaults> &
|
|
@@ -133,8 +122,7 @@ export type KinesisVideoArchivedMediaClientResolvedConfigType =
|
|
|
133
122
|
EndpointResolvedConfig<EndpointParameters> &
|
|
134
123
|
HttpAuthSchemeResolvedConfig &
|
|
135
124
|
ClientResolvedEndpointParameters;
|
|
136
|
-
export interface KinesisVideoArchivedMediaClientResolvedConfig
|
|
137
|
-
extends KinesisVideoArchivedMediaClientResolvedConfigType {}
|
|
125
|
+
export interface KinesisVideoArchivedMediaClientResolvedConfig extends KinesisVideoArchivedMediaClientResolvedConfigType {}
|
|
138
126
|
export declare class KinesisVideoArchivedMediaClient extends __Client<
|
|
139
127
|
__HttpHandlerOptions,
|
|
140
128
|
ServiceInputTypes,
|
|
@@ -143,9 +131,7 @@ export declare class KinesisVideoArchivedMediaClient extends __Client<
|
|
|
143
131
|
> {
|
|
144
132
|
readonly config: KinesisVideoArchivedMediaClientResolvedConfig;
|
|
145
133
|
constructor(
|
|
146
|
-
...[
|
|
147
|
-
configuration,
|
|
148
|
-
]: __CheckOptionalClientConfig<KinesisVideoArchivedMediaClientConfig>
|
|
134
|
+
...[configuration]: __CheckOptionalClientConfig<KinesisVideoArchivedMediaClientConfig>
|
|
149
135
|
);
|
|
150
136
|
destroy(): void;
|
|
151
137
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: KinesisVideoArchivedMediaHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: KinesisVideoArchivedMediaHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): KinesisVideoArchivedMediaHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { KinesisVideoArchivedMediaClientResolvedConfig } from "../KinesisVideoArchivedMediaClient";
|
|
15
|
-
export interface KinesisVideoArchivedMediaHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface KinesisVideoArchivedMediaHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface KinesisVideoArchivedMediaHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface KinesisVideoArchivedMediaHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
KinesisVideoArchivedMediaClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
KinesisVideoArchivedMediaHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultKinesisVideoArchivedMediaHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: KinesisVideoArchivedMediaClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<KinesisVideoArchivedMediaHttpAuthSchemeParameters>;
|
|
31
|
-
export interface KinesisVideoArchivedMediaHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<KinesisVideoArchivedMediaHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface KinesisVideoArchivedMediaHttpAuthSchemeProvider extends HttpAuthSchemeProvider<KinesisVideoArchivedMediaHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultKinesisVideoArchivedMediaHttpAuthSchemeProvider: KinesisVideoArchivedMediaHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: KinesisVideoArchivedMediaHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: KinesisVideoArchivedMediaHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./KinesisVideoArchivedMediaClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
KinesisVideoArchivedMediaClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
MetadataBearer as __MetadataBearer,
|
|
3
|
-
StreamingBlobPayloadOutputTypes,
|
|
4
|
-
} from "@smithy/types";
|
|
1
|
+
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
5
2
|
import { GetClipInput, GetClipOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetClipCommandInput extends GetClipInput {}
|
|
8
5
|
export interface GetClipCommandOutput
|
|
9
|
-
extends Pick<GetClipOutput, Exclude<keyof GetClipOutput, "Payload">>,
|
|
10
|
-
__MetadataBearer {
|
|
6
|
+
extends Pick<GetClipOutput, Exclude<keyof GetClipOutput, "Payload">>, __MetadataBearer {
|
|
11
7
|
Payload?: StreamingBlobPayloadOutputTypes;
|
|
12
8
|
}
|
|
13
9
|
declare const GetClipCommand_base: {
|
|
14
|
-
new (
|
|
10
|
+
new (
|
|
11
|
+
input: GetClipCommandInput,
|
|
12
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
13
|
GetClipCommandInput,
|
|
16
14
|
GetClipCommandOutput,
|
|
17
15
|
import("..").KinesisVideoArchivedMediaClientResolvedConfig,
|
|
18
16
|
import("..").ServiceInputTypes,
|
|
19
17
|
import("..").ServiceOutputTypes
|
|
20
18
|
>;
|
|
21
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: GetClipCommandInput,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
22
|
GetClipCommandInput,
|
|
23
23
|
GetClipCommandOutput,
|
|
24
24
|
import("..").KinesisVideoArchivedMediaClientResolvedConfig,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetDASHStreamingSessionURLOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDASHStreamingSessionURLCommandInput
|
|
8
|
-
extends GetDASHStreamingSessionURLInput {}
|
|
7
|
+
export interface GetDASHStreamingSessionURLCommandInput extends GetDASHStreamingSessionURLInput {}
|
|
9
8
|
export interface GetDASHStreamingSessionURLCommandOutput
|
|
10
|
-
extends GetDASHStreamingSessionURLOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetDASHStreamingSessionURLOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetDASHStreamingSessionURLCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetDASHStreamingSessionURLCommandInput
|
|
12
|
+
input: GetDASHStreamingSessionURLCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetDASHStreamingSessionURLCommandInput,
|
|
17
15
|
GetDASHStreamingSessionURLCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetHLSStreamingSessionURLOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetHLSStreamingSessionURLCommandInput
|
|
8
|
-
extends GetHLSStreamingSessionURLInput {}
|
|
7
|
+
export interface GetHLSStreamingSessionURLCommandInput extends GetHLSStreamingSessionURLInput {}
|
|
9
8
|
export interface GetHLSStreamingSessionURLCommandOutput
|
|
10
|
-
extends GetHLSStreamingSessionURLOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetHLSStreamingSessionURLOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetHLSStreamingSessionURLCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetHLSStreamingSessionURLCommandInput
|
|
12
|
+
input: GetHLSStreamingSessionURLCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetHLSStreamingSessionURLCommandInput,
|
|
17
15
|
GetHLSStreamingSessionURLCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetImagesInput, GetImagesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetImagesCommandInput extends GetImagesInput {}
|
|
5
|
-
export interface GetImagesCommandOutput
|
|
6
|
-
extends GetImagesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetImagesCommandOutput extends GetImagesOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetImagesCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetImagesCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetImagesCommandInput,
|
|
11
11
|
GetImagesCommandOutput,
|
|
12
12
|
import("..").KinesisVideoArchivedMediaClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetImagesCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetImagesCommandInput,
|
|
18
20
|
GetImagesCommandOutput,
|
|
19
21
|
import("..").KinesisVideoArchivedMediaClientResolvedConfig,
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
StreamingBlobPayloadOutputTypes,
|
|
4
|
-
} from "@smithy/types";
|
|
5
|
-
import {
|
|
6
|
-
GetMediaForFragmentListInput,
|
|
7
|
-
GetMediaForFragmentListOutput,
|
|
8
|
-
} from "../models/models_0";
|
|
1
|
+
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
2
|
+
import { GetMediaForFragmentListInput, GetMediaForFragmentListOutput } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export interface GetMediaForFragmentListCommandInput
|
|
11
|
-
extends GetMediaForFragmentListInput {}
|
|
4
|
+
export interface GetMediaForFragmentListCommandInput extends GetMediaForFragmentListInput {}
|
|
12
5
|
export interface GetMediaForFragmentListCommandOutput
|
|
13
|
-
extends
|
|
14
|
-
|
|
15
|
-
Exclude<keyof GetMediaForFragmentListOutput, "Payload">
|
|
16
|
-
>,
|
|
6
|
+
extends
|
|
7
|
+
Pick<GetMediaForFragmentListOutput, Exclude<keyof GetMediaForFragmentListOutput, "Payload">>,
|
|
17
8
|
__MetadataBearer {
|
|
18
9
|
Payload?: StreamingBlobPayloadOutputTypes;
|
|
19
10
|
}
|
|
20
11
|
declare const GetMediaForFragmentListCommand_base: {
|
|
21
12
|
new (
|
|
22
|
-
input: GetMediaForFragmentListCommandInput
|
|
13
|
+
input: GetMediaForFragmentListCommandInput,
|
|
23
14
|
): import("@smithy/core/client").CommandImpl<
|
|
24
15
|
GetMediaForFragmentListCommandInput,
|
|
25
16
|
GetMediaForFragmentListCommandOutput,
|
|
@@ -28,7 +19,7 @@ declare const GetMediaForFragmentListCommand_base: {
|
|
|
28
19
|
import("..").ServiceOutputTypes
|
|
29
20
|
>;
|
|
30
21
|
new (
|
|
31
|
-
input: GetMediaForFragmentListCommandInput
|
|
22
|
+
input: GetMediaForFragmentListCommandInput,
|
|
32
23
|
): import("@smithy/core/client").CommandImpl<
|
|
33
24
|
GetMediaForFragmentListCommandInput,
|
|
34
25
|
GetMediaForFragmentListCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListFragmentsCommandInput extends ListFragmentsInput {}
|
|
5
|
-
export interface ListFragmentsCommandOutput
|
|
6
|
-
extends ListFragmentsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFragmentsCommandOutput extends ListFragmentsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListFragmentsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListFragmentsCommandInput
|
|
8
|
+
input: ListFragmentsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListFragmentsCommandInput,
|
|
13
11
|
ListFragmentsCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface KinesisVideoArchivedMediaExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -27,21 +27,18 @@ export declare const DASHPlaybackMode: {
|
|
|
27
27
|
readonly LIVE_REPLAY: "LIVE_REPLAY";
|
|
28
28
|
readonly ON_DEMAND: "ON_DEMAND";
|
|
29
29
|
};
|
|
30
|
-
export type DASHPlaybackMode =
|
|
31
|
-
(typeof DASHPlaybackMode)[keyof typeof DASHPlaybackMode];
|
|
30
|
+
export type DASHPlaybackMode = (typeof DASHPlaybackMode)[keyof typeof DASHPlaybackMode];
|
|
32
31
|
export declare const ContainerFormat: {
|
|
33
32
|
readonly FRAGMENTED_MP4: "FRAGMENTED_MP4";
|
|
34
33
|
readonly MPEG_TS: "MPEG_TS";
|
|
35
34
|
};
|
|
36
|
-
export type ContainerFormat =
|
|
37
|
-
(typeof ContainerFormat)[keyof typeof ContainerFormat];
|
|
35
|
+
export type ContainerFormat = (typeof ContainerFormat)[keyof typeof ContainerFormat];
|
|
38
36
|
export declare const HLSDiscontinuityMode: {
|
|
39
37
|
readonly ALWAYS: "ALWAYS";
|
|
40
38
|
readonly NEVER: "NEVER";
|
|
41
39
|
readonly ON_DISCONTINUITY: "ON_DISCONTINUITY";
|
|
42
40
|
};
|
|
43
|
-
export type HLSDiscontinuityMode =
|
|
44
|
-
(typeof HLSDiscontinuityMode)[keyof typeof HLSDiscontinuityMode];
|
|
41
|
+
export type HLSDiscontinuityMode = (typeof HLSDiscontinuityMode)[keyof typeof HLSDiscontinuityMode];
|
|
45
42
|
export declare const HLSDisplayFragmentTimestamp: {
|
|
46
43
|
readonly ALWAYS: "ALWAYS";
|
|
47
44
|
readonly NEVER: "NEVER";
|
|
@@ -59,8 +56,7 @@ export declare const HLSPlaybackMode: {
|
|
|
59
56
|
readonly LIVE_REPLAY: "LIVE_REPLAY";
|
|
60
57
|
readonly ON_DEMAND: "ON_DEMAND";
|
|
61
58
|
};
|
|
62
|
-
export type HLSPlaybackMode =
|
|
63
|
-
(typeof HLSPlaybackMode)[keyof typeof HLSPlaybackMode];
|
|
59
|
+
export type HLSPlaybackMode = (typeof HLSPlaybackMode)[keyof typeof HLSPlaybackMode];
|
|
64
60
|
export declare const Format: {
|
|
65
61
|
readonly JPEG: "JPEG";
|
|
66
62
|
readonly PNG: "PNG";
|
|
@@ -69,14 +65,12 @@ export type Format = (typeof Format)[keyof typeof Format];
|
|
|
69
65
|
export declare const FormatConfigKey: {
|
|
70
66
|
readonly JPEGQuality: "JPEGQuality";
|
|
71
67
|
};
|
|
72
|
-
export type FormatConfigKey =
|
|
73
|
-
(typeof FormatConfigKey)[keyof typeof FormatConfigKey];
|
|
68
|
+
export type FormatConfigKey = (typeof FormatConfigKey)[keyof typeof FormatConfigKey];
|
|
74
69
|
export declare const ImageSelectorType: {
|
|
75
70
|
readonly PRODUCER_TIMESTAMP: "PRODUCER_TIMESTAMP";
|
|
76
71
|
readonly SERVER_TIMESTAMP: "SERVER_TIMESTAMP";
|
|
77
72
|
};
|
|
78
|
-
export type ImageSelectorType =
|
|
79
|
-
(typeof ImageSelectorType)[keyof typeof ImageSelectorType];
|
|
73
|
+
export type ImageSelectorType = (typeof ImageSelectorType)[keyof typeof ImageSelectorType];
|
|
80
74
|
export declare const ImageError: {
|
|
81
75
|
readonly MEDIA_ERROR: "MEDIA_ERROR";
|
|
82
76
|
readonly NO_MEDIA: "NO_MEDIA";
|
|
@@ -86,5 +80,4 @@ export declare const FragmentSelectorType: {
|
|
|
86
80
|
readonly PRODUCER_TIMESTAMP: "PRODUCER_TIMESTAMP";
|
|
87
81
|
readonly SERVER_TIMESTAMP: "SERVER_TIMESTAMP";
|
|
88
82
|
};
|
|
89
|
-
export type FragmentSelectorType =
|
|
90
|
-
(typeof FragmentSelectorType)[keyof typeof FragmentSelectorType];
|
|
83
|
+
export type FragmentSelectorType = (typeof FragmentSelectorType)[keyof typeof FragmentSelectorType];
|
|
@@ -4,80 +4,53 @@ export declare class ClientLimitExceededException extends __BaseException {
|
|
|
4
4
|
readonly name: "ClientLimitExceededException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InvalidArgumentException extends __BaseException {
|
|
12
10
|
readonly name: "InvalidArgumentException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
Message?: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class InvalidCodecPrivateDataException extends __BaseException {
|
|
20
16
|
readonly name: "InvalidCodecPrivateDataException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
18
|
Message?: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<
|
|
25
|
-
InvalidCodecPrivateDataException,
|
|
26
|
-
__BaseException
|
|
27
|
-
>
|
|
28
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<InvalidCodecPrivateDataException, __BaseException>);
|
|
29
20
|
}
|
|
30
21
|
export declare class InvalidMediaFrameException extends __BaseException {
|
|
31
22
|
readonly name: "InvalidMediaFrameException";
|
|
32
23
|
readonly $fault: "client";
|
|
33
24
|
Message?: string | undefined;
|
|
34
|
-
constructor(
|
|
35
|
-
opts: __ExceptionOptionType<InvalidMediaFrameException, __BaseException>
|
|
36
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InvalidMediaFrameException, __BaseException>);
|
|
37
26
|
}
|
|
38
27
|
export declare class MissingCodecPrivateDataException extends __BaseException {
|
|
39
28
|
readonly name: "MissingCodecPrivateDataException";
|
|
40
29
|
readonly $fault: "client";
|
|
41
30
|
Message?: string | undefined;
|
|
42
|
-
constructor(
|
|
43
|
-
opts: __ExceptionOptionType<
|
|
44
|
-
MissingCodecPrivateDataException,
|
|
45
|
-
__BaseException
|
|
46
|
-
>
|
|
47
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<MissingCodecPrivateDataException, __BaseException>);
|
|
48
32
|
}
|
|
49
33
|
export declare class NoDataRetentionException extends __BaseException {
|
|
50
34
|
readonly name: "NoDataRetentionException";
|
|
51
35
|
readonly $fault: "client";
|
|
52
36
|
Message?: string | undefined;
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<NoDataRetentionException, __BaseException>
|
|
55
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<NoDataRetentionException, __BaseException>);
|
|
56
38
|
}
|
|
57
39
|
export declare class NotAuthorizedException extends __BaseException {
|
|
58
40
|
readonly name: "NotAuthorizedException";
|
|
59
41
|
readonly $fault: "client";
|
|
60
42
|
Message?: string | undefined;
|
|
61
|
-
constructor(
|
|
62
|
-
opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
|
|
63
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
|
|
64
44
|
}
|
|
65
45
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
66
46
|
readonly name: "ResourceNotFoundException";
|
|
67
47
|
readonly $fault: "client";
|
|
68
48
|
Message?: string | undefined;
|
|
69
|
-
constructor(
|
|
70
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
71
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
72
50
|
}
|
|
73
51
|
export declare class UnsupportedStreamMediaTypeException extends __BaseException {
|
|
74
52
|
readonly name: "UnsupportedStreamMediaTypeException";
|
|
75
53
|
readonly $fault: "client";
|
|
76
54
|
Message?: string | undefined;
|
|
77
|
-
constructor(
|
|
78
|
-
opts: __ExceptionOptionType<
|
|
79
|
-
UnsupportedStreamMediaTypeException,
|
|
80
|
-
__BaseException
|
|
81
|
-
>
|
|
82
|
-
);
|
|
55
|
+
constructor(opts: __ExceptionOptionType<UnsupportedStreamMediaTypeException, __BaseException>);
|
|
83
56
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetImagesCommandInput,
|
|
4
|
-
GetImagesCommandOutput,
|
|
5
|
-
} from "../commands/GetImagesCommand";
|
|
2
|
+
import { GetImagesCommandInput, GetImagesCommandOutput } from "../commands/GetImagesCommand";
|
|
6
3
|
import { KinesisVideoArchivedMediaPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateGetImages: (
|
|
8
5
|
config: KinesisVideoArchivedMediaPaginationConfiguration,
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { KinesisVideoArchivedMediaClient } from "../KinesisVideoArchivedMediaClient";
|
|
3
|
-
export interface KinesisVideoArchivedMediaPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface KinesisVideoArchivedMediaPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: KinesisVideoArchivedMediaClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: KinesisVideoArchivedMediaClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -56,13 +46,8 @@ export declare const getRuntimeConfig: (
|
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
58
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
59
|
-
userAgentAppId?:
|
|
60
|
-
|
|
61
|
-
| undefined
|
|
62
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
63
|
-
retryStrategy?:
|
|
64
|
-
| import("@smithy/types").RetryStrategy
|
|
65
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
49
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
66
51
|
endpoint?:
|
|
67
52
|
| ((
|
|
68
53
|
| string
|
|
@@ -84,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
84
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
85
70
|
context?: {
|
|
86
71
|
logger?: import("@smithy/types").Logger;
|
|
87
|
-
}
|
|
72
|
+
},
|
|
88
73
|
) => import("@smithy/types").EndpointV2;
|
|
89
74
|
tls?: boolean;
|
|
90
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -97,13 +82,13 @@ export declare const getRuntimeConfig: (
|
|
|
97
82
|
signer?:
|
|
98
83
|
| import("@smithy/types").RequestSigner
|
|
99
84
|
| ((
|
|
100
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
101
86
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
102
87
|
signingEscapePath?: boolean;
|
|
103
88
|
systemClockOffset?: number;
|
|
104
89
|
signingRegion?: string;
|
|
105
90
|
signerConstructor?: new (
|
|
106
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
107
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
108
93
|
) => import("@smithy/types").RequestSigner;
|
|
109
94
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: KinesisVideoArchivedMediaClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -56,9 +48,7 @@ export declare const getRuntimeConfig: (
|
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
58
50
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
59
|
-
retryStrategy?:
|
|
60
|
-
| import("@smithy/types").RetryStrategy
|
|
61
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
51
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
62
52
|
endpoint?:
|
|
63
53
|
| ((
|
|
64
54
|
| string
|
|
@@ -80,7 +70,7 @@ export declare const getRuntimeConfig: (
|
|
|
80
70
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
81
71
|
context?: {
|
|
82
72
|
logger?: import("@smithy/types").Logger;
|
|
83
|
-
}
|
|
73
|
+
},
|
|
84
74
|
) => import("@smithy/types").EndpointV2;
|
|
85
75
|
tls?: boolean;
|
|
86
76
|
serviceConfiguredEndpoint?: never;
|
|
@@ -92,13 +82,13 @@ export declare const getRuntimeConfig: (
|
|
|
92
82
|
signer?:
|
|
93
83
|
| import("@smithy/types").RequestSigner
|
|
94
84
|
| ((
|
|
95
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
96
86
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
97
87
|
signingEscapePath?: boolean;
|
|
98
88
|
systemClockOffset?: number;
|
|
99
89
|
signingRegion?: string;
|
|
100
90
|
signerConstructor?: new (
|
|
101
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
102
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
103
93
|
) => import("@smithy/types").RequestSigner;
|
|
104
94
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
2
|
-
export declare const getRuntimeConfig: (
|
|
3
|
-
config: KinesisVideoArchivedMediaClientConfig
|
|
4
|
-
) => {
|
|
2
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
5
3
|
runtime: string;
|
|
6
4
|
requestHandler:
|
|
7
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
@@ -23,11 +21,7 @@ export declare const getRuntimeConfig: (
|
|
|
23
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
23
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
25
|
) => Promise<Uint8Array>;
|
|
32
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -42,31 +36,22 @@ export declare const getRuntimeConfig: (
|
|
|
42
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
43
37
|
profile?: string;
|
|
44
38
|
defaultUserAgentProvider: (
|
|
45
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
46
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
47
41
|
credentialDefaultProvider:
|
|
48
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
49
|
-
| ((
|
|
50
|
-
_: unknown
|
|
51
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
46
|
logger: import("@smithy/types").Logger;
|
|
55
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
48
|
defaultsMode:
|
|
57
49
|
| import("@smithy/core/client").DefaultsMode
|
|
58
|
-
| import("@smithy/types").Provider<
|
|
59
|
-
import("@smithy/core/client").DefaultsMode
|
|
60
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
61
51
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
62
52
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
63
|
-
userAgentAppId?:
|
|
64
|
-
|
|
65
|
-
| undefined
|
|
66
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
67
|
-
retryStrategy?:
|
|
68
|
-
| import("@smithy/types").RetryStrategy
|
|
69
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
53
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
54
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
70
55
|
endpoint?:
|
|
71
56
|
| ((
|
|
72
57
|
| string
|
|
@@ -88,7 +73,7 @@ export declare const getRuntimeConfig: (
|
|
|
88
73
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
89
74
|
context?: {
|
|
90
75
|
logger?: import("@smithy/types").Logger;
|
|
91
|
-
}
|
|
76
|
+
},
|
|
92
77
|
) => import("@smithy/types").EndpointV2;
|
|
93
78
|
tls?: boolean;
|
|
94
79
|
serviceConfiguredEndpoint?: never;
|
|
@@ -101,13 +86,13 @@ export declare const getRuntimeConfig: (
|
|
|
101
86
|
signer?:
|
|
102
87
|
| import("@smithy/types").RequestSigner
|
|
103
88
|
| ((
|
|
104
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
89
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
105
90
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
106
91
|
signingEscapePath?: boolean;
|
|
107
92
|
systemClockOffset?: number;
|
|
108
93
|
signingRegion?: string;
|
|
109
94
|
signerConstructor?: new (
|
|
110
95
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
111
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
112
97
|
) => import("@smithy/types").RequestSigner;
|
|
113
98
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
2
|
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: KinesisVideoArchivedMediaClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
6
4
|
apiVersion: string;
|
|
7
5
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
6
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -11,7 +9,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
10
|
context?: {
|
|
13
11
|
logger?: import("@smithy/types").Logger;
|
|
14
|
-
}
|
|
12
|
+
},
|
|
15
13
|
) => import("@smithy/types").EndpointV2;
|
|
16
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").KinesisVideoArchivedMediaHttpAuthSchemeProvider;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { KinesisVideoArchivedMediaExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
4
|
-
extensionConfiguration: KinesisVideoArchivedMediaExtensionConfiguration
|
|
5
|
-
): void;
|
|
3
|
+
configure(extensionConfiguration: KinesisVideoArchivedMediaExtensionConfiguration): void;
|
|
6
4
|
}
|
|
7
5
|
export interface RuntimeExtensionsConfig {
|
|
8
6
|
extensions: RuntimeExtension[];
|
|
9
7
|
}
|
|
10
8
|
export declare const resolveRuntimeExtensions: (
|
|
11
9
|
runtimeConfig: any,
|
|
12
|
-
extensions: RuntimeExtension[]
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
13
11
|
) => any;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var KinesisVideoArchivedMediaServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var ClientLimitExceededException$: StaticErrorSchema;
|
|
9
5
|
export declare var InvalidArgumentException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video-archived-media",
|
|
3
|
+
"version": "3.1089.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Kinesis Video Archived Media Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-kinesis-video-archived-media",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-kinesis-video-archived-media"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,17 +45,13 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.70",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-kinesis-video-archived-media",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-kinesis-video-archived-media"
|
|
68
68
|
}
|
|
69
69
|
}
|