@aws-sdk/client-cost-and-usage-report-service 3.428.0 → 3.429.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.
|
@@ -203,22 +203,22 @@ export interface ReportDefinition {
|
|
|
203
203
|
* @public
|
|
204
204
|
* <p>The length of time covered by the report. </p>
|
|
205
205
|
*/
|
|
206
|
-
TimeUnit: TimeUnit |
|
|
206
|
+
TimeUnit: TimeUnit | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* @public
|
|
209
209
|
* <p>The format that AWS saves the report in.</p>
|
|
210
210
|
*/
|
|
211
|
-
Format: ReportFormat |
|
|
211
|
+
Format: ReportFormat | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* @public
|
|
214
214
|
* <p>The compression format that AWS uses for the report.</p>
|
|
215
215
|
*/
|
|
216
|
-
Compression: CompressionFormat |
|
|
216
|
+
Compression: CompressionFormat | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* @public
|
|
219
219
|
* <p>A list of strings that indicate additional content that Amazon Web Services includes in the report, such as individual resource IDs. </p>
|
|
220
220
|
*/
|
|
221
|
-
AdditionalSchemaElements:
|
|
221
|
+
AdditionalSchemaElements: SchemaElement[] | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* @public
|
|
224
224
|
* <p>The S3 bucket where AWS delivers the report.</p>
|
|
@@ -234,12 +234,12 @@ export interface ReportDefinition {
|
|
|
234
234
|
* @public
|
|
235
235
|
* <p>The region of the S3 bucket that AWS delivers the report into.</p>
|
|
236
236
|
*/
|
|
237
|
-
S3Region: AWSRegion |
|
|
237
|
+
S3Region: AWSRegion | undefined;
|
|
238
238
|
/**
|
|
239
239
|
* @public
|
|
240
240
|
* <p>A list of manifests that you want Amazon Web Services to create for this report.</p>
|
|
241
241
|
*/
|
|
242
|
-
AdditionalArtifacts?:
|
|
242
|
+
AdditionalArtifacts?: AdditionalArtifact[];
|
|
243
243
|
/**
|
|
244
244
|
* @public
|
|
245
245
|
* <p>Whether you want Amazon Web Services to update your reports after they have been finalized if Amazon Web Services detects charges related to
|
|
@@ -251,7 +251,7 @@ export interface ReportDefinition {
|
|
|
251
251
|
* <p>Whether you want Amazon Web Services to overwrite the previous version of each report or
|
|
252
252
|
* to deliver the report in addition to the previous versions.</p>
|
|
253
253
|
*/
|
|
254
|
-
ReportVersioning?: ReportVersioning
|
|
254
|
+
ReportVersioning?: ReportVersioning;
|
|
255
255
|
/**
|
|
256
256
|
* @public
|
|
257
257
|
* <p>
|
|
@@ -95,16 +95,16 @@ export declare const TimeUnit: {
|
|
|
95
95
|
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
96
96
|
export interface ReportDefinition {
|
|
97
97
|
ReportName: string | undefined;
|
|
98
|
-
TimeUnit: TimeUnit |
|
|
99
|
-
Format: ReportFormat |
|
|
100
|
-
Compression: CompressionFormat |
|
|
101
|
-
AdditionalSchemaElements:
|
|
98
|
+
TimeUnit: TimeUnit | undefined;
|
|
99
|
+
Format: ReportFormat | undefined;
|
|
100
|
+
Compression: CompressionFormat | undefined;
|
|
101
|
+
AdditionalSchemaElements: SchemaElement[] | undefined;
|
|
102
102
|
S3Bucket: string | undefined;
|
|
103
103
|
S3Prefix: string | undefined;
|
|
104
|
-
S3Region: AWSRegion |
|
|
105
|
-
AdditionalArtifacts?:
|
|
104
|
+
S3Region: AWSRegion | undefined;
|
|
105
|
+
AdditionalArtifacts?: AdditionalArtifact[];
|
|
106
106
|
RefreshClosedReports?: boolean;
|
|
107
|
-
ReportVersioning?: ReportVersioning
|
|
107
|
+
ReportVersioning?: ReportVersioning;
|
|
108
108
|
BillingViewArn?: string;
|
|
109
109
|
}
|
|
110
110
|
export interface DescribeReportDefinitionsResponse {
|
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.429.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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|