@aws-sdk/client-kinesis-video-archived-media 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/KinesisVideoArchivedMedia.d.ts +30 -0
- package/dist-types/ts3.4/KinesisVideoArchivedMediaClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/GetClipCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDASHStreamingSessionURLCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetHLSStreamingSessionURLCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMediaForFragmentListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFragmentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +341 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +17 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { GetClipCommandInput, GetClipCommandOutput } from "./commands/GetClipCommand";
|
|
3
|
+
import { GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput } from "./commands/GetDASHStreamingSessionURLCommand";
|
|
4
|
+
import { GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput } from "./commands/GetHLSStreamingSessionURLCommand";
|
|
5
|
+
import { GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput } from "./commands/GetMediaForFragmentListCommand";
|
|
6
|
+
import { ListFragmentsCommandInput, ListFragmentsCommandOutput } from "./commands/ListFragmentsCommand";
|
|
7
|
+
import { KinesisVideoArchivedMediaClient } from "./KinesisVideoArchivedMediaClient";
|
|
8
|
+
|
|
9
|
+
export declare class KinesisVideoArchivedMedia extends KinesisVideoArchivedMediaClient {
|
|
10
|
+
|
|
11
|
+
getClip(args: GetClipCommandInput, options?: __HttpHandlerOptions): Promise<GetClipCommandOutput>;
|
|
12
|
+
getClip(args: GetClipCommandInput, cb: (err: any, data?: GetClipCommandOutput) => void): void;
|
|
13
|
+
getClip(args: GetClipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClipCommandOutput) => void): void;
|
|
14
|
+
|
|
15
|
+
getDASHStreamingSessionURL(args: GetDASHStreamingSessionURLCommandInput, options?: __HttpHandlerOptions): Promise<GetDASHStreamingSessionURLCommandOutput>;
|
|
16
|
+
getDASHStreamingSessionURL(args: GetDASHStreamingSessionURLCommandInput, cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void): void;
|
|
17
|
+
getDASHStreamingSessionURL(args: GetDASHStreamingSessionURLCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDASHStreamingSessionURLCommandOutput) => void): void;
|
|
18
|
+
|
|
19
|
+
getHLSStreamingSessionURL(args: GetHLSStreamingSessionURLCommandInput, options?: __HttpHandlerOptions): Promise<GetHLSStreamingSessionURLCommandOutput>;
|
|
20
|
+
getHLSStreamingSessionURL(args: GetHLSStreamingSessionURLCommandInput, cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void): void;
|
|
21
|
+
getHLSStreamingSessionURL(args: GetHLSStreamingSessionURLCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHLSStreamingSessionURLCommandOutput) => void): void;
|
|
22
|
+
|
|
23
|
+
getMediaForFragmentList(args: GetMediaForFragmentListCommandInput, options?: __HttpHandlerOptions): Promise<GetMediaForFragmentListCommandOutput>;
|
|
24
|
+
getMediaForFragmentList(args: GetMediaForFragmentListCommandInput, cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void): void;
|
|
25
|
+
getMediaForFragmentList(args: GetMediaForFragmentListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMediaForFragmentListCommandOutput) => void): void;
|
|
26
|
+
|
|
27
|
+
listFragments(args: ListFragmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListFragmentsCommandOutput>;
|
|
28
|
+
listFragments(args: ListFragmentsCommandInput, cb: (err: any, data?: ListFragmentsCommandOutput) => void): void;
|
|
29
|
+
listFragments(args: ListFragmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFragmentsCommandOutput) => void): void;
|
|
30
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { GetClipCommandInput, GetClipCommandOutput } from "./commands/GetClipCommand";
|
|
10
|
+
import { GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput } from "./commands/GetDASHStreamingSessionURLCommand";
|
|
11
|
+
import { GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput } from "./commands/GetHLSStreamingSessionURLCommand";
|
|
12
|
+
import { GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput } from "./commands/GetMediaForFragmentListCommand";
|
|
13
|
+
import { ListFragmentsCommandInput, ListFragmentsCommandOutput } from "./commands/ListFragmentsCommand";
|
|
14
|
+
export declare type ServiceInputTypes = GetClipCommandInput | GetDASHStreamingSessionURLCommandInput | GetHLSStreamingSessionURLCommandInput | GetMediaForFragmentListCommandInput | ListFragmentsCommandInput;
|
|
15
|
+
export declare type ServiceOutputTypes = GetClipCommandOutput | GetDASHStreamingSessionURLCommandOutput | GetHLSStreamingSessionURLCommandOutput | GetMediaForFragmentListCommandOutput | ListFragmentsCommandOutput;
|
|
16
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
17
|
+
|
|
18
|
+
requestHandler?: __HttpHandler;
|
|
19
|
+
|
|
20
|
+
sha256?: __HashConstructor;
|
|
21
|
+
|
|
22
|
+
urlParser?: __UrlParser;
|
|
23
|
+
|
|
24
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
25
|
+
|
|
26
|
+
streamCollector?: __StreamCollector;
|
|
27
|
+
|
|
28
|
+
base64Decoder?: __Decoder;
|
|
29
|
+
|
|
30
|
+
base64Encoder?: __Encoder;
|
|
31
|
+
|
|
32
|
+
utf8Decoder?: __Decoder;
|
|
33
|
+
|
|
34
|
+
utf8Encoder?: __Encoder;
|
|
35
|
+
|
|
36
|
+
runtime?: string;
|
|
37
|
+
|
|
38
|
+
disableHostPrefix?: boolean;
|
|
39
|
+
|
|
40
|
+
maxAttempts?: number | __Provider<number>;
|
|
41
|
+
|
|
42
|
+
retryMode?: string | __Provider<string>;
|
|
43
|
+
|
|
44
|
+
logger?: __Logger;
|
|
45
|
+
|
|
46
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
47
|
+
|
|
48
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
49
|
+
|
|
50
|
+
serviceId?: string;
|
|
51
|
+
|
|
52
|
+
region?: string | __Provider<string>;
|
|
53
|
+
|
|
54
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
55
|
+
|
|
56
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
57
|
+
|
|
58
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
59
|
+
|
|
60
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
61
|
+
}
|
|
62
|
+
declare type KinesisVideoArchivedMediaClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
63
|
+
|
|
64
|
+
export interface KinesisVideoArchivedMediaClientConfig extends KinesisVideoArchivedMediaClientConfigType {
|
|
65
|
+
}
|
|
66
|
+
declare type KinesisVideoArchivedMediaClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
67
|
+
|
|
68
|
+
export interface KinesisVideoArchivedMediaClientResolvedConfig extends KinesisVideoArchivedMediaClientResolvedConfigType {
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export declare class KinesisVideoArchivedMediaClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KinesisVideoArchivedMediaClientResolvedConfig> {
|
|
72
|
+
|
|
73
|
+
readonly config: KinesisVideoArchivedMediaClientResolvedConfig;
|
|
74
|
+
constructor(configuration: KinesisVideoArchivedMediaClientConfig);
|
|
75
|
+
|
|
76
|
+
destroy(): void;
|
|
77
|
+
}
|
|
78
|
+
export {};
|
|
@@ -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 { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
4
|
+
import { GetClipInput, GetClipOutput } from "../models/models_0";
|
|
5
|
+
export interface GetClipCommandInput extends GetClipInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetClipCommandOutput extends GetClipOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetClipCommand extends $Command<GetClipCommandInput, GetClipCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig> {
|
|
11
|
+
readonly input: GetClipCommandInput;
|
|
12
|
+
constructor(input: GetClipCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoArchivedMediaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetClipCommandInput, GetClipCommandOutput>;
|
|
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 { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
4
|
+
import { GetDASHStreamingSessionURLInput, GetDASHStreamingSessionURLOutput } from "../models/models_0";
|
|
5
|
+
export interface GetDASHStreamingSessionURLCommandInput extends GetDASHStreamingSessionURLInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetDASHStreamingSessionURLCommandOutput extends GetDASHStreamingSessionURLOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetDASHStreamingSessionURLCommand extends $Command<GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig> {
|
|
11
|
+
readonly input: GetDASHStreamingSessionURLCommandInput;
|
|
12
|
+
constructor(input: GetDASHStreamingSessionURLCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoArchivedMediaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput>;
|
|
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 { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
4
|
+
import { GetHLSStreamingSessionURLInput, GetHLSStreamingSessionURLOutput } from "../models/models_0";
|
|
5
|
+
export interface GetHLSStreamingSessionURLCommandInput extends GetHLSStreamingSessionURLInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetHLSStreamingSessionURLCommandOutput extends GetHLSStreamingSessionURLOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetHLSStreamingSessionURLCommand extends $Command<GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig> {
|
|
11
|
+
readonly input: GetHLSStreamingSessionURLCommandInput;
|
|
12
|
+
constructor(input: GetHLSStreamingSessionURLCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoArchivedMediaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput>;
|
|
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 { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
4
|
+
import { GetMediaForFragmentListInput, GetMediaForFragmentListOutput } from "../models/models_0";
|
|
5
|
+
export interface GetMediaForFragmentListCommandInput extends GetMediaForFragmentListInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetMediaForFragmentListCommandOutput extends GetMediaForFragmentListOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetMediaForFragmentListCommand extends $Command<GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig> {
|
|
11
|
+
readonly input: GetMediaForFragmentListCommandInput;
|
|
12
|
+
constructor(input: GetMediaForFragmentListCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoArchivedMediaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput>;
|
|
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 { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
4
|
+
import { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0";
|
|
5
|
+
export interface ListFragmentsCommandInput extends ListFragmentsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListFragmentsCommandOutput extends ListFragmentsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListFragmentsCommand extends $Command<ListFragmentsCommandInput, ListFragmentsCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig> {
|
|
11
|
+
readonly input: ListFragmentsCommandInput;
|
|
12
|
+
constructor(input: ListFragmentsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisVideoArchivedMediaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFragmentsCommandInput, ListFragmentsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
|
|
2
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
3
|
+
import { Readable } from "stream";
|
|
4
|
+
|
|
5
|
+
export interface ClientLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
6
|
+
name: "ClientLimitExceededException";
|
|
7
|
+
$fault: "client";
|
|
8
|
+
Message?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare enum ClipFragmentSelectorType {
|
|
11
|
+
PRODUCER_TIMESTAMP = "PRODUCER_TIMESTAMP",
|
|
12
|
+
SERVER_TIMESTAMP = "SERVER_TIMESTAMP"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface ClipTimestampRange {
|
|
16
|
+
|
|
17
|
+
StartTimestamp: Date | undefined;
|
|
18
|
+
|
|
19
|
+
EndTimestamp: Date | undefined;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace ClipTimestampRange {
|
|
22
|
+
|
|
23
|
+
const filterSensitiveLog: (obj: ClipTimestampRange) => any;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface ClipFragmentSelector {
|
|
27
|
+
|
|
28
|
+
FragmentSelectorType: ClipFragmentSelectorType | string | undefined;
|
|
29
|
+
|
|
30
|
+
TimestampRange: ClipTimestampRange | undefined;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace ClipFragmentSelector {
|
|
33
|
+
|
|
34
|
+
const filterSensitiveLog: (obj: ClipFragmentSelector) => any;
|
|
35
|
+
}
|
|
36
|
+
export interface GetClipInput {
|
|
37
|
+
|
|
38
|
+
StreamName?: string;
|
|
39
|
+
|
|
40
|
+
StreamARN?: string;
|
|
41
|
+
|
|
42
|
+
ClipFragmentSelector: ClipFragmentSelector | undefined;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace GetClipInput {
|
|
45
|
+
|
|
46
|
+
const filterSensitiveLog: (obj: GetClipInput) => any;
|
|
47
|
+
}
|
|
48
|
+
export interface GetClipOutput {
|
|
49
|
+
|
|
50
|
+
ContentType?: string;
|
|
51
|
+
|
|
52
|
+
Payload?: Readable | ReadableStream | Blob;
|
|
53
|
+
}
|
|
54
|
+
export declare namespace GetClipOutput {
|
|
55
|
+
|
|
56
|
+
const filterSensitiveLog: (obj: GetClipOutput) => any;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface InvalidArgumentException extends __SmithyException, $MetadataBearer {
|
|
60
|
+
name: "InvalidArgumentException";
|
|
61
|
+
$fault: "client";
|
|
62
|
+
Message?: string;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface InvalidCodecPrivateDataException extends __SmithyException, $MetadataBearer {
|
|
66
|
+
name: "InvalidCodecPrivateDataException";
|
|
67
|
+
$fault: "client";
|
|
68
|
+
Message?: string;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface InvalidMediaFrameException extends __SmithyException, $MetadataBearer {
|
|
72
|
+
name: "InvalidMediaFrameException";
|
|
73
|
+
$fault: "client";
|
|
74
|
+
Message?: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface MissingCodecPrivateDataException extends __SmithyException, $MetadataBearer {
|
|
78
|
+
name: "MissingCodecPrivateDataException";
|
|
79
|
+
$fault: "client";
|
|
80
|
+
Message?: string;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface NoDataRetentionException extends __SmithyException, $MetadataBearer {
|
|
84
|
+
name: "NoDataRetentionException";
|
|
85
|
+
$fault: "client";
|
|
86
|
+
Message?: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface NotAuthorizedException extends __SmithyException, $MetadataBearer {
|
|
90
|
+
name: "NotAuthorizedException";
|
|
91
|
+
$fault: "client";
|
|
92
|
+
Message?: string;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
96
|
+
name: "ResourceNotFoundException";
|
|
97
|
+
$fault: "client";
|
|
98
|
+
Message?: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface UnsupportedStreamMediaTypeException extends __SmithyException, $MetadataBearer {
|
|
102
|
+
name: "UnsupportedStreamMediaTypeException";
|
|
103
|
+
$fault: "client";
|
|
104
|
+
Message?: string;
|
|
105
|
+
}
|
|
106
|
+
export declare enum DASHFragmentSelectorType {
|
|
107
|
+
PRODUCER_TIMESTAMP = "PRODUCER_TIMESTAMP",
|
|
108
|
+
SERVER_TIMESTAMP = "SERVER_TIMESTAMP"
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export interface DASHTimestampRange {
|
|
112
|
+
|
|
113
|
+
StartTimestamp?: Date;
|
|
114
|
+
|
|
115
|
+
EndTimestamp?: Date;
|
|
116
|
+
}
|
|
117
|
+
export declare namespace DASHTimestampRange {
|
|
118
|
+
|
|
119
|
+
const filterSensitiveLog: (obj: DASHTimestampRange) => any;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface DASHFragmentSelector {
|
|
123
|
+
|
|
124
|
+
FragmentSelectorType?: DASHFragmentSelectorType | string;
|
|
125
|
+
|
|
126
|
+
TimestampRange?: DASHTimestampRange;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace DASHFragmentSelector {
|
|
129
|
+
|
|
130
|
+
const filterSensitiveLog: (obj: DASHFragmentSelector) => any;
|
|
131
|
+
}
|
|
132
|
+
export declare enum DASHDisplayFragmentNumber {
|
|
133
|
+
ALWAYS = "ALWAYS",
|
|
134
|
+
NEVER = "NEVER"
|
|
135
|
+
}
|
|
136
|
+
export declare enum DASHDisplayFragmentTimestamp {
|
|
137
|
+
ALWAYS = "ALWAYS",
|
|
138
|
+
NEVER = "NEVER"
|
|
139
|
+
}
|
|
140
|
+
export declare enum DASHPlaybackMode {
|
|
141
|
+
LIVE = "LIVE",
|
|
142
|
+
LIVE_REPLAY = "LIVE_REPLAY",
|
|
143
|
+
ON_DEMAND = "ON_DEMAND"
|
|
144
|
+
}
|
|
145
|
+
export interface GetDASHStreamingSessionURLInput {
|
|
146
|
+
|
|
147
|
+
StreamName?: string;
|
|
148
|
+
|
|
149
|
+
StreamARN?: string;
|
|
150
|
+
|
|
151
|
+
PlaybackMode?: DASHPlaybackMode | string;
|
|
152
|
+
|
|
153
|
+
DisplayFragmentTimestamp?: DASHDisplayFragmentTimestamp | string;
|
|
154
|
+
|
|
155
|
+
DisplayFragmentNumber?: DASHDisplayFragmentNumber | string;
|
|
156
|
+
|
|
157
|
+
DASHFragmentSelector?: DASHFragmentSelector;
|
|
158
|
+
|
|
159
|
+
Expires?: number;
|
|
160
|
+
|
|
161
|
+
MaxManifestFragmentResults?: number;
|
|
162
|
+
}
|
|
163
|
+
export declare namespace GetDASHStreamingSessionURLInput {
|
|
164
|
+
|
|
165
|
+
const filterSensitiveLog: (obj: GetDASHStreamingSessionURLInput) => any;
|
|
166
|
+
}
|
|
167
|
+
export interface GetDASHStreamingSessionURLOutput {
|
|
168
|
+
|
|
169
|
+
DASHStreamingSessionURL?: string;
|
|
170
|
+
}
|
|
171
|
+
export declare namespace GetDASHStreamingSessionURLOutput {
|
|
172
|
+
|
|
173
|
+
const filterSensitiveLog: (obj: GetDASHStreamingSessionURLOutput) => any;
|
|
174
|
+
}
|
|
175
|
+
export declare enum ContainerFormat {
|
|
176
|
+
FRAGMENTED_MP4 = "FRAGMENTED_MP4",
|
|
177
|
+
MPEG_TS = "MPEG_TS"
|
|
178
|
+
}
|
|
179
|
+
export declare enum HLSDiscontinuityMode {
|
|
180
|
+
ALWAYS = "ALWAYS",
|
|
181
|
+
NEVER = "NEVER",
|
|
182
|
+
ON_DISCONTINUITY = "ON_DISCONTINUITY"
|
|
183
|
+
}
|
|
184
|
+
export declare enum HLSDisplayFragmentTimestamp {
|
|
185
|
+
ALWAYS = "ALWAYS",
|
|
186
|
+
NEVER = "NEVER"
|
|
187
|
+
}
|
|
188
|
+
export declare enum HLSFragmentSelectorType {
|
|
189
|
+
PRODUCER_TIMESTAMP = "PRODUCER_TIMESTAMP",
|
|
190
|
+
SERVER_TIMESTAMP = "SERVER_TIMESTAMP"
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export interface HLSTimestampRange {
|
|
194
|
+
|
|
195
|
+
StartTimestamp?: Date;
|
|
196
|
+
|
|
197
|
+
EndTimestamp?: Date;
|
|
198
|
+
}
|
|
199
|
+
export declare namespace HLSTimestampRange {
|
|
200
|
+
|
|
201
|
+
const filterSensitiveLog: (obj: HLSTimestampRange) => any;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export interface HLSFragmentSelector {
|
|
205
|
+
|
|
206
|
+
FragmentSelectorType?: HLSFragmentSelectorType | string;
|
|
207
|
+
|
|
208
|
+
TimestampRange?: HLSTimestampRange;
|
|
209
|
+
}
|
|
210
|
+
export declare namespace HLSFragmentSelector {
|
|
211
|
+
|
|
212
|
+
const filterSensitiveLog: (obj: HLSFragmentSelector) => any;
|
|
213
|
+
}
|
|
214
|
+
export declare enum HLSPlaybackMode {
|
|
215
|
+
LIVE = "LIVE",
|
|
216
|
+
LIVE_REPLAY = "LIVE_REPLAY",
|
|
217
|
+
ON_DEMAND = "ON_DEMAND"
|
|
218
|
+
}
|
|
219
|
+
export interface GetHLSStreamingSessionURLInput {
|
|
220
|
+
|
|
221
|
+
StreamName?: string;
|
|
222
|
+
|
|
223
|
+
StreamARN?: string;
|
|
224
|
+
|
|
225
|
+
PlaybackMode?: HLSPlaybackMode | string;
|
|
226
|
+
|
|
227
|
+
HLSFragmentSelector?: HLSFragmentSelector;
|
|
228
|
+
|
|
229
|
+
ContainerFormat?: ContainerFormat | string;
|
|
230
|
+
|
|
231
|
+
DiscontinuityMode?: HLSDiscontinuityMode | string;
|
|
232
|
+
|
|
233
|
+
DisplayFragmentTimestamp?: HLSDisplayFragmentTimestamp | string;
|
|
234
|
+
|
|
235
|
+
Expires?: number;
|
|
236
|
+
|
|
237
|
+
MaxMediaPlaylistFragmentResults?: number;
|
|
238
|
+
}
|
|
239
|
+
export declare namespace GetHLSStreamingSessionURLInput {
|
|
240
|
+
|
|
241
|
+
const filterSensitiveLog: (obj: GetHLSStreamingSessionURLInput) => any;
|
|
242
|
+
}
|
|
243
|
+
export interface GetHLSStreamingSessionURLOutput {
|
|
244
|
+
|
|
245
|
+
HLSStreamingSessionURL?: string;
|
|
246
|
+
}
|
|
247
|
+
export declare namespace GetHLSStreamingSessionURLOutput {
|
|
248
|
+
|
|
249
|
+
const filterSensitiveLog: (obj: GetHLSStreamingSessionURLOutput) => any;
|
|
250
|
+
}
|
|
251
|
+
export interface GetMediaForFragmentListInput {
|
|
252
|
+
|
|
253
|
+
StreamName?: string;
|
|
254
|
+
|
|
255
|
+
StreamARN?: string;
|
|
256
|
+
|
|
257
|
+
Fragments: string[] | undefined;
|
|
258
|
+
}
|
|
259
|
+
export declare namespace GetMediaForFragmentListInput {
|
|
260
|
+
|
|
261
|
+
const filterSensitiveLog: (obj: GetMediaForFragmentListInput) => any;
|
|
262
|
+
}
|
|
263
|
+
export interface GetMediaForFragmentListOutput {
|
|
264
|
+
|
|
265
|
+
ContentType?: string;
|
|
266
|
+
|
|
267
|
+
Payload?: Readable | ReadableStream | Blob;
|
|
268
|
+
}
|
|
269
|
+
export declare namespace GetMediaForFragmentListOutput {
|
|
270
|
+
|
|
271
|
+
const filterSensitiveLog: (obj: GetMediaForFragmentListOutput) => any;
|
|
272
|
+
}
|
|
273
|
+
export declare enum FragmentSelectorType {
|
|
274
|
+
PRODUCER_TIMESTAMP = "PRODUCER_TIMESTAMP",
|
|
275
|
+
SERVER_TIMESTAMP = "SERVER_TIMESTAMP"
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface TimestampRange {
|
|
279
|
+
|
|
280
|
+
StartTimestamp: Date | undefined;
|
|
281
|
+
|
|
282
|
+
EndTimestamp: Date | undefined;
|
|
283
|
+
}
|
|
284
|
+
export declare namespace TimestampRange {
|
|
285
|
+
|
|
286
|
+
const filterSensitiveLog: (obj: TimestampRange) => any;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export interface FragmentSelector {
|
|
290
|
+
|
|
291
|
+
FragmentSelectorType: FragmentSelectorType | string | undefined;
|
|
292
|
+
|
|
293
|
+
TimestampRange: TimestampRange | undefined;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace FragmentSelector {
|
|
296
|
+
|
|
297
|
+
const filterSensitiveLog: (obj: FragmentSelector) => any;
|
|
298
|
+
}
|
|
299
|
+
export interface ListFragmentsInput {
|
|
300
|
+
|
|
301
|
+
StreamName?: string;
|
|
302
|
+
|
|
303
|
+
StreamARN?: string;
|
|
304
|
+
|
|
305
|
+
MaxResults?: number;
|
|
306
|
+
|
|
307
|
+
NextToken?: string;
|
|
308
|
+
|
|
309
|
+
FragmentSelector?: FragmentSelector;
|
|
310
|
+
}
|
|
311
|
+
export declare namespace ListFragmentsInput {
|
|
312
|
+
|
|
313
|
+
const filterSensitiveLog: (obj: ListFragmentsInput) => any;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface Fragment {
|
|
317
|
+
|
|
318
|
+
FragmentNumber?: string;
|
|
319
|
+
|
|
320
|
+
FragmentSizeInBytes?: number;
|
|
321
|
+
|
|
322
|
+
ProducerTimestamp?: Date;
|
|
323
|
+
|
|
324
|
+
ServerTimestamp?: Date;
|
|
325
|
+
|
|
326
|
+
FragmentLengthInMilliseconds?: number;
|
|
327
|
+
}
|
|
328
|
+
export declare namespace Fragment {
|
|
329
|
+
|
|
330
|
+
const filterSensitiveLog: (obj: Fragment) => any;
|
|
331
|
+
}
|
|
332
|
+
export interface ListFragmentsOutput {
|
|
333
|
+
|
|
334
|
+
Fragments?: Fragment[];
|
|
335
|
+
|
|
336
|
+
NextToken?: string;
|
|
337
|
+
}
|
|
338
|
+
export declare namespace ListFragmentsOutput {
|
|
339
|
+
|
|
340
|
+
const filterSensitiveLog: (obj: ListFragmentsOutput) => any;
|
|
341
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { GetClipCommandInput, GetClipCommandOutput } from "../commands/GetClipCommand";
|
|
4
|
+
import { GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput } from "../commands/GetDASHStreamingSessionURLCommand";
|
|
5
|
+
import { GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput } from "../commands/GetHLSStreamingSessionURLCommand";
|
|
6
|
+
import { GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput } from "../commands/GetMediaForFragmentListCommand";
|
|
7
|
+
import { ListFragmentsCommandInput, ListFragmentsCommandOutput } from "../commands/ListFragmentsCommand";
|
|
8
|
+
export declare const serializeAws_restJson1GetClipCommand: (input: GetClipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
|
+
export declare const serializeAws_restJson1GetDASHStreamingSessionURLCommand: (input: GetDASHStreamingSessionURLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1GetHLSStreamingSessionURLCommand: (input: GetHLSStreamingSessionURLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const serializeAws_restJson1GetMediaForFragmentListCommand: (input: GetMediaForFragmentListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_restJson1ListFragmentsCommand: (input: ListFragmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const deserializeAws_restJson1GetClipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClipCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1GetDASHStreamingSessionURLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDASHStreamingSessionURLCommandOutput>;
|
|
15
|
+
export declare const deserializeAws_restJson1GetHLSStreamingSessionURLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHLSStreamingSessionURLCommandOutput>;
|
|
16
|
+
export declare const deserializeAws_restJson1GetMediaForFragmentListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMediaForFragmentListCommandOutput>;
|
|
17
|
+
export declare const deserializeAws_restJson1ListFragmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFragmentsCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: KinesisVideoArchivedMediaClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video-archived-media",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Video Archived Media Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.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,21 +18,21 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|