@aws-sdk/client-kinesis-video-archived-media 3.337.0 → 3.338.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/KinesisVideoArchivedMediaClient.js +2 -1
- package/dist-cjs/commands/GetClipCommand.js +2 -1
- package/dist-cjs/commands/GetDASHStreamingSessionURLCommand.js +2 -1
- package/dist-cjs/commands/GetHLSStreamingSessionURLCommand.js +2 -1
- package/dist-cjs/commands/GetImagesCommand.js +2 -1
- package/dist-cjs/commands/GetMediaForFragmentListCommand.js +2 -1
- package/dist-cjs/commands/ListFragmentsCommand.js +2 -1
- package/dist-cjs/index.js +1 -1
- package/dist-cjs/models/KinesisVideoArchivedMediaServiceException.js +2 -1
- package/dist-es/KinesisVideoArchivedMediaClient.js +1 -0
- package/dist-es/commands/GetClipCommand.js +1 -0
- package/dist-es/commands/GetDASHStreamingSessionURLCommand.js +1 -0
- package/dist-es/commands/GetHLSStreamingSessionURLCommand.js +1 -0
- package/dist-es/commands/GetImagesCommand.js +1 -0
- package/dist-es/commands/GetMediaForFragmentListCommand.js +1 -0
- package/dist-es/commands/ListFragmentsCommand.js +1 -0
- package/dist-es/index.js +1 -1
- package/dist-es/models/KinesisVideoArchivedMediaServiceException.js +1 -0
- package/dist-types/KinesisVideoArchivedMediaClient.d.ts +3 -3
- package/dist-types/commands/GetClipCommand.d.ts +4 -0
- package/dist-types/commands/GetDASHStreamingSessionURLCommand.d.ts +4 -0
- package/dist-types/commands/GetHLSStreamingSessionURLCommand.d.ts +4 -0
- package/dist-types/commands/GetImagesCommand.d.ts +4 -0
- package/dist-types/commands/GetMediaForFragmentListCommand.d.ts +4 -0
- package/dist-types/commands/ListFragmentsCommand.d.ts +4 -0
- package/dist-types/index.d.ts +6 -1
- package/dist-types/models/KinesisVideoArchivedMediaServiceException.d.ts +1 -0
- package/dist-types/ts3.4/KinesisVideoArchivedMediaClient.d.ts +3 -3
- package/dist-types/ts3.4/commands/GetClipCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetDASHStreamingSessionURLCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetHLSStreamingSessionURLCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetImagesCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetMediaForFragmentListCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListFragmentsCommand.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -1
- package/dist-types/ts3.4/models/KinesisVideoArchivedMediaServiceException.d.ts +1 -0
- package/package.json +30 -30
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.KinesisVideoArchivedMediaClient = void 0;
|
|
3
|
+
exports.KinesisVideoArchivedMediaClient = exports.__Client = void 0;
|
|
4
4
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
@@ -11,6 +11,7 @@ const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
|
11
11
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
12
12
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
13
13
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
14
|
+
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
14
15
|
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
15
16
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
16
17
|
class KinesisVideoArchivedMediaClient extends smithy_client_1.Client {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetClipCommand = void 0;
|
|
3
|
+
exports.GetClipCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetClipCommand extends smithy_client_1.Command {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetDASHStreamingSessionURLCommand = void 0;
|
|
3
|
+
exports.GetDASHStreamingSessionURLCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetDASHStreamingSessionURLCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetHLSStreamingSessionURLCommand = void 0;
|
|
3
|
+
exports.GetHLSStreamingSessionURLCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetHLSStreamingSessionURLCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetImagesCommand = void 0;
|
|
3
|
+
exports.GetImagesCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetImagesCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetMediaForFragmentListCommand = void 0;
|
|
3
|
+
exports.GetMediaForFragmentListCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const models_0_1 = require("../models/models_0");
|
|
8
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
10
|
class GetMediaForFragmentListCommand extends smithy_client_1.Command {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListFragmentsCommand = void 0;
|
|
3
|
+
exports.ListFragmentsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListFragmentsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
package/dist-cjs/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.KinesisVideoArchivedMediaServiceException = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("./KinesisVideoArchivedMedia"), exports);
|
|
6
5
|
tslib_1.__exportStar(require("./KinesisVideoArchivedMediaClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./KinesisVideoArchivedMedia"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
9
9
|
var KinesisVideoArchivedMediaServiceException_1 = require("./models/KinesisVideoArchivedMediaServiceException");
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.KinesisVideoArchivedMediaServiceException = void 0;
|
|
3
|
+
exports.KinesisVideoArchivedMediaServiceException = exports.__ServiceException = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
5
6
|
class KinesisVideoArchivedMediaServiceException extends smithy_client_1.ServiceException {
|
|
6
7
|
constructor(options) {
|
|
7
8
|
super(options);
|
|
@@ -10,6 +10,7 @@ import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware
|
|
|
10
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
11
11
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
12
12
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
13
|
+
export { __Client };
|
|
13
14
|
export class KinesisVideoArchivedMediaClient extends __Client {
|
|
14
15
|
constructor(configuration) {
|
|
15
16
|
const _config_0 = __getRuntimeConfig(configuration);
|
|
@@ -3,6 +3,7 @@ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { GetClipOutputFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { de_GetClipCommand, se_GetClipCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
6
7
|
export class GetClipCommand extends $Command {
|
|
7
8
|
static getEndpointParameterInstructions() {
|
|
8
9
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetDASHStreamingSessionURLCommand, se_GetDASHStreamingSessionURLCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetDASHStreamingSessionURLCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetHLSStreamingSessionURLCommand, se_GetHLSStreamingSessionURLCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetHLSStreamingSessionURLCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetImagesCommand, se_GetImagesCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetImagesCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -3,6 +3,7 @@ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { GetMediaForFragmentListOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { de_GetMediaForFragmentListCommand, se_GetMediaForFragmentListCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
6
7
|
export class GetMediaForFragmentListCommand extends $Command {
|
|
7
8
|
static getEndpointParameterInstructions() {
|
|
8
9
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListFragmentsCommand, se_ListFragmentsCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListFragmentsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
package/dist-es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./KinesisVideoArchivedMedia";
|
|
2
1
|
export * from "./KinesisVideoArchivedMediaClient";
|
|
2
|
+
export * from "./KinesisVideoArchivedMedia";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./models";
|
|
5
5
|
export { KinesisVideoArchivedMediaServiceException } from "./models/KinesisVideoArchivedMediaServiceException";
|
|
@@ -15,6 +15,7 @@ import { GetImagesCommandInput, GetImagesCommandOutput } from "./commands/GetIma
|
|
|
15
15
|
import { GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput } from "./commands/GetMediaForFragmentListCommand";
|
|
16
16
|
import { ListFragmentsCommandInput, ListFragmentsCommandOutput } from "./commands/ListFragmentsCommand";
|
|
17
17
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
18
|
+
export { __Client };
|
|
18
19
|
/**
|
|
19
20
|
* @public
|
|
20
21
|
*/
|
|
@@ -134,7 +135,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
134
135
|
/**
|
|
135
136
|
* @public
|
|
136
137
|
*/
|
|
137
|
-
type KinesisVideoArchivedMediaClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
138
|
+
export type KinesisVideoArchivedMediaClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
138
139
|
/**
|
|
139
140
|
* @public
|
|
140
141
|
*
|
|
@@ -145,7 +146,7 @@ export interface KinesisVideoArchivedMediaClientConfig extends KinesisVideoArchi
|
|
|
145
146
|
/**
|
|
146
147
|
* @public
|
|
147
148
|
*/
|
|
148
|
-
type KinesisVideoArchivedMediaClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
149
|
+
export type KinesisVideoArchivedMediaClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
149
150
|
/**
|
|
150
151
|
* @public
|
|
151
152
|
*
|
|
@@ -170,4 +171,3 @@ export declare class KinesisVideoArchivedMediaClient extends __Client<__HttpHand
|
|
|
170
171
|
*/
|
|
171
172
|
destroy(): void;
|
|
172
173
|
}
|
|
173
|
-
export {};
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@aws-sdk/types";
|
|
4
4
|
import { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
5
5
|
import { GetClipInput, GetClipOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
5
5
|
import { GetDASHStreamingSessionURLInput, GetDASHStreamingSessionURLOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
5
5
|
import { GetHLSStreamingSessionURLInput, GetHLSStreamingSessionURLOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
5
5
|
import { GetImagesInput, GetImagesOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@aws-sdk/types";
|
|
4
4
|
import { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
5
5
|
import { GetMediaForFragmentListInput, GetMediaForFragmentListOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
|
|
5
5
|
import { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* <p></p>
|
|
3
|
+
*
|
|
4
|
+
* @packageDocumentation
|
|
5
|
+
*/
|
|
2
6
|
export * from "./KinesisVideoArchivedMediaClient";
|
|
7
|
+
export * from "./KinesisVideoArchivedMedia";
|
|
3
8
|
export * from "./commands";
|
|
4
9
|
export * from "./models";
|
|
5
10
|
export { KinesisVideoArchivedMediaServiceException } from "./models/KinesisVideoArchivedMediaServiceException";
|
|
@@ -76,6 +76,7 @@ import {
|
|
|
76
76
|
ClientResolvedEndpointParameters,
|
|
77
77
|
EndpointParameters,
|
|
78
78
|
} from "./endpoint/EndpointParameters";
|
|
79
|
+
export { __Client };
|
|
79
80
|
export type ServiceInputTypes =
|
|
80
81
|
| GetClipCommandInput
|
|
81
82
|
| GetDASHStreamingSessionURLCommandInput
|
|
@@ -115,7 +116,7 @@ export interface ClientDefaults
|
|
|
115
116
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
116
117
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
117
118
|
}
|
|
118
|
-
type KinesisVideoArchivedMediaClientConfigType = Partial<
|
|
119
|
+
export type KinesisVideoArchivedMediaClientConfigType = Partial<
|
|
119
120
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
120
121
|
> &
|
|
121
122
|
ClientDefaults &
|
|
@@ -128,7 +129,7 @@ type KinesisVideoArchivedMediaClientConfigType = Partial<
|
|
|
128
129
|
ClientInputEndpointParameters;
|
|
129
130
|
export interface KinesisVideoArchivedMediaClientConfig
|
|
130
131
|
extends KinesisVideoArchivedMediaClientConfigType {}
|
|
131
|
-
type KinesisVideoArchivedMediaClientResolvedConfigType =
|
|
132
|
+
export type KinesisVideoArchivedMediaClientResolvedConfigType =
|
|
132
133
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
133
134
|
Required<ClientDefaults> &
|
|
134
135
|
RegionResolvedConfig &
|
|
@@ -150,4 +151,3 @@ export declare class KinesisVideoArchivedMediaClient extends __Client<
|
|
|
150
151
|
constructor(configuration: KinesisVideoArchivedMediaClientConfig);
|
|
151
152
|
destroy(): void;
|
|
152
153
|
}
|
|
153
|
-
export {};
|
|
@@ -13,6 +13,7 @@ import {
|
|
|
13
13
|
ServiceOutputTypes,
|
|
14
14
|
} from "../KinesisVideoArchivedMediaClient";
|
|
15
15
|
import { GetClipInput, GetClipOutput } from "../models/models_0";
|
|
16
|
+
export { __MetadataBearer, $Command };
|
|
16
17
|
export interface GetClipCommandInput extends GetClipInput {}
|
|
17
18
|
export interface GetClipCommandOutput
|
|
18
19
|
extends __WithSdkStreamMixin<GetClipOutput, "Payload">,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
GetDASHStreamingSessionURLInput,
|
|
16
16
|
GetDASHStreamingSessionURLOutput,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetDASHStreamingSessionURLCommandInput
|
|
19
20
|
extends GetDASHStreamingSessionURLInput {}
|
|
20
21
|
export interface GetDASHStreamingSessionURLCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
GetHLSStreamingSessionURLInput,
|
|
16
16
|
GetHLSStreamingSessionURLOutput,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetHLSStreamingSessionURLCommandInput
|
|
19
20
|
extends GetHLSStreamingSessionURLInput {}
|
|
20
21
|
export interface GetHLSStreamingSessionURLCommandOutput
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../KinesisVideoArchivedMediaClient";
|
|
14
14
|
import { GetImagesInput, GetImagesOutput } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
15
16
|
export interface GetImagesCommandInput extends GetImagesInput {}
|
|
16
17
|
export interface GetImagesCommandOutput
|
|
17
18
|
extends GetImagesOutput,
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
GetMediaForFragmentListInput,
|
|
17
17
|
GetMediaForFragmentListOutput,
|
|
18
18
|
} from "../models/models_0";
|
|
19
|
+
export { __MetadataBearer, $Command };
|
|
19
20
|
export interface GetMediaForFragmentListCommandInput
|
|
20
21
|
extends GetMediaForFragmentListInput {}
|
|
21
22
|
export interface GetMediaForFragmentListCommandOutput
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../KinesisVideoArchivedMediaClient";
|
|
14
14
|
import { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
15
16
|
export interface ListFragmentsCommandInput extends ListFragmentsInput {}
|
|
16
17
|
export interface ListFragmentsCommandOutput
|
|
17
18
|
extends ListFragmentsOutput,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./KinesisVideoArchivedMedia";
|
|
2
1
|
export * from "./KinesisVideoArchivedMediaClient";
|
|
2
|
+
export * from "./KinesisVideoArchivedMedia";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./models";
|
|
5
5
|
export { KinesisVideoArchivedMediaServiceException } from "./models/KinesisVideoArchivedMediaServiceException";
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
5
6
|
export declare class KinesisVideoArchivedMediaServiceException extends __ServiceException {
|
|
6
7
|
constructor(options: __ServiceExceptionOptions);
|
|
7
8
|
}
|
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.338.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",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.338.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.338.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.338.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.338.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.338.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.338.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.338.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.338.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.338.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.338.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.338.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.338.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.338.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.338.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.338.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.338.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.338.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.338.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.338.0",
|
|
43
|
+
"@aws-sdk/types": "3.338.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.338.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-stream-browser": "3.
|
|
53
|
-
"@aws-sdk/util-stream-node": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.338.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.338.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.338.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.338.0",
|
|
52
|
+
"@aws-sdk/util-stream-browser": "3.338.0",
|
|
53
|
+
"@aws-sdk/util-stream-node": "3.338.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.338.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.338.0",
|
|
56
56
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
57
57
|
"@smithy/protocol-http": "^1.0.1",
|
|
58
58
|
"@smithy/types": "^1.0.0",
|