@aws-sdk/client-billing 3.864.0 → 3.873.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/README.md +1 -7
- package/dist-cjs/endpoint/EndpointParameters.js +2 -0
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -0
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-types/Billing.d.ts +1 -7
- package/dist-types/BillingClient.d.ts +1 -7
- package/dist-types/commands/CreateBillingViewCommand.d.ts +6 -15
- package/dist-types/commands/DeleteBillingViewCommand.d.ts +4 -9
- package/dist-types/commands/GetBillingViewCommand.d.ts +5 -11
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +5 -11
- package/dist-types/commands/ListBillingViewsCommand.d.ts +4 -9
- package/dist-types/commands/ListSourceViewsForBillingViewCommand.d.ts +5 -11
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -11
- package/dist-types/commands/TagResourceCommand.d.ts +5 -12
- package/dist-types/commands/UntagResourceCommand.d.ts +5 -12
- package/dist-types/commands/UpdateBillingViewCommand.d.ts +7 -17
- package/dist-types/endpoint/EndpointParameters.d.ts +6 -0
- package/dist-types/index.d.ts +1 -7
- package/dist-types/models/models_0.d.ts +77 -211
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -1
- package/package.json +11 -11
|
@@ -23,33 +23,25 @@ export interface ActiveTimeRange {
|
|
|
23
23
|
*/
|
|
24
24
|
activeAfterInclusive: Date | undefined;
|
|
25
25
|
/**
|
|
26
|
-
* <p>
|
|
27
|
-
* The inclusive time range end date.
|
|
28
|
-
* </p>
|
|
26
|
+
* <p> The inclusive time range end date. </p>
|
|
29
27
|
* @public
|
|
30
28
|
*/
|
|
31
29
|
activeBeforeInclusive: Date | undefined;
|
|
32
30
|
}
|
|
33
31
|
/**
|
|
34
|
-
* <p>
|
|
35
|
-
* The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
|
|
36
|
-
* </p>
|
|
32
|
+
* <p> The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request. </p>
|
|
37
33
|
* @public
|
|
38
34
|
*/
|
|
39
35
|
export declare class ConflictException extends __BaseException {
|
|
40
36
|
readonly name: "ConflictException";
|
|
41
37
|
readonly $fault: "client";
|
|
42
38
|
/**
|
|
43
|
-
* <p>
|
|
44
|
-
* The identifier for the service resource associated with the request.
|
|
45
|
-
* </p>
|
|
39
|
+
* <p> The identifier for the service resource associated with the request. </p>
|
|
46
40
|
* @public
|
|
47
41
|
*/
|
|
48
42
|
resourceId: string | undefined;
|
|
49
43
|
/**
|
|
50
|
-
* <p>
|
|
51
|
-
* The type of resource associated with the request.
|
|
52
|
-
* </p>
|
|
44
|
+
* <p> The type of resource associated with the request. </p>
|
|
53
45
|
* @public
|
|
54
46
|
*/
|
|
55
47
|
resourceType: string | undefined;
|
|
@@ -70,89 +62,65 @@ export declare const Dimension: {
|
|
|
70
62
|
*/
|
|
71
63
|
export type Dimension = (typeof Dimension)[keyof typeof Dimension];
|
|
72
64
|
/**
|
|
73
|
-
* <p>
|
|
74
|
-
* The metadata that you can use to filter and group your results.
|
|
75
|
-
* </p>
|
|
65
|
+
* <p> The metadata that you can use to filter and group your results. </p>
|
|
76
66
|
* @public
|
|
77
67
|
*/
|
|
78
68
|
export interface DimensionValues {
|
|
79
69
|
/**
|
|
80
|
-
* <p>
|
|
81
|
-
* The names of the metadata types that you can use to filter and group your results.
|
|
82
|
-
* </p>
|
|
70
|
+
* <p> The names of the metadata types that you can use to filter and group your results. </p>
|
|
83
71
|
* @public
|
|
84
72
|
*/
|
|
85
73
|
key: Dimension | undefined;
|
|
86
74
|
/**
|
|
87
|
-
* <p>
|
|
88
|
-
* The metadata values that you can use to filter and group your results.
|
|
89
|
-
* </p>
|
|
75
|
+
* <p> The metadata values that you can use to filter and group your results. </p>
|
|
90
76
|
* @public
|
|
91
77
|
*/
|
|
92
78
|
values: string[] | undefined;
|
|
93
79
|
}
|
|
94
80
|
/**
|
|
95
|
-
* <p>
|
|
96
|
-
* The values that are available for a tag.
|
|
97
|
-
* </p>
|
|
81
|
+
* <p> The values that are available for a tag. </p>
|
|
98
82
|
* @public
|
|
99
83
|
*/
|
|
100
84
|
export interface TagValues {
|
|
101
85
|
/**
|
|
102
|
-
* <p>
|
|
103
|
-
* The key for the tag.
|
|
104
|
-
* </p>
|
|
86
|
+
* <p> The key for the tag. </p>
|
|
105
87
|
* @public
|
|
106
88
|
*/
|
|
107
89
|
key: string | undefined;
|
|
108
90
|
/**
|
|
109
|
-
* <p>
|
|
110
|
-
* The specific value of the tag.
|
|
111
|
-
* </p>
|
|
91
|
+
* <p> The specific value of the tag. </p>
|
|
112
92
|
* @public
|
|
113
93
|
*/
|
|
114
94
|
values: string[] | undefined;
|
|
115
95
|
}
|
|
116
96
|
/**
|
|
117
|
-
* <p>
|
|
118
|
-
* See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>.
|
|
119
|
-
* </p>
|
|
97
|
+
* <p> See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>. </p>
|
|
120
98
|
* @public
|
|
121
99
|
*/
|
|
122
100
|
export interface Expression {
|
|
123
101
|
/**
|
|
124
|
-
* <p>
|
|
125
|
-
* The specific <code>Dimension</code> to use for <code>Expression</code>.
|
|
126
|
-
* </p>
|
|
102
|
+
* <p> The specific <code>Dimension</code> to use for <code>Expression</code>. </p>
|
|
127
103
|
* @public
|
|
128
104
|
*/
|
|
129
105
|
dimensions?: DimensionValues | undefined;
|
|
130
106
|
/**
|
|
131
|
-
* <p>
|
|
132
|
-
* The specific <code>Tag</code> to use for <code>Expression</code>.
|
|
133
|
-
* </p>
|
|
107
|
+
* <p> The specific <code>Tag</code> to use for <code>Expression</code>. </p>
|
|
134
108
|
* @public
|
|
135
109
|
*/
|
|
136
110
|
tags?: TagValues | undefined;
|
|
137
111
|
}
|
|
138
112
|
/**
|
|
139
|
-
* <p>
|
|
140
|
-
* The tag structure that contains a tag key and value.
|
|
141
|
-
* </p>
|
|
113
|
+
* <p> The tag structure that contains a tag key and value. </p>
|
|
142
114
|
* @public
|
|
143
115
|
*/
|
|
144
116
|
export interface ResourceTag {
|
|
145
117
|
/**
|
|
146
|
-
* <p>
|
|
147
|
-
* The key that's associated with the tag.
|
|
148
|
-
* </p>
|
|
118
|
+
* <p> The key that's associated with the tag. </p>
|
|
149
119
|
* @public
|
|
150
120
|
*/
|
|
151
121
|
key: string | undefined;
|
|
152
122
|
/**
|
|
153
|
-
* <p>
|
|
154
|
-
* The value that's associated with the tag.
|
|
155
|
-
* </p>
|
|
123
|
+
* <p> The value that's associated with the tag. </p>
|
|
156
124
|
* @public
|
|
157
125
|
*/
|
|
158
126
|
value?: string | undefined;
|
|
@@ -162,16 +130,12 @@ export interface ResourceTag {
|
|
|
162
130
|
*/
|
|
163
131
|
export interface CreateBillingViewRequest {
|
|
164
132
|
/**
|
|
165
|
-
* <p>
|
|
166
|
-
* The name of the billing view.
|
|
167
|
-
* </p>
|
|
133
|
+
* <p> The name of the billing view. </p>
|
|
168
134
|
* @public
|
|
169
135
|
*/
|
|
170
136
|
name: string | undefined;
|
|
171
137
|
/**
|
|
172
|
-
* <p>
|
|
173
|
-
* The description of the billing view.
|
|
174
|
-
* </p>
|
|
138
|
+
* <p> The description of the billing view. </p>
|
|
175
139
|
* @public
|
|
176
140
|
*/
|
|
177
141
|
description?: string | undefined;
|
|
@@ -181,21 +145,17 @@ export interface CreateBillingViewRequest {
|
|
|
181
145
|
*/
|
|
182
146
|
sourceViews: string[] | undefined;
|
|
183
147
|
/**
|
|
184
|
-
* <p>
|
|
185
|
-
* See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>.
|
|
186
|
-
* </p>
|
|
148
|
+
* <p> See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>. </p>
|
|
187
149
|
* @public
|
|
188
150
|
*/
|
|
189
151
|
dataFilterExpression?: Expression | undefined;
|
|
190
152
|
/**
|
|
191
|
-
* <p>A unique, case-sensitive identifier you specify to ensure idempotency of the request. Idempotency ensures that an API request completes no more than one time. If the original request completes successfully, any subsequent retries complete successfully without performing any further actions with an idempotent request.
|
|
192
|
-
* </p>
|
|
153
|
+
* <p>A unique, case-sensitive identifier you specify to ensure idempotency of the request. Idempotency ensures that an API request completes no more than one time. If the original request completes successfully, any subsequent retries complete successfully without performing any further actions with an idempotent request. </p>
|
|
193
154
|
* @public
|
|
194
155
|
*/
|
|
195
156
|
clientToken?: string | undefined;
|
|
196
157
|
/**
|
|
197
|
-
* <p>A list of key value map specifying tags associated to the billing view being created.
|
|
198
|
-
* </p>
|
|
158
|
+
* <p>A list of key value map specifying tags associated to the billing view being created. </p>
|
|
199
159
|
* @public
|
|
200
160
|
*/
|
|
201
161
|
resourceTags?: ResourceTag[] | undefined;
|
|
@@ -205,23 +165,18 @@ export interface CreateBillingViewRequest {
|
|
|
205
165
|
*/
|
|
206
166
|
export interface CreateBillingViewResponse {
|
|
207
167
|
/**
|
|
208
|
-
* <p>
|
|
209
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
210
|
-
* </p>
|
|
168
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
211
169
|
* @public
|
|
212
170
|
*/
|
|
213
171
|
arn: string | undefined;
|
|
214
172
|
/**
|
|
215
|
-
* <p>
|
|
216
|
-
* The time when the billing view was created.
|
|
217
|
-
* </p>
|
|
173
|
+
* <p> The time when the billing view was created. </p>
|
|
218
174
|
* @public
|
|
219
175
|
*/
|
|
220
176
|
createdAt?: Date | undefined;
|
|
221
177
|
}
|
|
222
178
|
/**
|
|
223
|
-
* <p>The request processing failed because of an unknown error, exception, or failure.
|
|
224
|
-
* </p>
|
|
179
|
+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
|
|
225
180
|
* @public
|
|
226
181
|
*/
|
|
227
182
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -233,39 +188,29 @@ export declare class InternalServerException extends __BaseException {
|
|
|
233
188
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
234
189
|
}
|
|
235
190
|
/**
|
|
236
|
-
* <p>
|
|
237
|
-
* You've reached the limit of resources you can create, or exceeded the size of an individual resource.
|
|
238
|
-
* </p>
|
|
191
|
+
* <p> You've reached the limit of resources you can create, or exceeded the size of an individual resource. </p>
|
|
239
192
|
* @public
|
|
240
193
|
*/
|
|
241
194
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
242
195
|
readonly name: "ServiceQuotaExceededException";
|
|
243
196
|
readonly $fault: "client";
|
|
244
197
|
/**
|
|
245
|
-
* <p>
|
|
246
|
-
* The ID of the resource.
|
|
247
|
-
* </p>
|
|
198
|
+
* <p> The ID of the resource. </p>
|
|
248
199
|
* @public
|
|
249
200
|
*/
|
|
250
201
|
resourceId: string | undefined;
|
|
251
202
|
/**
|
|
252
|
-
* <p>
|
|
253
|
-
* The type of Amazon Web Services resource.
|
|
254
|
-
* </p>
|
|
203
|
+
* <p> The type of Amazon Web Services resource. </p>
|
|
255
204
|
* @public
|
|
256
205
|
*/
|
|
257
206
|
resourceType: string | undefined;
|
|
258
207
|
/**
|
|
259
|
-
* <p>
|
|
260
|
-
* The container for the <code>serviceCode</code>.
|
|
261
|
-
* </p>
|
|
208
|
+
* <p> The container for the <code>serviceCode</code>. </p>
|
|
262
209
|
* @public
|
|
263
210
|
*/
|
|
264
211
|
serviceCode: string | undefined;
|
|
265
212
|
/**
|
|
266
|
-
* <p>
|
|
267
|
-
* The container for the <code>quotaCode</code>.
|
|
268
|
-
* </p>
|
|
213
|
+
* <p> The container for the <code>quotaCode</code>. </p>
|
|
269
214
|
* @public
|
|
270
215
|
*/
|
|
271
216
|
quotaCode: string | undefined;
|
|
@@ -275,8 +220,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
275
220
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
276
221
|
}
|
|
277
222
|
/**
|
|
278
|
-
* <p>The request was denied due to request throttling.
|
|
279
|
-
* </p>
|
|
223
|
+
* <p>The request was denied due to request throttling. </p>
|
|
280
224
|
* @public
|
|
281
225
|
*/
|
|
282
226
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -288,8 +232,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
288
232
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
289
233
|
}
|
|
290
234
|
/**
|
|
291
|
-
* <p>The field's information of a request that resulted in an exception.
|
|
292
|
-
* </p>
|
|
235
|
+
* <p>The field's information of a request that resulted in an exception. </p>
|
|
293
236
|
* @public
|
|
294
237
|
*/
|
|
295
238
|
export interface ValidationExceptionField {
|
|
@@ -319,8 +262,7 @@ export declare const ValidationExceptionReason: {
|
|
|
319
262
|
*/
|
|
320
263
|
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
321
264
|
/**
|
|
322
|
-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
323
|
-
* </p>
|
|
265
|
+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
324
266
|
* @public
|
|
325
267
|
*/
|
|
326
268
|
export declare class ValidationException extends __BaseException {
|
|
@@ -346,9 +288,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
346
288
|
*/
|
|
347
289
|
export interface DeleteBillingViewRequest {
|
|
348
290
|
/**
|
|
349
|
-
* <p>
|
|
350
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
351
|
-
* </p>
|
|
291
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
352
292
|
* @public
|
|
353
293
|
*/
|
|
354
294
|
arn: string | undefined;
|
|
@@ -358,9 +298,7 @@ export interface DeleteBillingViewRequest {
|
|
|
358
298
|
*/
|
|
359
299
|
export interface DeleteBillingViewResponse {
|
|
360
300
|
/**
|
|
361
|
-
* <p>
|
|
362
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
363
|
-
* </p>
|
|
301
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
364
302
|
* @public
|
|
365
303
|
*/
|
|
366
304
|
arn: string | undefined;
|
|
@@ -370,9 +308,7 @@ export interface DeleteBillingViewResponse {
|
|
|
370
308
|
*/
|
|
371
309
|
export interface GetBillingViewRequest {
|
|
372
310
|
/**
|
|
373
|
-
* <p>
|
|
374
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
375
|
-
* </p>
|
|
311
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
376
312
|
* @public
|
|
377
313
|
*/
|
|
378
314
|
arn: string | undefined;
|
|
@@ -391,61 +327,47 @@ export declare const BillingViewType: {
|
|
|
391
327
|
*/
|
|
392
328
|
export type BillingViewType = (typeof BillingViewType)[keyof typeof BillingViewType];
|
|
393
329
|
/**
|
|
394
|
-
* <p>The metadata associated to the billing view.
|
|
395
|
-
* </p>
|
|
330
|
+
* <p>The metadata associated to the billing view. </p>
|
|
396
331
|
* @public
|
|
397
332
|
*/
|
|
398
333
|
export interface BillingViewElement {
|
|
399
334
|
/**
|
|
400
|
-
* <p>
|
|
401
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
402
|
-
* </p>
|
|
335
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
403
336
|
* @public
|
|
404
337
|
*/
|
|
405
338
|
arn?: string | undefined;
|
|
406
339
|
/**
|
|
407
|
-
* <p>
|
|
408
|
-
* A list of names of the billing view.
|
|
409
|
-
* </p>
|
|
340
|
+
* <p> The account name of the billing view. </p>
|
|
410
341
|
* @public
|
|
411
342
|
*/
|
|
412
343
|
name?: string | undefined;
|
|
413
344
|
/**
|
|
414
|
-
* <p>
|
|
415
|
-
* The description of the billing view.
|
|
416
|
-
* </p>
|
|
345
|
+
* <p> The description of the billing view. </p>
|
|
417
346
|
* @public
|
|
418
347
|
*/
|
|
419
348
|
description?: string | undefined;
|
|
420
349
|
/**
|
|
421
|
-
* <p>The type of billing group.
|
|
422
|
-
* </p>
|
|
350
|
+
* <p>The type of billing group. </p>
|
|
423
351
|
* @public
|
|
424
352
|
*/
|
|
425
353
|
billingViewType?: BillingViewType | undefined;
|
|
426
354
|
/**
|
|
427
|
-
* <p>
|
|
428
|
-
* The list of owners of the billing view.
|
|
429
|
-
* </p>
|
|
355
|
+
* <p>The account owner of the billing view. </p>
|
|
430
356
|
* @public
|
|
431
357
|
*/
|
|
432
358
|
ownerAccountId?: string | undefined;
|
|
433
359
|
/**
|
|
434
|
-
* <p>
|
|
435
|
-
* See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>.
|
|
436
|
-
* </p>
|
|
360
|
+
* <p> See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>. </p>
|
|
437
361
|
* @public
|
|
438
362
|
*/
|
|
439
363
|
dataFilterExpression?: Expression | undefined;
|
|
440
364
|
/**
|
|
441
|
-
* <p>The time when the billing view was created.
|
|
442
|
-
* </p>
|
|
365
|
+
* <p>The time when the billing view was created. </p>
|
|
443
366
|
* @public
|
|
444
367
|
*/
|
|
445
368
|
createdAt?: Date | undefined;
|
|
446
369
|
/**
|
|
447
|
-
* <p>The time when the billing view was last updated.
|
|
448
|
-
* </p>
|
|
370
|
+
* <p>The time when the billing view was last updated. </p>
|
|
449
371
|
* @public
|
|
450
372
|
*/
|
|
451
373
|
updatedAt?: Date | undefined;
|
|
@@ -455,32 +377,25 @@ export interface BillingViewElement {
|
|
|
455
377
|
*/
|
|
456
378
|
export interface GetBillingViewResponse {
|
|
457
379
|
/**
|
|
458
|
-
* <p>The billing view element associated with the specified ARN.
|
|
459
|
-
* </p>
|
|
380
|
+
* <p>The billing view element associated with the specified ARN. </p>
|
|
460
381
|
* @public
|
|
461
382
|
*/
|
|
462
383
|
billingView: BillingViewElement | undefined;
|
|
463
384
|
}
|
|
464
385
|
/**
|
|
465
|
-
* <p>
|
|
466
|
-
* The specified ARN in the request doesn't exist.
|
|
467
|
-
* </p>
|
|
386
|
+
* <p> The specified ARN in the request doesn't exist. </p>
|
|
468
387
|
* @public
|
|
469
388
|
*/
|
|
470
389
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
471
390
|
readonly name: "ResourceNotFoundException";
|
|
472
391
|
readonly $fault: "client";
|
|
473
392
|
/**
|
|
474
|
-
* <p>
|
|
475
|
-
* Value is a list of resource IDs that were not found.
|
|
476
|
-
* </p>
|
|
393
|
+
* <p> Value is a list of resource IDs that were not found. </p>
|
|
477
394
|
* @public
|
|
478
395
|
*/
|
|
479
396
|
resourceId: string | undefined;
|
|
480
397
|
/**
|
|
481
|
-
* <p>
|
|
482
|
-
* Value is the type of resource that was not found.
|
|
483
|
-
* </p>
|
|
398
|
+
* <p> Value is the type of resource that was not found. </p>
|
|
484
399
|
* @public
|
|
485
400
|
*/
|
|
486
401
|
resourceType: string | undefined;
|
|
@@ -494,8 +409,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
494
409
|
*/
|
|
495
410
|
export interface GetResourcePolicyRequest {
|
|
496
411
|
/**
|
|
497
|
-
* <p>The Amazon Resource Name (ARN) of the billing view resource to which the policy is attached to.
|
|
498
|
-
* </p>
|
|
412
|
+
* <p>The Amazon Resource Name (ARN) of the billing view resource to which the policy is attached to. </p>
|
|
499
413
|
* @public
|
|
500
414
|
*/
|
|
501
415
|
resourceArn: string | undefined;
|
|
@@ -505,14 +419,12 @@ export interface GetResourcePolicyRequest {
|
|
|
505
419
|
*/
|
|
506
420
|
export interface GetResourcePolicyResponse {
|
|
507
421
|
/**
|
|
508
|
-
* <p>The Amazon Resource Name (ARN) of the billing view resource to which the policy is attached to.
|
|
509
|
-
* </p>
|
|
422
|
+
* <p>The Amazon Resource Name (ARN) of the billing view resource to which the policy is attached to. </p>
|
|
510
423
|
* @public
|
|
511
424
|
*/
|
|
512
425
|
resourceArn: string | undefined;
|
|
513
426
|
/**
|
|
514
|
-
* <p>The resource-based policy document attached to the resource in <code>JSON</code> format.
|
|
515
|
-
* </p>
|
|
427
|
+
* <p>The resource-based policy document attached to the resource in <code>JSON</code> format. </p>
|
|
516
428
|
* @public
|
|
517
429
|
*/
|
|
518
430
|
policy?: string | undefined;
|
|
@@ -522,15 +434,12 @@ export interface GetResourcePolicyResponse {
|
|
|
522
434
|
*/
|
|
523
435
|
export interface ListBillingViewsRequest {
|
|
524
436
|
/**
|
|
525
|
-
* <p>
|
|
526
|
-
* The time range for the billing views listed. <code>PRIMARY</code> billing view is always listed. <code>BILLING_GROUP</code> billing views are listed for time ranges when the associated billing group resource in Billing Conductor is active. The time range must be within one calendar month.
|
|
527
|
-
* </p>
|
|
437
|
+
* <p> The time range for the billing views listed. <code>PRIMARY</code> billing view is always listed. <code>BILLING_GROUP</code> billing views are listed for time ranges when the associated billing group resource in Billing Conductor is active. The time range must be within one calendar month. </p>
|
|
528
438
|
* @public
|
|
529
439
|
*/
|
|
530
440
|
activeTimeRange?: ActiveTimeRange | undefined;
|
|
531
441
|
/**
|
|
532
|
-
* <p>The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
533
|
-
* </p>
|
|
442
|
+
* <p>The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
534
443
|
* @public
|
|
535
444
|
*/
|
|
536
445
|
arns?: string[] | undefined;
|
|
@@ -540,15 +449,12 @@ export interface ListBillingViewsRequest {
|
|
|
540
449
|
*/
|
|
541
450
|
billingViewTypes?: BillingViewType[] | undefined;
|
|
542
451
|
/**
|
|
543
|
-
* <p>
|
|
544
|
-
* The list of owners of the billing view.
|
|
545
|
-
* </p>
|
|
452
|
+
* <p> The list of owners of the billing view. </p>
|
|
546
453
|
* @public
|
|
547
454
|
*/
|
|
548
455
|
ownerAccountId?: string | undefined;
|
|
549
456
|
/**
|
|
550
|
-
* <p>The maximum number of billing views to retrieve. Default is 100.
|
|
551
|
-
* </p>
|
|
457
|
+
* <p>The maximum number of billing views to retrieve. Default is 100. </p>
|
|
552
458
|
* @public
|
|
553
459
|
*/
|
|
554
460
|
maxResults?: number | undefined;
|
|
@@ -564,29 +470,22 @@ export interface ListBillingViewsRequest {
|
|
|
564
470
|
*/
|
|
565
471
|
export interface BillingViewListElement {
|
|
566
472
|
/**
|
|
567
|
-
* <p>The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
568
|
-
* </p>
|
|
473
|
+
* <p>The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
569
474
|
* @public
|
|
570
475
|
*/
|
|
571
476
|
arn?: string | undefined;
|
|
572
477
|
/**
|
|
573
|
-
* <p>
|
|
574
|
-
* A list of names of the Billing view.
|
|
575
|
-
* </p>
|
|
478
|
+
* <p> A list of names of the Billing view. </p>
|
|
576
479
|
* @public
|
|
577
480
|
*/
|
|
578
481
|
name?: string | undefined;
|
|
579
482
|
/**
|
|
580
|
-
* <p>
|
|
581
|
-
* The description of the billing view.
|
|
582
|
-
* </p>
|
|
483
|
+
* <p> The description of the billing view. </p>
|
|
583
484
|
* @public
|
|
584
485
|
*/
|
|
585
486
|
description?: string | undefined;
|
|
586
487
|
/**
|
|
587
|
-
* <p>
|
|
588
|
-
* The list of owners of the Billing view.
|
|
589
|
-
* </p>
|
|
488
|
+
* <p> The list of owners of the Billing view. </p>
|
|
590
489
|
* @public
|
|
591
490
|
*/
|
|
592
491
|
ownerAccountId?: string | undefined;
|
|
@@ -606,8 +505,7 @@ export interface ListBillingViewsResponse {
|
|
|
606
505
|
*/
|
|
607
506
|
billingViews: BillingViewListElement[] | undefined;
|
|
608
507
|
/**
|
|
609
|
-
* <p>The pagination token to use on subsequent calls to list billing views.
|
|
610
|
-
* </p>
|
|
508
|
+
* <p>The pagination token to use on subsequent calls to list billing views. </p>
|
|
611
509
|
* @public
|
|
612
510
|
*/
|
|
613
511
|
nextToken?: string | undefined;
|
|
@@ -617,23 +515,17 @@ export interface ListBillingViewsResponse {
|
|
|
617
515
|
*/
|
|
618
516
|
export interface ListSourceViewsForBillingViewRequest {
|
|
619
517
|
/**
|
|
620
|
-
* <p>
|
|
621
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
622
|
-
* </p>
|
|
518
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
623
519
|
* @public
|
|
624
520
|
*/
|
|
625
521
|
arn: string | undefined;
|
|
626
522
|
/**
|
|
627
|
-
* <p>
|
|
628
|
-
* The number of entries a paginated response contains.
|
|
629
|
-
* </p>
|
|
523
|
+
* <p> The number of entries a paginated response contains. </p>
|
|
630
524
|
* @public
|
|
631
525
|
*/
|
|
632
526
|
maxResults?: number | undefined;
|
|
633
527
|
/**
|
|
634
|
-
* <p>
|
|
635
|
-
* The pagination token that is used on subsequent calls to list billing views.
|
|
636
|
-
* </p>
|
|
528
|
+
* <p> The pagination token that is used on subsequent calls to list billing views. </p>
|
|
637
529
|
* @public
|
|
638
530
|
*/
|
|
639
531
|
nextToken?: string | undefined;
|
|
@@ -643,15 +535,12 @@ export interface ListSourceViewsForBillingViewRequest {
|
|
|
643
535
|
*/
|
|
644
536
|
export interface ListSourceViewsForBillingViewResponse {
|
|
645
537
|
/**
|
|
646
|
-
* <p>A list of billing views used as the data source for the custom billing view.
|
|
647
|
-
* </p>
|
|
538
|
+
* <p>A list of billing views used as the data source for the custom billing view. </p>
|
|
648
539
|
* @public
|
|
649
540
|
*/
|
|
650
541
|
sourceViews: string[] | undefined;
|
|
651
542
|
/**
|
|
652
|
-
* <p>
|
|
653
|
-
* The pagination token that is used on subsequent calls to list billing views.
|
|
654
|
-
* </p>
|
|
543
|
+
* <p> The pagination token that is used on subsequent calls to list billing views. </p>
|
|
655
544
|
* @public
|
|
656
545
|
*/
|
|
657
546
|
nextToken?: string | undefined;
|
|
@@ -661,9 +550,7 @@ export interface ListSourceViewsForBillingViewResponse {
|
|
|
661
550
|
*/
|
|
662
551
|
export interface ListTagsForResourceRequest {
|
|
663
552
|
/**
|
|
664
|
-
* <p>
|
|
665
|
-
* The Amazon Resource Name (ARN) of the resource.
|
|
666
|
-
* </p>
|
|
553
|
+
* <p> The Amazon Resource Name (ARN) of the resource. </p>
|
|
667
554
|
* @public
|
|
668
555
|
*/
|
|
669
556
|
resourceArn: string | undefined;
|
|
@@ -673,9 +560,7 @@ export interface ListTagsForResourceRequest {
|
|
|
673
560
|
*/
|
|
674
561
|
export interface ListTagsForResourceResponse {
|
|
675
562
|
/**
|
|
676
|
-
* <p>
|
|
677
|
-
* A list of tag key value pairs that are associated with the resource.
|
|
678
|
-
* </p>
|
|
563
|
+
* <p> A list of tag key value pairs that are associated with the resource. </p>
|
|
679
564
|
* @public
|
|
680
565
|
*/
|
|
681
566
|
resourceTags?: ResourceTag[] | undefined;
|
|
@@ -685,16 +570,12 @@ export interface ListTagsForResourceResponse {
|
|
|
685
570
|
*/
|
|
686
571
|
export interface TagResourceRequest {
|
|
687
572
|
/**
|
|
688
|
-
* <p>
|
|
689
|
-
* The Amazon Resource Name (ARN) of the resource.
|
|
690
|
-
* </p>
|
|
573
|
+
* <p> The Amazon Resource Name (ARN) of the resource. </p>
|
|
691
574
|
* @public
|
|
692
575
|
*/
|
|
693
576
|
resourceArn: string | undefined;
|
|
694
577
|
/**
|
|
695
|
-
* <p>
|
|
696
|
-
* A list of tag key value pairs that are associated with the resource.
|
|
697
|
-
* </p>
|
|
578
|
+
* <p> A list of tag key value pairs that are associated with the resource. </p>
|
|
698
579
|
* @public
|
|
699
580
|
*/
|
|
700
581
|
resourceTags: ResourceTag[] | undefined;
|
|
@@ -709,16 +590,12 @@ export interface TagResourceResponse {
|
|
|
709
590
|
*/
|
|
710
591
|
export interface UntagResourceRequest {
|
|
711
592
|
/**
|
|
712
|
-
* <p>
|
|
713
|
-
* The Amazon Resource Name (ARN) of the resource.
|
|
714
|
-
* </p>
|
|
593
|
+
* <p> The Amazon Resource Name (ARN) of the resource. </p>
|
|
715
594
|
* @public
|
|
716
595
|
*/
|
|
717
596
|
resourceArn: string | undefined;
|
|
718
597
|
/**
|
|
719
|
-
* <p>
|
|
720
|
-
* A list of tag key value pairs that are associated with the resource.
|
|
721
|
-
* </p>
|
|
598
|
+
* <p> A list of tag key value pairs that are associated with the resource. </p>
|
|
722
599
|
* @public
|
|
723
600
|
*/
|
|
724
601
|
resourceTagKeys: string[] | undefined;
|
|
@@ -733,29 +610,22 @@ export interface UntagResourceResponse {
|
|
|
733
610
|
*/
|
|
734
611
|
export interface UpdateBillingViewRequest {
|
|
735
612
|
/**
|
|
736
|
-
* <p>
|
|
737
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
738
|
-
* </p>
|
|
613
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
739
614
|
* @public
|
|
740
615
|
*/
|
|
741
616
|
arn: string | undefined;
|
|
742
617
|
/**
|
|
743
|
-
* <p>
|
|
744
|
-
* The name of the billing view.
|
|
745
|
-
* </p>
|
|
618
|
+
* <p> The name of the billing view. </p>
|
|
746
619
|
* @public
|
|
747
620
|
*/
|
|
748
621
|
name?: string | undefined;
|
|
749
622
|
/**
|
|
750
|
-
* <p>
|
|
751
|
-
* The description of the billing view.
|
|
752
|
-
* </p>
|
|
623
|
+
* <p> The description of the billing view. </p>
|
|
753
624
|
* @public
|
|
754
625
|
*/
|
|
755
626
|
description?: string | undefined;
|
|
756
627
|
/**
|
|
757
|
-
* <p>See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/
|
|
758
|
-
* </p>
|
|
628
|
+
* <p>See <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html">Expression</a>. Billing view only supports <code>LINKED_ACCOUNT</code> and <code>Tags</code>. </p>
|
|
759
629
|
* @public
|
|
760
630
|
*/
|
|
761
631
|
dataFilterExpression?: Expression | undefined;
|
|
@@ -765,16 +635,12 @@ export interface UpdateBillingViewRequest {
|
|
|
765
635
|
*/
|
|
766
636
|
export interface UpdateBillingViewResponse {
|
|
767
637
|
/**
|
|
768
|
-
* <p>
|
|
769
|
-
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
|
|
770
|
-
* </p>
|
|
638
|
+
* <p> The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view. </p>
|
|
771
639
|
* @public
|
|
772
640
|
*/
|
|
773
641
|
arn: string | undefined;
|
|
774
642
|
/**
|
|
775
|
-
* <p>
|
|
776
|
-
* The time when the billing view was last updated.
|
|
777
|
-
* </p>
|
|
643
|
+
* <p> The time when the billing view was last updated. </p>
|
|
778
644
|
* @public
|
|
779
645
|
*/
|
|
780
646
|
updatedAt?: Date | undefined;
|