@aws-sdk/client-cost-and-usage-report-service 3.337.0 → 3.339.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/CostAndUsageReportServiceClient.js +2 -1
- package/dist-cjs/commands/DeleteReportDefinitionCommand.js +2 -1
- package/dist-cjs/commands/DescribeReportDefinitionsCommand.js +2 -1
- package/dist-cjs/commands/ModifyReportDefinitionCommand.js +2 -1
- package/dist-cjs/commands/PutReportDefinitionCommand.js +2 -1
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +2 -2
- package/dist-cjs/models/CostAndUsageReportServiceServiceException.js +2 -1
- package/dist-cjs/models/models_0.js +3 -0
- package/dist-es/CostAndUsageReportServiceClient.js +1 -0
- package/dist-es/commands/DeleteReportDefinitionCommand.js +1 -0
- package/dist-es/commands/DescribeReportDefinitionsCommand.js +1 -0
- package/dist-es/commands/ModifyReportDefinitionCommand.js +1 -0
- package/dist-es/commands/PutReportDefinitionCommand.js +1 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/index.js +2 -2
- package/dist-es/models/CostAndUsageReportServiceServiceException.js +1 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-types/CostAndUsageReportServiceClient.d.ts +3 -3
- package/dist-types/commands/DeleteReportDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/DescribeReportDefinitionsCommand.d.ts +6 -2
- package/dist-types/commands/ModifyReportDefinitionCommand.d.ts +6 -2
- package/dist-types/commands/PutReportDefinitionCommand.d.ts +6 -2
- package/dist-types/index.d.ts +24 -2
- package/dist-types/models/CostAndUsageReportServiceServiceException.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/CostAndUsageReportServiceClient.d.ts +3 -3
- package/dist-types/ts3.4/commands/DeleteReportDefinitionCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/DescribeReportDefinitionsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ModifyReportDefinitionCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/PutReportDefinitionCommand.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +2 -2
- package/dist-types/ts3.4/models/CostAndUsageReportServiceServiceException.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +28 -28
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CostAndUsageReportServiceClient = void 0;
|
|
3
|
+
exports.CostAndUsageReportServiceClient = 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 CostAndUsageReportServiceClient extends smithy_client_1.Client {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteReportDefinitionCommand = void 0;
|
|
3
|
+
exports.DeleteReportDefinitionCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class DeleteReportDefinitionCommand 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.DescribeReportDefinitionsCommand = void 0;
|
|
3
|
+
exports.DescribeReportDefinitionsCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class DescribeReportDefinitionsCommand 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.ModifyReportDefinitionCommand = void 0;
|
|
3
|
+
exports.ModifyReportDefinitionCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class ModifyReportDefinitionCommand 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.PutReportDefinitionCommand = void 0;
|
|
3
|
+
exports.PutReportDefinitionCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
9
|
class PutReportDefinitionCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
|
-
const
|
|
5
|
-
const a = "
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
4
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
5
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://cur-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://cur-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://cur.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://cur.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
7
7
|
exports.ruleSet = _data;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CostAndUsageReportServiceServiceException = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("./CostAndUsageReportService"), exports);
|
|
6
5
|
tslib_1.__exportStar(require("./CostAndUsageReportServiceClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CostAndUsageReportService"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./models"), exports);
|
|
9
8
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
10
10
|
var CostAndUsageReportServiceServiceException_1 = require("./models/CostAndUsageReportServiceServiceException");
|
|
11
11
|
Object.defineProperty(exports, "CostAndUsageReportServiceServiceException", { enumerable: true, get: function () { return CostAndUsageReportServiceServiceException_1.CostAndUsageReportServiceServiceException; } });
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CostAndUsageReportServiceServiceException = void 0;
|
|
3
|
+
exports.CostAndUsageReportServiceServiceException = 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 CostAndUsageReportServiceServiceException extends smithy_client_1.ServiceException {
|
|
6
7
|
constructor(options) {
|
|
7
8
|
super(options);
|
|
@@ -37,6 +37,7 @@ class ValidationException extends CostAndUsageReportServiceServiceException_1.Co
|
|
|
37
37
|
exports.ValidationException = ValidationException;
|
|
38
38
|
exports.SchemaElement = {
|
|
39
39
|
RESOURCES: "RESOURCES",
|
|
40
|
+
SPLIT_COST_ALLOCATION_DATA: "SPLIT_COST_ALLOCATION_DATA",
|
|
40
41
|
};
|
|
41
42
|
exports.CompressionFormat = {
|
|
42
43
|
GZIP: "GZIP",
|
|
@@ -58,6 +59,7 @@ exports.AWSRegion = {
|
|
|
58
59
|
CAPE_TOWN: "af-south-1",
|
|
59
60
|
FRANKFURT: "eu-central-1",
|
|
60
61
|
HONG_KONG: "ap-east-1",
|
|
62
|
+
HYDERABAD: "ap-south-2",
|
|
61
63
|
IRELAND: "eu-west-1",
|
|
62
64
|
JAKARTA: "ap-southeast-3",
|
|
63
65
|
LONDON: "eu-west-2",
|
|
@@ -78,6 +80,7 @@ exports.AWSRegion = {
|
|
|
78
80
|
TOKYO: "ap-northeast-1",
|
|
79
81
|
UAE: "me-central-1",
|
|
80
82
|
US_STANDARD: "us-east-1",
|
|
83
|
+
ZURICH: "eu-central-2",
|
|
81
84
|
};
|
|
82
85
|
exports.TimeUnit = {
|
|
83
86
|
DAILY: "DAILY",
|
|
@@ -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 CostAndUsageReportServiceClient extends __Client {
|
|
14
15
|
constructor(configuration) {
|
|
15
16
|
const _config_0 = __getRuntimeConfig(configuration);
|
|
@@ -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_DeleteReportDefinitionCommand, se_DeleteReportDefinitionCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class DeleteReportDefinitionCommand 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_DescribeReportDefinitionsCommand, se_DescribeReportDefinitionsCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class DescribeReportDefinitionsCommand 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_ModifyReportDefinitionCommand, se_ModifyReportDefinitionCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ModifyReportDefinitionCommand 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_PutReportDefinitionCommand, se_PutReportDefinitionCommand } from "../protocols/Aws_json1_1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class PutReportDefinitionCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
2
|
-
const a = "
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
1
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
2
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://cur-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://cur-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://cur.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://cur.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
4
4
|
export const ruleSet = _data;
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./CostAndUsageReportService";
|
|
2
1
|
export * from "./CostAndUsageReportServiceClient";
|
|
2
|
+
export * from "./CostAndUsageReportService";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models";
|
|
6
6
|
export { CostAndUsageReportServiceServiceException } from "./models/CostAndUsageReportServiceServiceException";
|
|
@@ -32,6 +32,7 @@ export class ValidationException extends __BaseException {
|
|
|
32
32
|
}
|
|
33
33
|
export const SchemaElement = {
|
|
34
34
|
RESOURCES: "RESOURCES",
|
|
35
|
+
SPLIT_COST_ALLOCATION_DATA: "SPLIT_COST_ALLOCATION_DATA",
|
|
35
36
|
};
|
|
36
37
|
export const CompressionFormat = {
|
|
37
38
|
GZIP: "GZIP",
|
|
@@ -53,6 +54,7 @@ export const AWSRegion = {
|
|
|
53
54
|
CAPE_TOWN: "af-south-1",
|
|
54
55
|
FRANKFURT: "eu-central-1",
|
|
55
56
|
HONG_KONG: "ap-east-1",
|
|
57
|
+
HYDERABAD: "ap-south-2",
|
|
56
58
|
IRELAND: "eu-west-1",
|
|
57
59
|
JAKARTA: "ap-southeast-3",
|
|
58
60
|
LONDON: "eu-west-2",
|
|
@@ -73,6 +75,7 @@ export const AWSRegion = {
|
|
|
73
75
|
TOKYO: "ap-northeast-1",
|
|
74
76
|
UAE: "me-central-1",
|
|
75
77
|
US_STANDARD: "us-east-1",
|
|
78
|
+
ZURICH: "eu-central-2",
|
|
76
79
|
};
|
|
77
80
|
export const TimeUnit = {
|
|
78
81
|
DAILY: "DAILY",
|
|
@@ -13,6 +13,7 @@ import { DescribeReportDefinitionsCommandInput, DescribeReportDefinitionsCommand
|
|
|
13
13
|
import { ModifyReportDefinitionCommandInput, ModifyReportDefinitionCommandOutput } from "./commands/ModifyReportDefinitionCommand";
|
|
14
14
|
import { PutReportDefinitionCommandInput, PutReportDefinitionCommandOutput } from "./commands/PutReportDefinitionCommand";
|
|
15
15
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
16
|
+
export { __Client };
|
|
16
17
|
/**
|
|
17
18
|
* @public
|
|
18
19
|
*/
|
|
@@ -127,7 +128,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
127
128
|
/**
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
|
-
type CostAndUsageReportServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
131
|
+
export type CostAndUsageReportServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
131
132
|
/**
|
|
132
133
|
* @public
|
|
133
134
|
*
|
|
@@ -138,7 +139,7 @@ export interface CostAndUsageReportServiceClientConfig extends CostAndUsageRepor
|
|
|
138
139
|
/**
|
|
139
140
|
* @public
|
|
140
141
|
*/
|
|
141
|
-
type CostAndUsageReportServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
142
|
+
export type CostAndUsageReportServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
142
143
|
/**
|
|
143
144
|
* @public
|
|
144
145
|
*
|
|
@@ -180,4 +181,3 @@ export declare class CostAndUsageReportServiceClient extends __Client<__HttpHand
|
|
|
180
181
|
*/
|
|
181
182
|
destroy(): void;
|
|
182
183
|
}
|
|
183
|
-
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 } from "@aws-sdk/types";
|
|
4
4
|
import { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostAndUsageReportServiceClient";
|
|
5
5
|
import { DeleteReportDefinitionRequest, DeleteReportDefinitionResponse } 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 { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostAndUsageReportServiceClient";
|
|
5
5
|
import { DescribeReportDefinitionsRequest, DescribeReportDefinitionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -40,11 +44,11 @@ export interface DescribeReportDefinitionsCommandOutput extends DescribeReportDe
|
|
|
40
44
|
* // Format: "textORcsv" || "Parquet", // required
|
|
41
45
|
* // Compression: "ZIP" || "GZIP" || "Parquet", // required
|
|
42
46
|
* // AdditionalSchemaElements: [ // SchemaElementList // required
|
|
43
|
-
* // "RESOURCES",
|
|
47
|
+
* // "RESOURCES" || "SPLIT_COST_ALLOCATION_DATA",
|
|
44
48
|
* // ],
|
|
45
49
|
* // S3Bucket: "STRING_VALUE", // required
|
|
46
50
|
* // S3Prefix: "STRING_VALUE", // required
|
|
47
|
-
* // S3Region: "af-south-1" || "ap-east-1" || "ap-south-1" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ca-central-1" || "eu-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "cn-north-1" || "cn-northwest-1", // required
|
|
51
|
+
* // S3Region: "af-south-1" || "ap-east-1" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ca-central-1" || "eu-central-1" || "eu-central-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "cn-north-1" || "cn-northwest-1", // required
|
|
48
52
|
* // AdditionalArtifacts: [ // AdditionalArtifactList
|
|
49
53
|
* // "REDSHIFT" || "QUICKSIGHT" || "ATHENA",
|
|
50
54
|
* // ],
|
|
@@ -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 { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostAndUsageReportServiceClient";
|
|
5
5
|
import { ModifyReportDefinitionRequest, ModifyReportDefinitionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -34,11 +38,11 @@ export interface ModifyReportDefinitionCommandOutput extends ModifyReportDefinit
|
|
|
34
38
|
* Format: "textORcsv" || "Parquet", // required
|
|
35
39
|
* Compression: "ZIP" || "GZIP" || "Parquet", // required
|
|
36
40
|
* AdditionalSchemaElements: [ // SchemaElementList // required
|
|
37
|
-
* "RESOURCES",
|
|
41
|
+
* "RESOURCES" || "SPLIT_COST_ALLOCATION_DATA",
|
|
38
42
|
* ],
|
|
39
43
|
* S3Bucket: "STRING_VALUE", // required
|
|
40
44
|
* S3Prefix: "STRING_VALUE", // required
|
|
41
|
-
* S3Region: "af-south-1" || "ap-east-1" || "ap-south-1" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ca-central-1" || "eu-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "cn-north-1" || "cn-northwest-1", // required
|
|
45
|
+
* S3Region: "af-south-1" || "ap-east-1" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ca-central-1" || "eu-central-1" || "eu-central-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "cn-north-1" || "cn-northwest-1", // required
|
|
42
46
|
* AdditionalArtifacts: [ // AdditionalArtifactList
|
|
43
47
|
* "REDSHIFT" || "QUICKSIGHT" || "ATHENA",
|
|
44
48
|
* ],
|
|
@@ -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 { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostAndUsageReportServiceClient";
|
|
5
5
|
import { PutReportDefinitionRequest, PutReportDefinitionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -33,11 +37,11 @@ export interface PutReportDefinitionCommandOutput extends PutReportDefinitionRes
|
|
|
33
37
|
* Format: "textORcsv" || "Parquet", // required
|
|
34
38
|
* Compression: "ZIP" || "GZIP" || "Parquet", // required
|
|
35
39
|
* AdditionalSchemaElements: [ // SchemaElementList // required
|
|
36
|
-
* "RESOURCES",
|
|
40
|
+
* "RESOURCES" || "SPLIT_COST_ALLOCATION_DATA",
|
|
37
41
|
* ],
|
|
38
42
|
* S3Bucket: "STRING_VALUE", // required
|
|
39
43
|
* S3Prefix: "STRING_VALUE", // required
|
|
40
|
-
* S3Region: "af-south-1" || "ap-east-1" || "ap-south-1" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ca-central-1" || "eu-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "cn-north-1" || "cn-northwest-1", // required
|
|
44
|
+
* S3Region: "af-south-1" || "ap-east-1" || "ap-south-1" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "ca-central-1" || "eu-central-1" || "eu-central-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-north-1" || "eu-south-1" || "eu-south-2" || "me-central-1" || "me-south-1" || "sa-east-1" || "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "cn-north-1" || "cn-northwest-1", // required
|
|
41
45
|
* AdditionalArtifacts: [ // AdditionalArtifactList
|
|
42
46
|
* "REDSHIFT" || "QUICKSIGHT" || "ATHENA",
|
|
43
47
|
* ],
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,28 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* <p>The AWS Cost and Usage Report API enables you to programmatically create, query, and delete
|
|
3
|
+
* AWS Cost and Usage report definitions.</p>
|
|
4
|
+
* <p>AWS Cost and Usage reports track the monthly AWS costs and usage
|
|
5
|
+
* associated with your AWS account.
|
|
6
|
+
*
|
|
7
|
+
* The report contains line items for each unique combination of AWS product,
|
|
8
|
+
* usage type, and operation that your AWS account uses.
|
|
9
|
+
*
|
|
10
|
+
* You can configure the AWS Cost and Usage report to show only the data that you want, using the
|
|
11
|
+
* AWS Cost and Usage API.</p>
|
|
12
|
+
*
|
|
13
|
+
* <p>Service Endpoint</p>
|
|
14
|
+
* <p>The AWS Cost and Usage Report API provides the following endpoint:</p>
|
|
15
|
+
* <ul>
|
|
16
|
+
* <li>
|
|
17
|
+
* <p>cur.us-east-1.amazonaws.com</p>
|
|
18
|
+
* </li>
|
|
19
|
+
* </ul>
|
|
20
|
+
*
|
|
21
|
+
* @packageDocumentation
|
|
22
|
+
*/
|
|
2
23
|
export * from "./CostAndUsageReportServiceClient";
|
|
24
|
+
export * from "./CostAndUsageReportService";
|
|
3
25
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
26
|
export * from "./pagination";
|
|
27
|
+
export * from "./models";
|
|
6
28
|
export { CostAndUsageReportServiceServiceException } from "./models/CostAndUsageReportServiceServiceException";
|
|
@@ -85,6 +85,7 @@ export interface DescribeReportDefinitionsRequest {
|
|
|
85
85
|
*/
|
|
86
86
|
export declare const SchemaElement: {
|
|
87
87
|
readonly RESOURCES: "RESOURCES";
|
|
88
|
+
readonly SPLIT_COST_ALLOCATION_DATA: "SPLIT_COST_ALLOCATION_DATA";
|
|
88
89
|
};
|
|
89
90
|
/**
|
|
90
91
|
* @public
|
|
@@ -138,6 +139,7 @@ export declare const AWSRegion: {
|
|
|
138
139
|
readonly CAPE_TOWN: "af-south-1";
|
|
139
140
|
readonly FRANKFURT: "eu-central-1";
|
|
140
141
|
readonly HONG_KONG: "ap-east-1";
|
|
142
|
+
readonly HYDERABAD: "ap-south-2";
|
|
141
143
|
readonly IRELAND: "eu-west-1";
|
|
142
144
|
readonly JAKARTA: "ap-southeast-3";
|
|
143
145
|
readonly LONDON: "eu-west-2";
|
|
@@ -158,6 +160,7 @@ export declare const AWSRegion: {
|
|
|
158
160
|
readonly TOKYO: "ap-northeast-1";
|
|
159
161
|
readonly UAE: "me-central-1";
|
|
160
162
|
readonly US_STANDARD: "us-east-1";
|
|
163
|
+
readonly ZURICH: "eu-central-2";
|
|
161
164
|
};
|
|
162
165
|
/**
|
|
163
166
|
* @public
|
|
@@ -67,6 +67,7 @@ import {
|
|
|
67
67
|
ClientResolvedEndpointParameters,
|
|
68
68
|
EndpointParameters,
|
|
69
69
|
} from "./endpoint/EndpointParameters";
|
|
70
|
+
export { __Client };
|
|
70
71
|
export type ServiceInputTypes =
|
|
71
72
|
| DeleteReportDefinitionCommandInput
|
|
72
73
|
| DescribeReportDefinitionsCommandInput
|
|
@@ -101,7 +102,7 @@ export interface ClientDefaults
|
|
|
101
102
|
logger?: __Logger;
|
|
102
103
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
103
104
|
}
|
|
104
|
-
type CostAndUsageReportServiceClientConfigType = Partial<
|
|
105
|
+
export type CostAndUsageReportServiceClientConfigType = Partial<
|
|
105
106
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
106
107
|
> &
|
|
107
108
|
ClientDefaults &
|
|
@@ -114,7 +115,7 @@ type CostAndUsageReportServiceClientConfigType = Partial<
|
|
|
114
115
|
ClientInputEndpointParameters;
|
|
115
116
|
export interface CostAndUsageReportServiceClientConfig
|
|
116
117
|
extends CostAndUsageReportServiceClientConfigType {}
|
|
117
|
-
type CostAndUsageReportServiceClientResolvedConfigType =
|
|
118
|
+
export type CostAndUsageReportServiceClientResolvedConfigType =
|
|
118
119
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
119
120
|
Required<ClientDefaults> &
|
|
120
121
|
RegionResolvedConfig &
|
|
@@ -136,4 +137,3 @@ export declare class CostAndUsageReportServiceClient extends __Client<
|
|
|
136
137
|
constructor(configuration: CostAndUsageReportServiceClientConfig);
|
|
137
138
|
destroy(): void;
|
|
138
139
|
}
|
|
139
|
-
export {};
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
DeleteReportDefinitionRequest,
|
|
16
16
|
DeleteReportDefinitionResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface DeleteReportDefinitionCommandInput
|
|
19
20
|
extends DeleteReportDefinitionRequest {}
|
|
20
21
|
export interface DeleteReportDefinitionCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
DescribeReportDefinitionsRequest,
|
|
16
16
|
DescribeReportDefinitionsResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface DescribeReportDefinitionsCommandInput
|
|
19
20
|
extends DescribeReportDefinitionsRequest {}
|
|
20
21
|
export interface DescribeReportDefinitionsCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ModifyReportDefinitionRequest,
|
|
16
16
|
ModifyReportDefinitionResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface ModifyReportDefinitionCommandInput
|
|
19
20
|
extends ModifyReportDefinitionRequest {}
|
|
20
21
|
export interface ModifyReportDefinitionCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
PutReportDefinitionRequest,
|
|
16
16
|
PutReportDefinitionResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface PutReportDefinitionCommandInput
|
|
19
20
|
extends PutReportDefinitionRequest {}
|
|
20
21
|
export interface PutReportDefinitionCommandOutput
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./CostAndUsageReportService";
|
|
2
1
|
export * from "./CostAndUsageReportServiceClient";
|
|
2
|
+
export * from "./CostAndUsageReportService";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models";
|
|
6
6
|
export { CostAndUsageReportServiceServiceException } from "./models/CostAndUsageReportServiceServiceException";
|
|
@@ -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 CostAndUsageReportServiceServiceException extends __ServiceException {
|
|
6
7
|
constructor(options: __ServiceExceptionOptions);
|
|
7
8
|
}
|
|
@@ -35,6 +35,7 @@ export interface DescribeReportDefinitionsRequest {
|
|
|
35
35
|
}
|
|
36
36
|
export declare const SchemaElement: {
|
|
37
37
|
readonly RESOURCES: "RESOURCES";
|
|
38
|
+
readonly SPLIT_COST_ALLOCATION_DATA: "SPLIT_COST_ALLOCATION_DATA";
|
|
38
39
|
};
|
|
39
40
|
export type SchemaElement = (typeof SchemaElement)[keyof typeof SchemaElement];
|
|
40
41
|
export declare const CompressionFormat: {
|
|
@@ -62,6 +63,7 @@ export declare const AWSRegion: {
|
|
|
62
63
|
readonly CAPE_TOWN: "af-south-1";
|
|
63
64
|
readonly FRANKFURT: "eu-central-1";
|
|
64
65
|
readonly HONG_KONG: "ap-east-1";
|
|
66
|
+
readonly HYDERABAD: "ap-south-2";
|
|
65
67
|
readonly IRELAND: "eu-west-1";
|
|
66
68
|
readonly JAKARTA: "ap-southeast-3";
|
|
67
69
|
readonly LONDON: "eu-west-2";
|
|
@@ -82,6 +84,7 @@ export declare const AWSRegion: {
|
|
|
82
84
|
readonly TOKYO: "ap-northeast-1";
|
|
83
85
|
readonly UAE: "me-central-1";
|
|
84
86
|
readonly US_STANDARD: "us-east-1";
|
|
87
|
+
readonly ZURICH: "eu-central-2";
|
|
85
88
|
};
|
|
86
89
|
export type AWSRegion = (typeof AWSRegion)[keyof typeof AWSRegion];
|
|
87
90
|
export declare const TimeUnit: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cost-and-usage-report-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cost And Usage Report Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.339.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,36 +21,36 @@
|
|
|
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-user-agent-browser": "3.
|
|
53
|
-
"@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-user-agent-browser": "3.338.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.338.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|