@aws-sdk/client-kinesis-video-archived-media 3.1077.0 → 3.1079.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.
Files changed (26) hide show
  1. package/dist-cjs/index.js +14 -63
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/GetClipCommand.js +2 -14
  4. package/dist-es/commands/GetDASHStreamingSessionURLCommand.js +2 -14
  5. package/dist-es/commands/GetHLSStreamingSessionURLCommand.js +2 -14
  6. package/dist-es/commands/GetImagesCommand.js +2 -14
  7. package/dist-es/commands/GetMediaForFragmentListCommand.js +2 -14
  8. package/dist-es/commands/ListFragmentsCommand.js +2 -14
  9. package/dist-es/index.js +1 -0
  10. package/dist-types/commandBuilder.d.ts +18 -0
  11. package/dist-types/commands/GetClipCommand.d.ts +3 -8
  12. package/dist-types/commands/GetDASHStreamingSessionURLCommand.d.ts +3 -8
  13. package/dist-types/commands/GetHLSStreamingSessionURLCommand.d.ts +3 -8
  14. package/dist-types/commands/GetImagesCommand.d.ts +3 -8
  15. package/dist-types/commands/GetMediaForFragmentListCommand.d.ts +3 -8
  16. package/dist-types/commands/ListFragmentsCommand.d.ts +3 -8
  17. package/dist-types/index.d.ts +1 -0
  18. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  19. package/dist-types/ts3.4/commands/GetClipCommand.d.ts +7 -16
  20. package/dist-types/ts3.4/commands/GetDASHStreamingSessionURLCommand.d.ts +7 -16
  21. package/dist-types/ts3.4/commands/GetHLSStreamingSessionURLCommand.d.ts +7 -16
  22. package/dist-types/ts3.4/commands/GetImagesCommand.d.ts +7 -16
  23. package/dist-types/ts3.4/commands/GetMediaForFragmentListCommand.d.ts +7 -16
  24. package/dist-types/ts3.4/commands/ListFragmentsCommand.d.ts +7 -16
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1078.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -692,76 +693,26 @@ class KinesisVideoArchivedMediaClient extends Client {
692
693
  }
693
694
  }
694
695
 
695
- class GetClipCommand extends Command
696
- .classBuilder()
697
- .ep(commonParams)
698
- .m(function (Command, cs, config, o) {
699
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
700
- })
701
- .s("AWSAcuityReader", "GetClip", {})
702
- .n("KinesisVideoArchivedMediaClient", "GetClipCommand")
703
- .sc(GetClip$)
704
- .build() {
696
+ const command = makeBuilder(commonParams, "AWSAcuityReader", "KinesisVideoArchivedMediaClient", getEndpointPlugin);
697
+ const _ep0 = {};
698
+ const _mw0 = (Command, cs, config, o) => [];
699
+
700
+ class GetClipCommand extends command(_ep0, _mw0, "GetClip", GetClip$) {
705
701
  }
706
702
 
707
- class GetDASHStreamingSessionURLCommand extends Command
708
- .classBuilder()
709
- .ep(commonParams)
710
- .m(function (Command, cs, config, o) {
711
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
712
- })
713
- .s("AWSAcuityReader", "GetDASHStreamingSessionURL", {})
714
- .n("KinesisVideoArchivedMediaClient", "GetDASHStreamingSessionURLCommand")
715
- .sc(GetDASHStreamingSessionURL$)
716
- .build() {
703
+ class GetDASHStreamingSessionURLCommand extends command(_ep0, _mw0, "GetDASHStreamingSessionURL", GetDASHStreamingSessionURL$) {
717
704
  }
718
705
 
719
- class GetHLSStreamingSessionURLCommand extends Command
720
- .classBuilder()
721
- .ep(commonParams)
722
- .m(function (Command, cs, config, o) {
723
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
724
- })
725
- .s("AWSAcuityReader", "GetHLSStreamingSessionURL", {})
726
- .n("KinesisVideoArchivedMediaClient", "GetHLSStreamingSessionURLCommand")
727
- .sc(GetHLSStreamingSessionURL$)
728
- .build() {
706
+ class GetHLSStreamingSessionURLCommand extends command(_ep0, _mw0, "GetHLSStreamingSessionURL", GetHLSStreamingSessionURL$) {
729
707
  }
730
708
 
731
- class GetImagesCommand extends Command
732
- .classBuilder()
733
- .ep(commonParams)
734
- .m(function (Command, cs, config, o) {
735
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
736
- })
737
- .s("AWSAcuityReader", "GetImages", {})
738
- .n("KinesisVideoArchivedMediaClient", "GetImagesCommand")
739
- .sc(GetImages$)
740
- .build() {
709
+ class GetImagesCommand extends command(_ep0, _mw0, "GetImages", GetImages$) {
741
710
  }
742
711
 
743
- class GetMediaForFragmentListCommand extends Command
744
- .classBuilder()
745
- .ep(commonParams)
746
- .m(function (Command, cs, config, o) {
747
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
748
- })
749
- .s("AWSAcuityReader", "GetMediaForFragmentList", {})
750
- .n("KinesisVideoArchivedMediaClient", "GetMediaForFragmentListCommand")
751
- .sc(GetMediaForFragmentList$)
752
- .build() {
712
+ class GetMediaForFragmentListCommand extends command(_ep0, _mw0, "GetMediaForFragmentList", GetMediaForFragmentList$) {
753
713
  }
754
714
 
755
- class ListFragmentsCommand extends Command
756
- .classBuilder()
757
- .ep(commonParams)
758
- .m(function (Command, cs, config, o) {
759
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
760
- })
761
- .s("AWSAcuityReader", "ListFragments", {})
762
- .n("KinesisVideoArchivedMediaClient", "ListFragmentsCommand")
763
- .sc(ListFragments$)
764
- .build() {
715
+ class ListFragmentsCommand extends command(_ep0, _mw0, "ListFragments", ListFragments$) {
765
716
  }
766
717
 
767
718
  const paginateGetImages = createPaginator(KinesisVideoArchivedMediaClient, GetImagesCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "AWSAcuityReader", "KinesisVideoArchivedMediaClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetClip$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetClipCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSAcuityReader", "GetClip", {})
13
- .n("KinesisVideoArchivedMediaClient", "GetClipCommand")
14
- .sc(GetClip$)
15
- .build() {
3
+ export class GetClipCommand extends command(_ep0, _mw0, "GetClip", GetClip$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetDASHStreamingSessionURL$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetDASHStreamingSessionURLCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSAcuityReader", "GetDASHStreamingSessionURL", {})
13
- .n("KinesisVideoArchivedMediaClient", "GetDASHStreamingSessionURLCommand")
14
- .sc(GetDASHStreamingSessionURL$)
15
- .build() {
3
+ export class GetDASHStreamingSessionURLCommand extends command(_ep0, _mw0, "GetDASHStreamingSessionURL", GetDASHStreamingSessionURL$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetHLSStreamingSessionURL$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetHLSStreamingSessionURLCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSAcuityReader", "GetHLSStreamingSessionURL", {})
13
- .n("KinesisVideoArchivedMediaClient", "GetHLSStreamingSessionURLCommand")
14
- .sc(GetHLSStreamingSessionURL$)
15
- .build() {
3
+ export class GetHLSStreamingSessionURLCommand extends command(_ep0, _mw0, "GetHLSStreamingSessionURL", GetHLSStreamingSessionURL$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetImages$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetImagesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSAcuityReader", "GetImages", {})
13
- .n("KinesisVideoArchivedMediaClient", "GetImagesCommand")
14
- .sc(GetImages$)
15
- .build() {
3
+ export class GetImagesCommand extends command(_ep0, _mw0, "GetImages", GetImages$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetMediaForFragmentList$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetMediaForFragmentListCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSAcuityReader", "GetMediaForFragmentList", {})
13
- .n("KinesisVideoArchivedMediaClient", "GetMediaForFragmentListCommand")
14
- .sc(GetMediaForFragmentList$)
15
- .build() {
3
+ export class GetMediaForFragmentListCommand extends command(_ep0, _mw0, "GetMediaForFragmentList", GetMediaForFragmentList$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListFragments$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListFragmentsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSAcuityReader", "ListFragments", {})
13
- .n("KinesisVideoArchivedMediaClient", "ListFragmentsCommand")
14
- .sc(ListFragments$)
15
- .build() {
3
+ export class ListFragmentsCommand extends command(_ep0, _mw0, "ListFragments", ListFragments$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./KinesisVideoArchivedMediaClient";
2
2
  export * from "./KinesisVideoArchivedMedia";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./KinesisVideoArchivedMediaClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
3
- import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
4
2
  import type { GetClipInput, GetClipOutput } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -23,11 +20,9 @@ export interface GetClipCommandOutput extends Omit<GetClipOutput, "Payload">, __
23
20
  Payload?: StreamingBlobPayloadOutputTypes;
24
21
  }
25
22
  declare const GetClipCommand_base: {
26
- new (input: GetClipCommandInput): import("@smithy/core/client").CommandImpl<GetClipCommandInput, GetClipCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (input: GetClipCommandInput): import("@smithy/core/client").CommandImpl<GetClipCommandInput, GetClipCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
23
+ new (input: GetClipCommandInput): import("@smithy/core/client").CommandImpl<GetClipCommandInput, GetClipCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ new (input: GetClipCommandInput): import("@smithy/core/client").CommandImpl<GetClipCommandInput, GetClipCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
26
  };
32
27
  /**
33
28
  * <p>Downloads an MP4 file (clip) containing the archived, on-demand media from the
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
4
2
  import type { GetDASHStreamingSessionURLInput, GetDASHStreamingSessionURLOutput } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetDASHStreamingSessionURLCommandInput extends GetDASHStreaming
22
19
  export interface GetDASHStreamingSessionURLCommandOutput extends GetDASHStreamingSessionURLOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetDASHStreamingSessionURLCommand_base: {
25
- new (input: GetDASHStreamingSessionURLCommandInput): import("@smithy/core/client").CommandImpl<GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetDASHStreamingSessionURLCommandInput]): import("@smithy/core/client").CommandImpl<GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetDASHStreamingSessionURLCommandInput): import("@smithy/core/client").CommandImpl<GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetDASHStreamingSessionURLCommandInput]): import("@smithy/core/client").CommandImpl<GetDASHStreamingSessionURLCommandInput, GetDASHStreamingSessionURLCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves an MPEG Dynamic Adaptive Streaming over HTTP (DASH) URL for the stream. You
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
4
2
  import type { GetHLSStreamingSessionURLInput, GetHLSStreamingSessionURLOutput } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetHLSStreamingSessionURLCommandInput extends GetHLSStreamingSe
22
19
  export interface GetHLSStreamingSessionURLCommandOutput extends GetHLSStreamingSessionURLOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetHLSStreamingSessionURLCommand_base: {
25
- new (input: GetHLSStreamingSessionURLCommandInput): import("@smithy/core/client").CommandImpl<GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetHLSStreamingSessionURLCommandInput]): import("@smithy/core/client").CommandImpl<GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetHLSStreamingSessionURLCommandInput): import("@smithy/core/client").CommandImpl<GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetHLSStreamingSessionURLCommandInput]): import("@smithy/core/client").CommandImpl<GetHLSStreamingSessionURLCommandInput, GetHLSStreamingSessionURLCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves an HTTP Live Streaming (HLS) URL for the stream. You can then open the URL
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
4
2
  import type { GetImagesInput, GetImagesOutput } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetImagesCommandInput extends GetImagesInput {
22
19
  export interface GetImagesCommandOutput extends GetImagesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetImagesCommand_base: {
25
- new (input: GetImagesCommandInput): import("@smithy/core/client").CommandImpl<GetImagesCommandInput, GetImagesCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetImagesCommandInput): import("@smithy/core/client").CommandImpl<GetImagesCommandInput, GetImagesCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetImagesCommandInput): import("@smithy/core/client").CommandImpl<GetImagesCommandInput, GetImagesCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetImagesCommandInput): import("@smithy/core/client").CommandImpl<GetImagesCommandInput, GetImagesCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves a list of images corresponding to each timestamp for a given time range,
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
3
- import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
4
2
  import type { GetMediaForFragmentListInput, GetMediaForFragmentListOutput } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -23,11 +20,9 @@ export interface GetMediaForFragmentListCommandOutput extends Omit<GetMediaForFr
23
20
  Payload?: StreamingBlobPayloadOutputTypes;
24
21
  }
25
22
  declare const GetMediaForFragmentListCommand_base: {
26
- new (input: GetMediaForFragmentListCommandInput): import("@smithy/core/client").CommandImpl<GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (input: GetMediaForFragmentListCommandInput): import("@smithy/core/client").CommandImpl<GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
23
+ new (input: GetMediaForFragmentListCommandInput): import("@smithy/core/client").CommandImpl<GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ new (input: GetMediaForFragmentListCommandInput): import("@smithy/core/client").CommandImpl<GetMediaForFragmentListCommandInput, GetMediaForFragmentListCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
26
  };
32
27
  /**
33
28
  * <p>Gets media for a list of fragments (specified by fragment number) from the archived
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoArchivedMediaClient";
4
2
  import type { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListFragmentsCommandInput extends ListFragmentsInput {
22
19
  export interface ListFragmentsCommandOutput extends ListFragmentsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListFragmentsCommand_base: {
25
- new (input: ListFragmentsCommandInput): import("@smithy/core/client").CommandImpl<ListFragmentsCommandInput, ListFragmentsCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListFragmentsCommandInput]): import("@smithy/core/client").CommandImpl<ListFragmentsCommandInput, ListFragmentsCommandOutput, KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListFragmentsCommandInput): import("@smithy/core/client").CommandImpl<ListFragmentsCommandInput, ListFragmentsCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListFragmentsCommandInput]): import("@smithy/core/client").CommandImpl<ListFragmentsCommandInput, ListFragmentsCommandOutput, import("..").KinesisVideoArchivedMediaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of <a>Fragment</a> objects from the specified stream and
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { KinesisVideoArchivedMediaExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ KinesisVideoArchivedMediaClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./KinesisVideoArchivedMediaClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ KinesisVideoArchivedMediaClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ KinesisVideoArchivedMediaClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import {
3
2
  MetadataBearer as __MetadataBearer,
4
3
  StreamingBlobPayloadOutputTypes,
5
4
  } from "@smithy/types";
6
- import {
7
- KinesisVideoArchivedMediaClientResolvedConfig,
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- } from "../KinesisVideoArchivedMediaClient";
11
5
  import { GetClipInput, GetClipOutput } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetClipCommandInput extends GetClipInput {}
15
8
  export interface GetClipCommandOutput
16
9
  extends Pick<GetClipOutput, Exclude<keyof GetClipOutput, "Payload">>,
@@ -21,20 +14,18 @@ declare const GetClipCommand_base: {
21
14
  new (input: GetClipCommandInput): import("@smithy/core/client").CommandImpl<
22
15
  GetClipCommandInput,
23
16
  GetClipCommandOutput,
24
- KinesisVideoArchivedMediaClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (input: GetClipCommandInput): import("@smithy/core/client").CommandImpl<
29
22
  GetClipCommandInput,
30
23
  GetClipCommandOutput,
31
- KinesisVideoArchivedMediaClientResolvedConfig,
32
- ServiceInputTypes,
33
- ServiceOutputTypes
24
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
25
+ import("..").ServiceInputTypes,
26
+ import("..").ServiceOutputTypes
34
27
  >;
35
- getEndpointParameterInstructions(): {
36
- [x: string]: unknown;
37
- };
28
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
38
29
  };
39
30
  export declare class GetClipCommand extends GetClipCommand_base {
40
31
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- KinesisVideoArchivedMediaClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../KinesisVideoArchivedMediaClient";
8
2
  import {
9
3
  GetDASHStreamingSessionURLInput,
10
4
  GetDASHStreamingSessionURLOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetDASHStreamingSessionURLCommandInput
15
8
  extends GetDASHStreamingSessionURLInput {}
16
9
  export interface GetDASHStreamingSessionURLCommandOutput
@@ -22,22 +15,20 @@ declare const GetDASHStreamingSessionURLCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetDASHStreamingSessionURLCommandInput,
24
17
  GetDASHStreamingSessionURLCommandOutput,
25
- KinesisVideoArchivedMediaClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [GetDASHStreamingSessionURLCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetDASHStreamingSessionURLCommandInput,
33
26
  GetDASHStreamingSessionURLCommandOutput,
34
- KinesisVideoArchivedMediaClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetDASHStreamingSessionURLCommand extends GetDASHStreamingSessionURLCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- KinesisVideoArchivedMediaClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../KinesisVideoArchivedMediaClient";
8
2
  import {
9
3
  GetHLSStreamingSessionURLInput,
10
4
  GetHLSStreamingSessionURLOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetHLSStreamingSessionURLCommandInput
15
8
  extends GetHLSStreamingSessionURLInput {}
16
9
  export interface GetHLSStreamingSessionURLCommandOutput
@@ -22,22 +15,20 @@ declare const GetHLSStreamingSessionURLCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetHLSStreamingSessionURLCommandInput,
24
17
  GetHLSStreamingSessionURLCommandOutput,
25
- KinesisVideoArchivedMediaClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [GetHLSStreamingSessionURLCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetHLSStreamingSessionURLCommandInput,
33
26
  GetHLSStreamingSessionURLCommandOutput,
34
- KinesisVideoArchivedMediaClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetHLSStreamingSessionURLCommand extends GetHLSStreamingSessionURLCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- KinesisVideoArchivedMediaClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../KinesisVideoArchivedMediaClient";
8
2
  import { GetImagesInput, GetImagesOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetImagesCommandInput extends GetImagesInput {}
12
5
  export interface GetImagesCommandOutput
13
6
  extends GetImagesOutput,
@@ -16,20 +9,18 @@ declare const GetImagesCommand_base: {
16
9
  new (input: GetImagesCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetImagesCommandInput,
18
11
  GetImagesCommandOutput,
19
- KinesisVideoArchivedMediaClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetImagesCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetImagesCommandInput,
25
18
  GetImagesCommandOutput,
26
- KinesisVideoArchivedMediaClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetImagesCommand extends GetImagesCommand_base {
35
26
  protected static __types: {
@@ -1,19 +1,12 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import {
3
2
  MetadataBearer as __MetadataBearer,
4
3
  StreamingBlobPayloadOutputTypes,
5
4
  } from "@smithy/types";
6
- import {
7
- KinesisVideoArchivedMediaClientResolvedConfig,
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- } from "../KinesisVideoArchivedMediaClient";
11
5
  import {
12
6
  GetMediaForFragmentListInput,
13
7
  GetMediaForFragmentListOutput,
14
8
  } from "../models/models_0";
15
9
  export { __MetadataBearer };
16
- export { $Command };
17
10
  export interface GetMediaForFragmentListCommandInput
18
11
  extends GetMediaForFragmentListInput {}
19
12
  export interface GetMediaForFragmentListCommandOutput
@@ -30,22 +23,20 @@ declare const GetMediaForFragmentListCommand_base: {
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetMediaForFragmentListCommandInput,
32
25
  GetMediaForFragmentListCommandOutput,
33
- KinesisVideoArchivedMediaClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
30
  new (
38
31
  input: GetMediaForFragmentListCommandInput
39
32
  ): import("@smithy/core/client").CommandImpl<
40
33
  GetMediaForFragmentListCommandInput,
41
34
  GetMediaForFragmentListCommandOutput,
42
- KinesisVideoArchivedMediaClientResolvedConfig,
43
- ServiceInputTypes,
44
- ServiceOutputTypes
35
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
36
+ import("..").ServiceInputTypes,
37
+ import("..").ServiceOutputTypes
45
38
  >;
46
- getEndpointParameterInstructions(): {
47
- [x: string]: unknown;
48
- };
39
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
49
40
  };
50
41
  export declare class GetMediaForFragmentListCommand extends GetMediaForFragmentListCommand_base {
51
42
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- KinesisVideoArchivedMediaClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../KinesisVideoArchivedMediaClient";
8
2
  import { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListFragmentsCommandInput extends ListFragmentsInput {}
12
5
  export interface ListFragmentsCommandOutput
13
6
  extends ListFragmentsOutput,
@@ -18,22 +11,20 @@ declare const ListFragmentsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListFragmentsCommandInput,
20
13
  ListFragmentsCommandOutput,
21
- KinesisVideoArchivedMediaClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListFragmentsCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListFragmentsCommandInput,
29
22
  ListFragmentsCommandOutput,
30
- KinesisVideoArchivedMediaClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").KinesisVideoArchivedMediaClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListFragmentsCommand extends ListFragmentsCommand_base {
39
30
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { KinesisVideoArchivedMediaExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./pagination";
9
10
  export * from "./models/enums";
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.1077.0",
4
+ "version": "3.1079.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.27",
23
+ "@aws-sdk/credential-provider-node": "^3.972.62",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {