@aws-sdk/client-applicationcostprofiler 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/DeleteReportDefinitionCommand.js +2 -14
  4. package/dist-es/commands/GetReportDefinitionCommand.js +2 -14
  5. package/dist-es/commands/ImportApplicationUsageCommand.js +2 -14
  6. package/dist-es/commands/ListReportDefinitionsCommand.js +2 -14
  7. package/dist-es/commands/PutReportDefinitionCommand.js +2 -14
  8. package/dist-es/commands/UpdateReportDefinitionCommand.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/DeleteReportDefinitionCommand.d.ts +3 -8
  12. package/dist-types/commands/GetReportDefinitionCommand.d.ts +3 -8
  13. package/dist-types/commands/ImportApplicationUsageCommand.d.ts +3 -8
  14. package/dist-types/commands/ListReportDefinitionsCommand.d.ts +3 -8
  15. package/dist-types/commands/PutReportDefinitionCommand.d.ts +3 -8
  16. package/dist-types/commands/UpdateReportDefinitionCommand.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/DeleteReportDefinitionCommand.d.ts +7 -16
  20. package/dist-types/ts3.4/commands/GetReportDefinitionCommand.d.ts +7 -16
  21. package/dist-types/ts3.4/commands/ImportApplicationUsageCommand.d.ts +7 -16
  22. package/dist-types/ts3.4/commands/ListReportDefinitionsCommand.d.ts +7 -16
  23. package/dist-types/ts3.4/commands/PutReportDefinitionCommand.d.ts +7 -16
  24. package/dist-types/ts3.4/commands/UpdateReportDefinitionCommand.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
 
@@ -532,76 +533,26 @@ class ApplicationCostProfilerClient extends Client {
532
533
  }
533
534
  }
534
535
 
535
- class DeleteReportDefinitionCommand extends Command
536
- .classBuilder()
537
- .ep(commonParams)
538
- .m(function (Command, cs, config, o) {
539
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
540
- })
541
- .s("AWSApplicationCostProfiler", "DeleteReportDefinition", {})
542
- .n("ApplicationCostProfilerClient", "DeleteReportDefinitionCommand")
543
- .sc(DeleteReportDefinition$)
544
- .build() {
536
+ const command = makeBuilder(commonParams, "AWSApplicationCostProfiler", "ApplicationCostProfilerClient", getEndpointPlugin);
537
+ const _ep0 = {};
538
+ const _mw0 = (Command, cs, config, o) => [];
539
+
540
+ class DeleteReportDefinitionCommand extends command(_ep0, _mw0, "DeleteReportDefinition", DeleteReportDefinition$) {
545
541
  }
546
542
 
547
- class GetReportDefinitionCommand extends Command
548
- .classBuilder()
549
- .ep(commonParams)
550
- .m(function (Command, cs, config, o) {
551
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
552
- })
553
- .s("AWSApplicationCostProfiler", "GetReportDefinition", {})
554
- .n("ApplicationCostProfilerClient", "GetReportDefinitionCommand")
555
- .sc(GetReportDefinition$)
556
- .build() {
543
+ class GetReportDefinitionCommand extends command(_ep0, _mw0, "GetReportDefinition", GetReportDefinition$) {
557
544
  }
558
545
 
559
- class ImportApplicationUsageCommand extends Command
560
- .classBuilder()
561
- .ep(commonParams)
562
- .m(function (Command, cs, config, o) {
563
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
564
- })
565
- .s("AWSApplicationCostProfiler", "ImportApplicationUsage", {})
566
- .n("ApplicationCostProfilerClient", "ImportApplicationUsageCommand")
567
- .sc(ImportApplicationUsage$)
568
- .build() {
546
+ class ImportApplicationUsageCommand extends command(_ep0, _mw0, "ImportApplicationUsage", ImportApplicationUsage$) {
569
547
  }
570
548
 
571
- class ListReportDefinitionsCommand extends Command
572
- .classBuilder()
573
- .ep(commonParams)
574
- .m(function (Command, cs, config, o) {
575
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
576
- })
577
- .s("AWSApplicationCostProfiler", "ListReportDefinitions", {})
578
- .n("ApplicationCostProfilerClient", "ListReportDefinitionsCommand")
579
- .sc(ListReportDefinitions$)
580
- .build() {
549
+ class ListReportDefinitionsCommand extends command(_ep0, _mw0, "ListReportDefinitions", ListReportDefinitions$) {
581
550
  }
582
551
 
583
- class PutReportDefinitionCommand extends Command
584
- .classBuilder()
585
- .ep(commonParams)
586
- .m(function (Command, cs, config, o) {
587
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
588
- })
589
- .s("AWSApplicationCostProfiler", "PutReportDefinition", {})
590
- .n("ApplicationCostProfilerClient", "PutReportDefinitionCommand")
591
- .sc(PutReportDefinition$)
592
- .build() {
552
+ class PutReportDefinitionCommand extends command(_ep0, _mw0, "PutReportDefinition", PutReportDefinition$) {
593
553
  }
594
554
 
595
- class UpdateReportDefinitionCommand extends Command
596
- .classBuilder()
597
- .ep(commonParams)
598
- .m(function (Command, cs, config, o) {
599
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
600
- })
601
- .s("AWSApplicationCostProfiler", "UpdateReportDefinition", {})
602
- .n("ApplicationCostProfilerClient", "UpdateReportDefinitionCommand")
603
- .sc(UpdateReportDefinition$)
604
- .build() {
555
+ class UpdateReportDefinitionCommand extends command(_ep0, _mw0, "UpdateReportDefinition", UpdateReportDefinition$) {
605
556
  }
606
557
 
607
558
  const paginateListReportDefinitions = createPaginator(ApplicationCostProfilerClient, ListReportDefinitionsCommand, "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, "AWSApplicationCostProfiler", "ApplicationCostProfilerClient", 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 { DeleteReportDefinition$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteReportDefinitionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSApplicationCostProfiler", "DeleteReportDefinition", {})
13
- .n("ApplicationCostProfilerClient", "DeleteReportDefinitionCommand")
14
- .sc(DeleteReportDefinition$)
15
- .build() {
3
+ export class DeleteReportDefinitionCommand extends command(_ep0, _mw0, "DeleteReportDefinition", DeleteReportDefinition$) {
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 { GetReportDefinition$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetReportDefinitionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSApplicationCostProfiler", "GetReportDefinition", {})
13
- .n("ApplicationCostProfilerClient", "GetReportDefinitionCommand")
14
- .sc(GetReportDefinition$)
15
- .build() {
3
+ export class GetReportDefinitionCommand extends command(_ep0, _mw0, "GetReportDefinition", GetReportDefinition$) {
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 { ImportApplicationUsage$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ImportApplicationUsageCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSApplicationCostProfiler", "ImportApplicationUsage", {})
13
- .n("ApplicationCostProfilerClient", "ImportApplicationUsageCommand")
14
- .sc(ImportApplicationUsage$)
15
- .build() {
3
+ export class ImportApplicationUsageCommand extends command(_ep0, _mw0, "ImportApplicationUsage", ImportApplicationUsage$) {
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 { ListReportDefinitions$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListReportDefinitionsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSApplicationCostProfiler", "ListReportDefinitions", {})
13
- .n("ApplicationCostProfilerClient", "ListReportDefinitionsCommand")
14
- .sc(ListReportDefinitions$)
15
- .build() {
3
+ export class ListReportDefinitionsCommand extends command(_ep0, _mw0, "ListReportDefinitions", ListReportDefinitions$) {
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 { PutReportDefinition$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PutReportDefinitionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSApplicationCostProfiler", "PutReportDefinition", {})
13
- .n("ApplicationCostProfilerClient", "PutReportDefinitionCommand")
14
- .sc(PutReportDefinition$)
15
- .build() {
3
+ export class PutReportDefinitionCommand extends command(_ep0, _mw0, "PutReportDefinition", PutReportDefinition$) {
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 { UpdateReportDefinition$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateReportDefinitionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSApplicationCostProfiler", "UpdateReportDefinition", {})
13
- .n("ApplicationCostProfilerClient", "UpdateReportDefinitionCommand")
14
- .sc(UpdateReportDefinition$)
15
- .build() {
3
+ export class UpdateReportDefinitionCommand extends command(_ep0, _mw0, "UpdateReportDefinition", UpdateReportDefinition$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ApplicationCostProfilerClient";
2
2
  export * from "./ApplicationCostProfiler";
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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./ApplicationCostProfilerClient";
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, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, ApplicationCostProfilerClientResolvedConfig, 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 } from "@smithy/types";
3
- import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
2
  import type { DeleteReportDefinitionRequest, DeleteReportDefinitionResult } 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 DeleteReportDefinitionCommandInput extends DeleteReportDefiniti
22
19
  export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinitionResult, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteReportDefinitionCommand_base: {
25
- new (input: DeleteReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<DeleteReportDefinitionCommandInput, DeleteReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes the specified report definition in AWS Application Cost Profiler. This stops the report from being
@@ -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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
2
  import type { GetReportDefinitionRequest, GetReportDefinitionResult } 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 GetReportDefinitionCommandInput extends GetReportDefinitionRequ
22
19
  export interface GetReportDefinitionCommandOutput extends GetReportDefinitionResult, __MetadataBearer {
23
20
  }
24
21
  declare const GetReportDefinitionCommand_base: {
25
- new (input: GetReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<GetReportDefinitionCommandInput, GetReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves the definition of a report already configured in AWS Application Cost Profiler.</p>
@@ -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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
2
  import type { ImportApplicationUsageRequest, ImportApplicationUsageResult } 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 ImportApplicationUsageCommandInput extends ImportApplicationUsa
22
19
  export interface ImportApplicationUsageCommandOutput extends ImportApplicationUsageResult, __MetadataBearer {
23
20
  }
24
21
  declare const ImportApplicationUsageCommand_base: {
25
- new (input: ImportApplicationUsageCommandInput): import("@smithy/core/client").CommandImpl<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ImportApplicationUsageCommandInput): import("@smithy/core/client").CommandImpl<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ImportApplicationUsageCommandInput): import("@smithy/core/client").CommandImpl<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ImportApplicationUsageCommandInput): import("@smithy/core/client").CommandImpl<ImportApplicationUsageCommandInput, ImportApplicationUsageCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Ingests application usage data from Amazon Simple Storage Service (Amazon S3).</p>
@@ -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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
2
  import type { ListReportDefinitionsRequest, ListReportDefinitionsResult } 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 ListReportDefinitionsCommandInput extends ListReportDefinitions
22
19
  export interface ListReportDefinitionsCommandOutput extends ListReportDefinitionsResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListReportDefinitionsCommand_base: {
25
- new (input: ListReportDefinitionsCommandInput): import("@smithy/core/client").CommandImpl<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListReportDefinitionsCommandInput]): import("@smithy/core/client").CommandImpl<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListReportDefinitionsCommandInput): import("@smithy/core/client").CommandImpl<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListReportDefinitionsCommandInput]): import("@smithy/core/client").CommandImpl<ListReportDefinitionsCommandInput, ListReportDefinitionsCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves a list of all reports and their configurations for your AWS account.</p>
@@ -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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
2
  import type { PutReportDefinitionRequest, PutReportDefinitionResult } 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 PutReportDefinitionCommandInput extends PutReportDefinitionRequ
22
19
  export interface PutReportDefinitionCommandOutput extends PutReportDefinitionResult, __MetadataBearer {
23
20
  }
24
21
  declare const PutReportDefinitionCommand_base: {
25
- new (input: PutReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: PutReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates the report definition for a report in Application Cost Profiler.</p>
@@ -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 { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationCostProfilerClient";
4
2
  import type { UpdateReportDefinitionRequest, UpdateReportDefinitionResult } 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 UpdateReportDefinitionCommandInput extends UpdateReportDefiniti
22
19
  export interface UpdateReportDefinitionCommandOutput extends UpdateReportDefinitionResult, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateReportDefinitionCommand_base: {
25
- new (input: UpdateReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput, ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl<UpdateReportDefinitionCommandInput, UpdateReportDefinitionCommandOutput, import("..").ApplicationCostProfilerClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates existing report in AWS Application Cost Profiler.</p>
@@ -14,6 +14,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
14
14
  export type { RuntimeExtension } from "./runtimeExtensions";
15
15
  export type { ApplicationCostProfilerExtensionConfiguration } from "./extensionConfiguration";
16
16
  export * from "./commands";
17
+ export { Command as $Command } from "@smithy/core/client";
17
18
  export * from "./schemas/schemas_0";
18
19
  export * from "./pagination";
19
20
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ApplicationCostProfilerClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./ApplicationCostProfilerClient";
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
+ ApplicationCostProfilerClientResolvedConfig,
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
+ ApplicationCostProfilerClientResolvedConfig,
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 { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ApplicationCostProfilerClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApplicationCostProfilerClient";
8
2
  import {
9
3
  DeleteReportDefinitionRequest,
10
4
  DeleteReportDefinitionResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteReportDefinitionCommandInput
15
8
  extends DeleteReportDefinitionRequest {}
16
9
  export interface DeleteReportDefinitionCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteReportDefinitionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteReportDefinitionCommandInput,
24
17
  DeleteReportDefinitionCommandOutput,
25
- ApplicationCostProfilerClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ApplicationCostProfilerClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeleteReportDefinitionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteReportDefinitionCommandInput,
33
26
  DeleteReportDefinitionCommandOutput,
34
- ApplicationCostProfilerClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ApplicationCostProfilerClientResolvedConfig,
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 DeleteReportDefinitionCommand extends DeleteReportDefinitionCommand_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
- ApplicationCostProfilerClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApplicationCostProfilerClient";
8
2
  import {
9
3
  GetReportDefinitionRequest,
10
4
  GetReportDefinitionResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetReportDefinitionCommandInput
15
8
  extends GetReportDefinitionRequest {}
16
9
  export interface GetReportDefinitionCommandOutput
@@ -22,22 +15,20 @@ declare const GetReportDefinitionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetReportDefinitionCommandInput,
24
17
  GetReportDefinitionCommandOutput,
25
- ApplicationCostProfilerClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ApplicationCostProfilerClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetReportDefinitionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetReportDefinitionCommandInput,
33
26
  GetReportDefinitionCommandOutput,
34
- ApplicationCostProfilerClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ApplicationCostProfilerClientResolvedConfig,
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 GetReportDefinitionCommand extends GetReportDefinitionCommand_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
- ApplicationCostProfilerClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApplicationCostProfilerClient";
8
2
  import {
9
3
  ImportApplicationUsageRequest,
10
4
  ImportApplicationUsageResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ImportApplicationUsageCommandInput
15
8
  extends ImportApplicationUsageRequest {}
16
9
  export interface ImportApplicationUsageCommandOutput
@@ -22,22 +15,20 @@ declare const ImportApplicationUsageCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ImportApplicationUsageCommandInput,
24
17
  ImportApplicationUsageCommandOutput,
25
- ApplicationCostProfilerClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ApplicationCostProfilerClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ImportApplicationUsageCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ImportApplicationUsageCommandInput,
33
26
  ImportApplicationUsageCommandOutput,
34
- ApplicationCostProfilerClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ApplicationCostProfilerClientResolvedConfig,
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 ImportApplicationUsageCommand extends ImportApplicationUsageCommand_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
- ApplicationCostProfilerClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApplicationCostProfilerClient";
8
2
  import {
9
3
  ListReportDefinitionsRequest,
10
4
  ListReportDefinitionsResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListReportDefinitionsCommandInput
15
8
  extends ListReportDefinitionsRequest {}
16
9
  export interface ListReportDefinitionsCommandOutput
@@ -22,22 +15,20 @@ declare const ListReportDefinitionsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListReportDefinitionsCommandInput,
24
17
  ListReportDefinitionsCommandOutput,
25
- ApplicationCostProfilerClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ApplicationCostProfilerClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListReportDefinitionsCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListReportDefinitionsCommandInput,
33
26
  ListReportDefinitionsCommandOutput,
34
- ApplicationCostProfilerClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ApplicationCostProfilerClientResolvedConfig,
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 ListReportDefinitionsCommand extends ListReportDefinitionsCommand_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
- ApplicationCostProfilerClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApplicationCostProfilerClient";
8
2
  import {
9
3
  PutReportDefinitionRequest,
10
4
  PutReportDefinitionResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface PutReportDefinitionCommandInput
15
8
  extends PutReportDefinitionRequest {}
16
9
  export interface PutReportDefinitionCommandOutput
@@ -22,22 +15,20 @@ declare const PutReportDefinitionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  PutReportDefinitionCommandInput,
24
17
  PutReportDefinitionCommandOutput,
25
- ApplicationCostProfilerClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ApplicationCostProfilerClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: PutReportDefinitionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  PutReportDefinitionCommandInput,
33
26
  PutReportDefinitionCommandOutput,
34
- ApplicationCostProfilerClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ApplicationCostProfilerClientResolvedConfig,
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 PutReportDefinitionCommand extends PutReportDefinitionCommand_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
- ApplicationCostProfilerClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApplicationCostProfilerClient";
8
2
  import {
9
3
  UpdateReportDefinitionRequest,
10
4
  UpdateReportDefinitionResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface UpdateReportDefinitionCommandInput
15
8
  extends UpdateReportDefinitionRequest {}
16
9
  export interface UpdateReportDefinitionCommandOutput
@@ -22,22 +15,20 @@ declare const UpdateReportDefinitionCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  UpdateReportDefinitionCommandInput,
24
17
  UpdateReportDefinitionCommandOutput,
25
- ApplicationCostProfilerClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ApplicationCostProfilerClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: UpdateReportDefinitionCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  UpdateReportDefinitionCommandInput,
33
26
  UpdateReportDefinitionCommandOutput,
34
- ApplicationCostProfilerClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ApplicationCostProfilerClientResolvedConfig,
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 UpdateReportDefinitionCommand extends UpdateReportDefinitionCommand_base {
43
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ApplicationCostProfilerExtensionConfiguration } 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-applicationcostprofiler",
3
3
  "description": "AWS SDK for JavaScript Applicationcostprofiler 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": {