@aws-sdk/client-cost-and-usage-report-service 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -22,6 +22,7 @@
22
22
  */
23
23
  export * from "./CostAndUsageReportServiceClient";
24
24
  export * from "./CostAndUsageReportService";
25
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
25
26
  export * from "./commands";
26
27
  export * from "./pagination";
27
28
  export * from "./models";
@@ -19,6 +19,7 @@ export type AdditionalArtifact = (typeof AdditionalArtifact)[keyof typeof Additi
19
19
  */
20
20
  export interface DeleteReportDefinitionRequest {
21
21
  /**
22
+ * @public
22
23
  * <p>The name of the report that you want to delete. The name must be unique, is case sensitive, and can't include spaces.</p>
23
24
  */
24
25
  ReportName?: string;
@@ -29,6 +30,7 @@ export interface DeleteReportDefinitionRequest {
29
30
  */
30
31
  export interface DeleteReportDefinitionResponse {
31
32
  /**
33
+ * @public
32
34
  * <p>Whether the deletion was successful or not.</p>
33
35
  */
34
36
  ResponseMessage?: string;
@@ -41,6 +43,7 @@ export declare class InternalErrorException extends __BaseException {
41
43
  readonly name: "InternalErrorException";
42
44
  readonly $fault: "server";
43
45
  /**
46
+ * @public
44
47
  * <p>A message to show the detail of the exception.</p>
45
48
  */
46
49
  Message?: string;
@@ -57,6 +60,7 @@ export declare class ValidationException extends __BaseException {
57
60
  readonly name: "ValidationException";
58
61
  readonly $fault: "client";
59
62
  /**
63
+ * @public
60
64
  * <p>A message to show the detail of the exception.</p>
61
65
  */
62
66
  Message?: string;
@@ -71,10 +75,12 @@ export declare class ValidationException extends __BaseException {
71
75
  */
72
76
  export interface DescribeReportDefinitionsRequest {
73
77
  /**
78
+ * @public
74
79
  * <p>The maximum number of results that AWS returns for the operation.</p>
75
80
  */
76
81
  MaxResults?: number;
77
82
  /**
83
+ * @public
78
84
  * <p>A generic string.</p>
79
85
  */
80
86
  NextToken?: string;
@@ -188,54 +194,66 @@ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
188
194
  */
189
195
  export interface ReportDefinition {
190
196
  /**
197
+ * @public
191
198
  * <p>The name of the report that you want to create. The name must be unique,
192
199
  * is case sensitive, and can't include spaces. </p>
193
200
  */
194
201
  ReportName: string | undefined;
195
202
  /**
203
+ * @public
196
204
  * <p>The length of time covered by the report. </p>
197
205
  */
198
206
  TimeUnit: TimeUnit | string | undefined;
199
207
  /**
208
+ * @public
200
209
  * <p>The format that AWS saves the report in.</p>
201
210
  */
202
211
  Format: ReportFormat | string | undefined;
203
212
  /**
213
+ * @public
204
214
  * <p>The compression format that AWS uses for the report.</p>
205
215
  */
206
216
  Compression: CompressionFormat | string | undefined;
207
217
  /**
218
+ * @public
208
219
  * <p>A list of strings that indicate additional content that Amazon Web Services includes in the report, such as individual resource IDs. </p>
209
220
  */
210
221
  AdditionalSchemaElements: (SchemaElement | string)[] | undefined;
211
222
  /**
223
+ * @public
212
224
  * <p>The S3 bucket where AWS delivers the report.</p>
213
225
  */
214
226
  S3Bucket: string | undefined;
215
227
  /**
228
+ * @public
216
229
  * <p>The prefix that AWS adds to the report name when AWS delivers the report. Your prefix
217
230
  * can't include spaces.</p>
218
231
  */
219
232
  S3Prefix: string | undefined;
220
233
  /**
234
+ * @public
221
235
  * <p>The region of the S3 bucket that AWS delivers the report into.</p>
222
236
  */
223
237
  S3Region: AWSRegion | string | undefined;
224
238
  /**
239
+ * @public
225
240
  * <p>A list of manifests that you want Amazon Web Services to create for this report.</p>
226
241
  */
227
242
  AdditionalArtifacts?: (AdditionalArtifact | string)[];
228
243
  /**
244
+ * @public
229
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
230
246
  * previous months. These charges can include refunds, credits, or support fees.</p>
231
247
  */
232
248
  RefreshClosedReports?: boolean;
233
249
  /**
250
+ * @public
234
251
  * <p>Whether you want Amazon Web Services to overwrite the previous version of each report or
235
252
  * to deliver the report in addition to the previous versions.</p>
236
253
  */
237
254
  ReportVersioning?: ReportVersioning | string;
238
255
  /**
256
+ * @public
239
257
  * <p>
240
258
  * The Amazon resource name of the billing view. You can get this value by using the billing view service public APIs.
241
259
  * </p>
@@ -248,10 +266,12 @@ export interface ReportDefinition {
248
266
  */
249
267
  export interface DescribeReportDefinitionsResponse {
250
268
  /**
269
+ * @public
251
270
  * <p>A list of AWS Cost and Usage reports owned by the account.</p>
252
271
  */
253
272
  ReportDefinitions?: ReportDefinition[];
254
273
  /**
274
+ * @public
255
275
  * <p>A generic string.</p>
256
276
  */
257
277
  NextToken?: string;
@@ -261,11 +281,13 @@ export interface DescribeReportDefinitionsResponse {
261
281
  */
262
282
  export interface ModifyReportDefinitionRequest {
263
283
  /**
284
+ * @public
264
285
  * <p>The name of the report that you want to create. The name must be unique,
265
286
  * is case sensitive, and can't include spaces. </p>
266
287
  */
267
288
  ReportName: string | undefined;
268
289
  /**
290
+ * @public
269
291
  * <p>The definition of AWS Cost and Usage Report. You can specify the report name,
270
292
  * time unit, report format, compression format, S3 bucket, additional artifacts, and schema
271
293
  * elements in the definition.
@@ -286,6 +308,7 @@ export declare class DuplicateReportNameException extends __BaseException {
286
308
  readonly name: "DuplicateReportNameException";
287
309
  readonly $fault: "client";
288
310
  /**
311
+ * @public
289
312
  * <p>A message to show the detail of the exception.</p>
290
313
  */
291
314
  Message?: string;
@@ -300,6 +323,7 @@ export declare class DuplicateReportNameException extends __BaseException {
300
323
  */
301
324
  export interface PutReportDefinitionRequest {
302
325
  /**
326
+ * @public
303
327
  * <p>Represents the output of the PutReportDefinition operation. The content consists of the detailed
304
328
  * metadata and data file information. </p>
305
329
  */
@@ -319,6 +343,7 @@ export declare class ReportLimitReachedException extends __BaseException {
319
343
  readonly name: "ReportLimitReachedException";
320
344
  readonly $fault: "client";
321
345
  /**
346
+ * @public
322
347
  * <p>A message to show the detail of the exception.</p>
323
348
  */
324
349
  Message?: string;
@@ -1,5 +1,6 @@
1
1
  export * from "./CostAndUsageReportServiceClient";
2
2
  export * from "./CostAndUsageReportService";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
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.378.0",
4
+ "version": "3.382.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,15 +21,15 @@
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.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",