@aws-sdk/client-applicationcostprofiler 3.687.0 → 3.691.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.
@@ -30,7 +30,7 @@ export interface DeleteReportDefinitionResult {
30
30
  * <p>ID of the report that was deleted.</p>
31
31
  * @public
32
32
  */
33
- reportId?: string;
33
+ reportId?: string | undefined;
34
34
  }
35
35
  /**
36
36
  * <p>An internal server error occurred. Retry your request.</p>
@@ -196,7 +196,7 @@ export interface SourceS3Location {
196
196
  * Enabling a Region</a> in the <i>AWS General Reference guide</i>.</p>
197
197
  * @public
198
198
  */
199
- region?: S3BucketRegion;
199
+ region?: S3BucketRegion | undefined;
200
200
  }
201
201
  /**
202
202
  * @public
@@ -226,12 +226,12 @@ export interface ListReportDefinitionsRequest {
226
226
  * <p>The token value from a previous call to access the next page of results.</p>
227
227
  * @public
228
228
  */
229
- nextToken?: string;
229
+ nextToken?: string | undefined;
230
230
  /**
231
231
  * <p>The maximum number of results to return.</p>
232
232
  * @public
233
233
  */
234
- maxResults?: number;
234
+ maxResults?: number | undefined;
235
235
  }
236
236
  /**
237
237
  * <p>The configuration of a report in AWS Application Cost Profiler.</p>
@@ -242,37 +242,37 @@ export interface ReportDefinition {
242
242
  * <p>The ID of the report.</p>
243
243
  * @public
244
244
  */
245
- reportId?: string;
245
+ reportId?: string | undefined;
246
246
  /**
247
247
  * <p>Description of the report</p>
248
248
  * @public
249
249
  */
250
- reportDescription?: string;
250
+ reportDescription?: string | undefined;
251
251
  /**
252
252
  * <p>The cadence at which the report is generated.</p>
253
253
  * @public
254
254
  */
255
- reportFrequency?: ReportFrequency;
255
+ reportFrequency?: ReportFrequency | undefined;
256
256
  /**
257
257
  * <p>The format used for the generated reports.</p>
258
258
  * @public
259
259
  */
260
- format?: Format;
260
+ format?: Format | undefined;
261
261
  /**
262
262
  * <p>The location in Amazon Simple Storage Service (Amazon S3) the reports should be saved to.</p>
263
263
  * @public
264
264
  */
265
- destinationS3Location?: S3Location;
265
+ destinationS3Location?: S3Location | undefined;
266
266
  /**
267
267
  * <p>Timestamp (milliseconds) when this report definition was created.</p>
268
268
  * @public
269
269
  */
270
- createdAt?: Date;
270
+ createdAt?: Date | undefined;
271
271
  /**
272
272
  * <p>Timestamp (milliseconds) when this report definition was last updated.</p>
273
273
  * @public
274
274
  */
275
- lastUpdatedAt?: Date;
275
+ lastUpdatedAt?: Date | undefined;
276
276
  }
277
277
  /**
278
278
  * @public
@@ -282,12 +282,12 @@ export interface ListReportDefinitionsResult {
282
282
  * <p>The retrieved reports.</p>
283
283
  * @public
284
284
  */
285
- reportDefinitions?: ReportDefinition[];
285
+ reportDefinitions?: ReportDefinition[] | undefined;
286
286
  /**
287
287
  * <p>The value of the next token, if it exists. Null if there are no more results.</p>
288
288
  * @public
289
289
  */
290
- nextToken?: string;
290
+ nextToken?: string | undefined;
291
291
  }
292
292
  /**
293
293
  * @public
@@ -329,7 +329,7 @@ export interface PutReportDefinitionResult {
329
329
  * <p>ID of the report.</p>
330
330
  * @public
331
331
  */
332
- reportId?: string;
332
+ reportId?: string | undefined;
333
333
  }
334
334
  /**
335
335
  * <p>Your request exceeds one or more of the service quotas.</p>
@@ -382,5 +382,5 @@ export interface UpdateReportDefinitionResult {
382
382
  * <p>ID of the report.</p>
383
383
  * @public
384
384
  */
385
- reportId?: string;
385
+ reportId?: string | undefined;
386
386
  }
@@ -11,7 +11,7 @@ export interface DeleteReportDefinitionRequest {
11
11
  reportId: string | undefined;
12
12
  }
13
13
  export interface DeleteReportDefinitionResult {
14
- reportId?: string;
14
+ reportId?: string | undefined;
15
15
  }
16
16
  export declare class InternalServerException extends __BaseException {
17
17
  readonly name: "InternalServerException";
@@ -73,7 +73,7 @@ export type S3BucketRegion =
73
73
  export interface SourceS3Location {
74
74
  bucket: string | undefined;
75
75
  key: string | undefined;
76
- region?: S3BucketRegion;
76
+ region?: S3BucketRegion | undefined;
77
77
  }
78
78
  export interface ImportApplicationUsageRequest {
79
79
  sourceS3Location: SourceS3Location | undefined;
@@ -82,21 +82,21 @@ export interface ImportApplicationUsageResult {
82
82
  importId: string | undefined;
83
83
  }
84
84
  export interface ListReportDefinitionsRequest {
85
- nextToken?: string;
86
- maxResults?: number;
85
+ nextToken?: string | undefined;
86
+ maxResults?: number | undefined;
87
87
  }
88
88
  export interface ReportDefinition {
89
- reportId?: string;
90
- reportDescription?: string;
91
- reportFrequency?: ReportFrequency;
92
- format?: Format;
93
- destinationS3Location?: S3Location;
94
- createdAt?: Date;
95
- lastUpdatedAt?: Date;
89
+ reportId?: string | undefined;
90
+ reportDescription?: string | undefined;
91
+ reportFrequency?: ReportFrequency | undefined;
92
+ format?: Format | undefined;
93
+ destinationS3Location?: S3Location | undefined;
94
+ createdAt?: Date | undefined;
95
+ lastUpdatedAt?: Date | undefined;
96
96
  }
97
97
  export interface ListReportDefinitionsResult {
98
- reportDefinitions?: ReportDefinition[];
99
- nextToken?: string;
98
+ reportDefinitions?: ReportDefinition[] | undefined;
99
+ nextToken?: string | undefined;
100
100
  }
101
101
  export interface PutReportDefinitionRequest {
102
102
  reportId: string | undefined;
@@ -106,7 +106,7 @@ export interface PutReportDefinitionRequest {
106
106
  destinationS3Location: S3Location | undefined;
107
107
  }
108
108
  export interface PutReportDefinitionResult {
109
- reportId?: string;
109
+ reportId?: string | undefined;
110
110
  }
111
111
  export declare class ServiceQuotaExceededException extends __BaseException {
112
112
  readonly name: "ServiceQuotaExceededException";
@@ -123,5 +123,5 @@ export interface UpdateReportDefinitionRequest {
123
123
  destinationS3Location: S3Location | undefined;
124
124
  }
125
125
  export interface UpdateReportDefinitionResult {
126
- reportId?: string;
126
+ reportId?: string | undefined;
127
127
  }
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.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-applicationcostprofiler",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",