@aws-sdk/client-applicationcostprofiler 3.300.0 → 3.301.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-types/commands/DeleteReportDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/GetReportDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/ImportApplicationUsageCommand.d.ts +2 -2
- package/dist-types/commands/ListReportDefinitionsCommand.d.ts +1 -1
- package/dist-types/commands/PutReportDefinitionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateReportDefinitionCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinit
|
|
|
27
27
|
* import { ApplicationCostProfilerClient, DeleteReportDefinitionCommand } from "@aws-sdk/client-applicationcostprofiler"; // ES Modules import
|
|
28
28
|
* // const { ApplicationCostProfilerClient, DeleteReportDefinitionCommand } = require("@aws-sdk/client-applicationcostprofiler"); // CommonJS import
|
|
29
29
|
* const client = new ApplicationCostProfilerClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteReportDefinitionRequest
|
|
31
31
|
* reportId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteReportDefinitionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetReportDefinitionCommandOutput extends GetReportDefinitionRes
|
|
|
26
26
|
* import { ApplicationCostProfilerClient, GetReportDefinitionCommand } from "@aws-sdk/client-applicationcostprofiler"; // ES Modules import
|
|
27
27
|
* // const { ApplicationCostProfilerClient, GetReportDefinitionCommand } = require("@aws-sdk/client-applicationcostprofiler"); // CommonJS import
|
|
28
28
|
* const client = new ApplicationCostProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetReportDefinitionRequest
|
|
30
30
|
* reportId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetReportDefinitionCommand(input);
|
|
@@ -29,8 +29,8 @@ export interface ImportApplicationUsageCommandOutput extends ImportApplicationUs
|
|
|
29
29
|
* import { ApplicationCostProfilerClient, ImportApplicationUsageCommand } from "@aws-sdk/client-applicationcostprofiler"; // ES Modules import
|
|
30
30
|
* // const { ApplicationCostProfilerClient, ImportApplicationUsageCommand } = require("@aws-sdk/client-applicationcostprofiler"); // CommonJS import
|
|
31
31
|
* const client = new ApplicationCostProfilerClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* sourceS3Location: {
|
|
32
|
+
* const input = { // ImportApplicationUsageRequest
|
|
33
|
+
* sourceS3Location: { // SourceS3Location
|
|
34
34
|
* bucket: "STRING_VALUE", // required
|
|
35
35
|
* key: "STRING_VALUE", // required
|
|
36
36
|
* region: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListReportDefinitionsCommandOutput extends ListReportDefinition
|
|
|
27
27
|
* import { ApplicationCostProfilerClient, ListReportDefinitionsCommand } from "@aws-sdk/client-applicationcostprofiler"; // ES Modules import
|
|
28
28
|
* // const { ApplicationCostProfilerClient, ListReportDefinitionsCommand } = require("@aws-sdk/client-applicationcostprofiler"); // CommonJS import
|
|
29
29
|
* const client = new ApplicationCostProfilerClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListReportDefinitionsRequest
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* };
|
|
@@ -26,12 +26,12 @@ export interface PutReportDefinitionCommandOutput extends PutReportDefinitionRes
|
|
|
26
26
|
* import { ApplicationCostProfilerClient, PutReportDefinitionCommand } from "@aws-sdk/client-applicationcostprofiler"; // ES Modules import
|
|
27
27
|
* // const { ApplicationCostProfilerClient, PutReportDefinitionCommand } = require("@aws-sdk/client-applicationcostprofiler"); // CommonJS import
|
|
28
28
|
* const client = new ApplicationCostProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PutReportDefinitionRequest
|
|
30
30
|
* reportId: "STRING_VALUE", // required
|
|
31
31
|
* reportDescription: "STRING_VALUE", // required
|
|
32
32
|
* reportFrequency: "STRING_VALUE", // required
|
|
33
33
|
* format: "STRING_VALUE", // required
|
|
34
|
-
* destinationS3Location: {
|
|
34
|
+
* destinationS3Location: { // S3Location
|
|
35
35
|
* bucket: "STRING_VALUE", // required
|
|
36
36
|
* prefix: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
@@ -26,12 +26,12 @@ export interface UpdateReportDefinitionCommandOutput extends UpdateReportDefinit
|
|
|
26
26
|
* import { ApplicationCostProfilerClient, UpdateReportDefinitionCommand } from "@aws-sdk/client-applicationcostprofiler"; // ES Modules import
|
|
27
27
|
* // const { ApplicationCostProfilerClient, UpdateReportDefinitionCommand } = require("@aws-sdk/client-applicationcostprofiler"); // CommonJS import
|
|
28
28
|
* const client = new ApplicationCostProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateReportDefinitionRequest
|
|
30
30
|
* reportId: "STRING_VALUE", // required
|
|
31
31
|
* reportDescription: "STRING_VALUE", // required
|
|
32
32
|
* reportFrequency: "STRING_VALUE", // required
|
|
33
33
|
* format: "STRING_VALUE", // required
|
|
34
|
-
* destinationS3Location: {
|
|
34
|
+
* destinationS3Location: { // S3Location
|
|
35
35
|
* bucket: "STRING_VALUE", // required
|
|
36
36
|
* prefix: "STRING_VALUE", // required
|
|
37
37
|
* },
|
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.
|
|
4
|
+
"version": "3.301.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|