@aws-sdk/client-billingconductor 3.168.0 → 3.170.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Billingconductor.d.ts +574 -155
  3. package/dist-types/ts3.4/BillingconductorClient.d.ts +310 -103
  4. package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/AssociatePricingRulesCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateBillingGroupCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/CreateCustomLineItemCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/CreatePricingPlanCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/CreatePricingRuleCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteBillingGroupCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/DeleteCustomLineItemCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DeletePricingPlanCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/DeletePricingRuleCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DisassociatePricingRulesCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListAccountAssociationsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListBillingGroupCostReportsCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListBillingGroupsCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListCustomLineItemsCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/ListPricingPlansCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/ListPricingRulesCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/UpdateBillingGroupCommand.d.ts +38 -17
  31. package/dist-types/ts3.4/commands/UpdateCustomLineItemCommand.d.ts +41 -17
  32. package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/UpdatePricingRuleCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/index.d.ts +30 -30
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  36. package/dist-types/ts3.4/index.d.ts +6 -6
  37. package/dist-types/ts3.4/models/BillingconductorServiceException.d.ts +8 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1176 -1074
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  41. package/dist-types/ts3.4/pagination/ListAccountAssociationsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListBillingGroupCostReportsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListBillingGroupsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListCustomLineItemsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListPricingPlansPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/ListPricingRulesPaginator.d.ts +11 -4
  49. package/dist-types/ts3.4/pagination/ListResourcesAssociatedToCustomLineItemPaginator.d.ts +11 -4
  50. package/dist-types/ts3.4/pagination/index.d.ts +10 -10
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  56. package/package.json +34 -34
@@ -1,1074 +1,1176 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { BillingconductorServiceException as __BaseException } from "./BillingconductorServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message: string | undefined;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
-
12
- export interface AccountAssociationsListElement {
13
-
14
- AccountId?: string;
15
-
16
- BillingGroupArn?: string;
17
-
18
- AccountName?: string;
19
-
20
- AccountEmail?: string;
21
- }
22
-
23
- export interface AccountGrouping {
24
-
25
- LinkedAccountIds: string[] | undefined;
26
- }
27
- export interface AssociateAccountsInput {
28
-
29
- Arn: string | undefined;
30
-
31
- AccountIds: string[] | undefined;
32
- }
33
- export interface AssociateAccountsOutput {
34
-
35
- Arn?: string;
36
- }
37
-
38
- export declare class ConflictException extends __BaseException {
39
- readonly name: "ConflictException";
40
- readonly $fault: "client";
41
- Message: string | undefined;
42
-
43
- ResourceId: string | undefined;
44
-
45
- ResourceType: string | undefined;
46
-
47
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
48
- }
49
-
50
- export declare class InternalServerException extends __BaseException {
51
- readonly name: "InternalServerException";
52
- readonly $fault: "server";
53
- Message: string | undefined;
54
-
55
- RetryAfterSeconds?: number;
56
-
57
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
58
- }
59
-
60
- export declare class ResourceNotFoundException extends __BaseException {
61
- readonly name: "ResourceNotFoundException";
62
- readonly $fault: "client";
63
- Message: string | undefined;
64
-
65
- ResourceId: string | undefined;
66
-
67
- ResourceType: string | undefined;
68
-
69
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
70
- }
71
-
72
- export declare class ServiceLimitExceededException extends __BaseException {
73
- readonly name: "ServiceLimitExceededException";
74
- readonly $fault: "client";
75
- Message: string | undefined;
76
-
77
- ResourceId?: string;
78
-
79
- ResourceType?: string;
80
-
81
- LimitCode: string | undefined;
82
-
83
- ServiceCode: string | undefined;
84
-
85
- constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
86
- }
87
-
88
- export declare class ThrottlingException extends __BaseException {
89
- readonly name: "ThrottlingException";
90
- readonly $fault: "client";
91
- Message: string | undefined;
92
-
93
- RetryAfterSeconds?: number;
94
-
95
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
96
- }
97
-
98
- export interface ValidationExceptionField {
99
-
100
- Name: string | undefined;
101
-
102
- Message: string | undefined;
103
- }
104
- export declare enum ValidationExceptionReason {
105
- ACCOUNTS_ALREADY_ASSOCIATED = "ACCOUNTS_ALREADY_ASSOCIATED",
106
- ACCOUNTS_NOT_ASSOCIATED = "ACCOUNTS_NOT_ASSOCIATED",
107
- CANNOT_PARSE = "CANNOT_PARSE",
108
- DUPLICATE_ACCOUNT = "DUPLICATE_ACCOUNT",
109
- DUPLICATE_PRICINGRULE_ARNS = "DUPLICATE_PRICINGRULE_ARNS",
110
- FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
111
- ILLEGAL_ACCOUNTS = "ILLEGAL_ACCOUNTS",
112
- ILLEGAL_BILLING_PERIOD = "ILLEGAL_BILLING_PERIOD",
113
- ILLEGAL_BILLING_PERIOD_RANGE = "ILLEGAL_BILLING_PERIOD_RANGE",
114
- ILLEGAL_CHARGE_DETAILS = "ILLEGAL_CHARGE_DETAILS",
115
- ILLEGAL_CUSTOMLINEITEM = "ILLEGAL_CUSTOMLINEITEM",
116
- ILLEGAL_CUSTOMLINEITEM_MODIFICATION = "ILLEGAL_CUSTOMLINEITEM_MODIFICATION",
117
- ILLEGAL_CUSTOMLINEITEM_UPDATE = "ILLEGAL_CUSTOMLINEITEM_UPDATE",
118
- ILLEGAL_EXPRESSION = "ILLEGAL_EXPRESSION",
119
- ILLEGAL_PRIMARY_ACCOUNT = "ILLEGAL_PRIMARY_ACCOUNT",
120
- ILLEGAL_RESOURCE_ARNS = "ILLEGAL_RESOURCE_ARNS",
121
- ILLEGAL_SCOPE = "ILLEGAL_SCOPE",
122
- ILLEGAL_SERVICE = "ILLEGAL_SERVICE",
123
- ILLEGAL_UPDATE_CHARGE_DETAILS = "ILLEGAL_UPDATE_CHARGE_DETAILS",
124
- INVALID_ARN = "INVALID_ARN",
125
- INVALID_BILLINGVIEW_ARN = "INVALID_BILLINGVIEW_ARN",
126
- INVALID_BILLING_GROUP_STATUS = "INVALID_BILLING_GROUP_STATUS",
127
- INVALID_TIME_RANGE = "INVALID_TIME_RANGE",
128
- MISMATCHED_BILLINGGROUP_ARN = "MISMATCHED_BILLINGGROUP_ARN",
129
- MISMATCHED_BILLINGVIEW_ARN = "MISMATCHED_BILLINGVIEW_ARN",
130
- MISMATCHED_CUSTOMLINEITEM_ARN = "MISMATCHED_CUSTOMLINEITEM_ARN",
131
- MISMATCHED_PRICINGPLAN_ARN = "MISMATCHED_PRICINGPLAN_ARN",
132
- MISMATCHED_PRICINGRULE_ARN = "MISMATCHED_PRICINGRULE_ARN",
133
- MISSING_BILLINGGROUP = "MISSING_BILLINGGROUP",
134
- MISSING_CUSTOMLINEITEM = "MISSING_CUSTOMLINEITEM",
135
- MISSING_LINKED_ACCOUNT_IDS = "MISSING_LINKED_ACCOUNT_IDS",
136
- MISSING_PRICINGPLAN = "MISSING_PRICINGPLAN",
137
- MISSING_PRICING_PLAN_ARN = "MISSING_PRICING_PLAN_ARN",
138
- MULTIPLE_LINKED_ACCOUNT_IDS = "MULTIPLE_LINKED_ACCOUNT_IDS",
139
- MULTIPLE_PRICING_PLAN_ARN = "MULTIPLE_PRICING_PLAN_ARN",
140
- OTHER = "OTHER",
141
- PRICINGRULES_ALREADY_ASSOCIATED = "PRICINGRULES_ALREADY_ASSOCIATED",
142
- PRICINGRULES_NOT_ASSOCIATED = "PRICINGRULES_NOT_ASSOCIATED",
143
- PRICINGRULES_NOT_EXIST = "PRICINGRULES_NOT_EXIST",
144
- PRIMARY_CANNOT_DISASSOCIATE = "PRIMARY_CANNOT_DISASSOCIATE",
145
- PRIMARY_NOT_ASSOCIATED = "PRIMARY_NOT_ASSOCIATED",
146
- TOO_MANY_ACCOUNTS_IN_REQUEST = "TOO_MANY_ACCOUNTS_IN_REQUEST",
147
- TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST = "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST",
148
- UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
149
- }
150
-
151
- export declare class ValidationException extends __BaseException {
152
- readonly name: "ValidationException";
153
- readonly $fault: "client";
154
- Message: string | undefined;
155
-
156
- Reason?: ValidationExceptionReason | string;
157
-
158
- Fields?: ValidationExceptionField[];
159
-
160
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
161
- }
162
- export interface AssociatePricingRulesInput {
163
-
164
- Arn: string | undefined;
165
-
166
- PricingRuleArns: string[] | undefined;
167
- }
168
- export interface AssociatePricingRulesOutput {
169
-
170
- Arn?: string;
171
- }
172
- export declare enum AssociateResourceErrorReason {
173
- ILLEGAL_CUSTOMLINEITEM = "ILLEGAL_CUSTOMLINEITEM",
174
- INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
175
- INVALID_ARN = "INVALID_ARN",
176
- SERVICE_LIMIT_EXCEEDED = "SERVICE_LIMIT_EXCEEDED"
177
- }
178
-
179
- export interface AssociateResourceError {
180
-
181
- Message?: string;
182
-
183
- Reason?: AssociateResourceErrorReason | string;
184
- }
185
-
186
- export interface AssociateResourceResponseElement {
187
-
188
- Arn?: string;
189
-
190
- Error?: AssociateResourceError;
191
- }
192
-
193
- export interface ComputationPreference {
194
-
195
- PricingPlanArn: string | undefined;
196
- }
197
- export interface CreateBillingGroupInput {
198
-
199
- ClientToken?: string;
200
-
201
- Name: string | undefined;
202
-
203
- AccountGrouping: AccountGrouping | undefined;
204
-
205
- ComputationPreference: ComputationPreference | undefined;
206
-
207
- PrimaryAccountId?: string;
208
-
209
- Description?: string;
210
-
211
- Tags?: Record<string, string>;
212
- }
213
- export interface CreateBillingGroupOutput {
214
-
215
- Arn?: string;
216
- }
217
- export interface DeleteBillingGroupInput {
218
-
219
- Arn: string | undefined;
220
- }
221
- export interface DeleteBillingGroupOutput {
222
-
223
- Arn?: string;
224
- }
225
- export interface DisassociateAccountsInput {
226
-
227
- Arn: string | undefined;
228
-
229
- AccountIds: string[] | undefined;
230
- }
231
- export interface DisassociateAccountsOutput {
232
-
233
- Arn?: string;
234
- }
235
-
236
- export interface ListBillingGroupsFilter {
237
-
238
- Arns?: string[];
239
-
240
- PricingPlan?: string;
241
- }
242
- export interface ListBillingGroupsInput {
243
-
244
- BillingPeriod?: string;
245
-
246
- MaxResults?: number;
247
-
248
- NextToken?: string;
249
-
250
- Filters?: ListBillingGroupsFilter;
251
- }
252
- export declare enum BillingGroupStatus {
253
- ACTIVE = "ACTIVE",
254
- PRIMARY_ACCOUNT_MISSING = "PRIMARY_ACCOUNT_MISSING"
255
- }
256
-
257
- export interface BillingGroupListElement {
258
-
259
- Name?: string;
260
-
261
- Arn?: string;
262
-
263
- Description?: string;
264
-
265
- PrimaryAccountId?: string;
266
-
267
- ComputationPreference?: ComputationPreference;
268
-
269
- Size?: number;
270
-
271
- CreationTime?: number;
272
-
273
- LastModifiedTime?: number;
274
-
275
- Status?: BillingGroupStatus | string;
276
-
277
- StatusReason?: string;
278
- }
279
- export interface ListBillingGroupsOutput {
280
-
281
- BillingGroups?: BillingGroupListElement[];
282
-
283
- NextToken?: string;
284
- }
285
- export interface UpdateBillingGroupInput {
286
-
287
- Arn: string | undefined;
288
-
289
- Name?: string;
290
-
291
- Status?: BillingGroupStatus | string;
292
-
293
- ComputationPreference?: ComputationPreference;
294
-
295
- Description?: string;
296
- }
297
- export interface UpdateBillingGroupOutput {
298
-
299
- Arn?: string;
300
-
301
- Name?: string;
302
-
303
- Description?: string;
304
-
305
- PrimaryAccountId?: string;
306
-
307
- PricingPlanArn?: string;
308
-
309
- Size?: number;
310
-
311
- LastModifiedTime?: number;
312
-
313
- Status?: BillingGroupStatus | string;
314
-
315
- StatusReason?: string;
316
- }
317
-
318
- export interface CustomLineItemBillingPeriodRange {
319
-
320
- InclusiveStartBillingPeriod: string | undefined;
321
-
322
- ExclusiveEndBillingPeriod: string | undefined;
323
- }
324
- export interface BatchAssociateResourcesToCustomLineItemInput {
325
-
326
- TargetArn: string | undefined;
327
-
328
- ResourceArns: string[] | undefined;
329
-
330
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
331
- }
332
- export interface BatchAssociateResourcesToCustomLineItemOutput {
333
-
334
- SuccessfullyAssociatedResources?: AssociateResourceResponseElement[];
335
-
336
- FailedAssociatedResources?: AssociateResourceResponseElement[];
337
- }
338
- export interface BatchDisassociateResourcesFromCustomLineItemInput {
339
-
340
- TargetArn: string | undefined;
341
-
342
- ResourceArns: string[] | undefined;
343
-
344
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
345
- }
346
-
347
- export interface DisassociateResourceResponseElement {
348
-
349
- Arn?: string;
350
-
351
- Error?: AssociateResourceError;
352
- }
353
- export interface BatchDisassociateResourcesFromCustomLineItemOutput {
354
-
355
- SuccessfullyDisassociatedResources?: DisassociateResourceResponseElement[];
356
-
357
- FailedDisassociatedResources?: DisassociateResourceResponseElement[];
358
- }
359
-
360
- export interface CustomLineItemFlatChargeDetails {
361
-
362
- ChargeValue: number | undefined;
363
- }
364
-
365
- export interface CustomLineItemPercentageChargeDetails {
366
-
367
- PercentageValue: number | undefined;
368
-
369
- AssociatedValues?: string[];
370
- }
371
- export declare enum CustomLineItemType {
372
- CREDIT = "CREDIT",
373
- FEE = "FEE"
374
- }
375
-
376
- export interface CustomLineItemChargeDetails {
377
-
378
- Flat?: CustomLineItemFlatChargeDetails;
379
-
380
- Percentage?: CustomLineItemPercentageChargeDetails;
381
-
382
- Type: CustomLineItemType | string | undefined;
383
- }
384
- export interface CreateCustomLineItemInput {
385
-
386
- ClientToken?: string;
387
-
388
- Name: string | undefined;
389
-
390
- Description: string | undefined;
391
-
392
- BillingGroupArn: string | undefined;
393
-
394
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
395
-
396
- Tags?: Record<string, string>;
397
-
398
- ChargeDetails: CustomLineItemChargeDetails | undefined;
399
- }
400
- export interface CreateCustomLineItemOutput {
401
-
402
- Arn?: string;
403
- }
404
- export interface DeleteCustomLineItemInput {
405
-
406
- Arn: string | undefined;
407
-
408
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
409
- }
410
- export interface DeleteCustomLineItemOutput {
411
-
412
- Arn?: string;
413
- }
414
-
415
- export interface ListCustomLineItemsFilter {
416
-
417
- Names?: string[];
418
-
419
- BillingGroups?: string[];
420
-
421
- Arns?: string[];
422
- }
423
- export interface ListCustomLineItemsInput {
424
-
425
- BillingPeriod?: string;
426
-
427
- MaxResults?: number;
428
-
429
- NextToken?: string;
430
-
431
- Filters?: ListCustomLineItemsFilter;
432
- }
433
-
434
- export interface ListCustomLineItemFlatChargeDetails {
435
-
436
- ChargeValue: number | undefined;
437
- }
438
-
439
- export interface ListCustomLineItemPercentageChargeDetails {
440
-
441
- PercentageValue: number | undefined;
442
- }
443
-
444
- export interface ListCustomLineItemChargeDetails {
445
-
446
- Flat?: ListCustomLineItemFlatChargeDetails;
447
-
448
- Percentage?: ListCustomLineItemPercentageChargeDetails;
449
-
450
- Type: CustomLineItemType | string | undefined;
451
- }
452
- export declare enum CurrencyCode {
453
- CNY = "CNY",
454
- USD = "USD"
455
- }
456
-
457
- export interface CustomLineItemListElement {
458
-
459
- Arn?: string;
460
-
461
- Name?: string;
462
-
463
- ChargeDetails?: ListCustomLineItemChargeDetails;
464
-
465
- CurrencyCode?: CurrencyCode | string;
466
-
467
- Description?: string;
468
-
469
- ProductCode?: string;
470
-
471
- BillingGroupArn?: string;
472
-
473
- CreationTime?: number;
474
-
475
- LastModifiedTime?: number;
476
-
477
- AssociationSize?: number;
478
- }
479
- export interface ListCustomLineItemsOutput {
480
-
481
- CustomLineItems?: CustomLineItemListElement[];
482
-
483
- NextToken?: string;
484
- }
485
- export declare enum CustomLineItemRelationship {
486
- CHILD = "CHILD",
487
- PARENT = "PARENT"
488
- }
489
-
490
- export interface ListResourcesAssociatedToCustomLineItemFilter {
491
-
492
- Relationship?: CustomLineItemRelationship | string;
493
- }
494
- export interface ListResourcesAssociatedToCustomLineItemInput {
495
-
496
- BillingPeriod?: string;
497
-
498
- Arn: string | undefined;
499
-
500
- MaxResults?: number;
501
-
502
- NextToken?: string;
503
-
504
- Filters?: ListResourcesAssociatedToCustomLineItemFilter;
505
- }
506
-
507
- export interface ListResourcesAssociatedToCustomLineItemResponseElement {
508
-
509
- Arn?: string;
510
-
511
- Relationship?: CustomLineItemRelationship | string;
512
- }
513
- export interface ListResourcesAssociatedToCustomLineItemOutput {
514
-
515
- Arn?: string;
516
-
517
- AssociatedResources?: ListResourcesAssociatedToCustomLineItemResponseElement[];
518
-
519
- NextToken?: string;
520
- }
521
-
522
- export interface UpdateCustomLineItemFlatChargeDetails {
523
-
524
- ChargeValue: number | undefined;
525
- }
526
-
527
- export interface UpdateCustomLineItemPercentageChargeDetails {
528
-
529
- PercentageValue: number | undefined;
530
- }
531
-
532
- export interface UpdateCustomLineItemChargeDetails {
533
-
534
- Flat?: UpdateCustomLineItemFlatChargeDetails;
535
-
536
- Percentage?: UpdateCustomLineItemPercentageChargeDetails;
537
- }
538
- export interface UpdateCustomLineItemInput {
539
-
540
- Arn: string | undefined;
541
-
542
- Name?: string;
543
-
544
- Description?: string;
545
-
546
- ChargeDetails?: UpdateCustomLineItemChargeDetails;
547
-
548
- BillingPeriodRange?: CustomLineItemBillingPeriodRange;
549
- }
550
- export interface UpdateCustomLineItemOutput {
551
-
552
- Arn?: string;
553
-
554
- BillingGroupArn?: string;
555
-
556
- Name?: string;
557
-
558
- Description?: string;
559
-
560
- ChargeDetails?: ListCustomLineItemChargeDetails;
561
-
562
- LastModifiedTime?: number;
563
-
564
- AssociationSize?: number;
565
- }
566
-
567
- export interface ListAccountAssociationsFilter {
568
-
569
- Association?: string;
570
-
571
- AccountId?: string;
572
- }
573
- export interface ListAccountAssociationsInput {
574
-
575
- BillingPeriod?: string;
576
-
577
- Filters?: ListAccountAssociationsFilter;
578
-
579
- NextToken?: string;
580
- }
581
- export interface ListAccountAssociationsOutput {
582
-
583
- LinkedAccounts?: AccountAssociationsListElement[];
584
-
585
- NextToken?: string;
586
- }
587
-
588
- export interface ListBillingGroupCostReportsFilter {
589
-
590
- BillingGroupArns?: string[];
591
- }
592
- export interface ListBillingGroupCostReportsInput {
593
-
594
- BillingPeriod?: string;
595
-
596
- MaxResults?: number;
597
-
598
- NextToken?: string;
599
-
600
- Filters?: ListBillingGroupCostReportsFilter;
601
- }
602
-
603
- export interface BillingGroupCostReportElement {
604
-
605
- Arn?: string;
606
-
607
- AWSCost?: string;
608
-
609
- ProformaCost?: string;
610
-
611
- Margin?: string;
612
-
613
- MarginPercentage?: string;
614
-
615
- Currency?: string;
616
- }
617
- export interface ListBillingGroupCostReportsOutput {
618
-
619
- BillingGroupCostReports?: BillingGroupCostReportElement[];
620
-
621
- NextToken?: string;
622
- }
623
- export interface ListTagsForResourceRequest {
624
-
625
- ResourceArn: string | undefined;
626
- }
627
- export interface ListTagsForResourceResponse {
628
-
629
- Tags?: Record<string, string>;
630
- }
631
- export interface CreatePricingPlanInput {
632
-
633
- ClientToken?: string;
634
-
635
- Name: string | undefined;
636
-
637
- Description?: string;
638
-
639
- PricingRuleArns?: string[];
640
-
641
- Tags?: Record<string, string>;
642
- }
643
- export interface CreatePricingPlanOutput {
644
-
645
- Arn?: string;
646
- }
647
- export interface DeletePricingPlanInput {
648
-
649
- Arn: string | undefined;
650
- }
651
- export interface DeletePricingPlanOutput {
652
-
653
- Arn?: string;
654
- }
655
- export interface DisassociatePricingRulesInput {
656
-
657
- Arn: string | undefined;
658
-
659
- PricingRuleArns: string[] | undefined;
660
- }
661
- export interface DisassociatePricingRulesOutput {
662
-
663
- Arn?: string;
664
- }
665
-
666
- export interface ListPricingPlansFilter {
667
-
668
- Arns?: string[];
669
- }
670
- export interface ListPricingPlansInput {
671
-
672
- BillingPeriod?: string;
673
-
674
- Filters?: ListPricingPlansFilter;
675
-
676
- MaxResults?: number;
677
-
678
- NextToken?: string;
679
- }
680
-
681
- export interface PricingPlanListElement {
682
-
683
- Name?: string;
684
-
685
- Arn?: string;
686
-
687
- Description?: string;
688
-
689
- Size?: number;
690
-
691
- CreationTime?: number;
692
-
693
- LastModifiedTime?: number;
694
- }
695
- export interface ListPricingPlansOutput {
696
-
697
- BillingPeriod?: string;
698
-
699
- PricingPlans?: PricingPlanListElement[];
700
-
701
- NextToken?: string;
702
- }
703
- export interface ListPricingPlansAssociatedWithPricingRuleInput {
704
-
705
- BillingPeriod?: string;
706
-
707
- PricingRuleArn: string | undefined;
708
-
709
- MaxResults?: number;
710
-
711
- NextToken?: string;
712
- }
713
- export interface ListPricingPlansAssociatedWithPricingRuleOutput {
714
-
715
- BillingPeriod?: string;
716
-
717
- PricingRuleArn?: string;
718
-
719
- PricingPlanArns?: string[];
720
-
721
- NextToken?: string;
722
- }
723
- export interface UpdatePricingPlanInput {
724
-
725
- Arn: string | undefined;
726
-
727
- Name?: string;
728
-
729
- Description?: string;
730
- }
731
- export interface UpdatePricingPlanOutput {
732
-
733
- Arn?: string;
734
-
735
- Name?: string;
736
-
737
- Description?: string;
738
-
739
- Size?: number;
740
-
741
- LastModifiedTime?: number;
742
- }
743
- export declare enum PricingRuleScope {
744
- GLOBAL = "GLOBAL",
745
- SERVICE = "SERVICE"
746
- }
747
- export declare enum PricingRuleType {
748
- DISCOUNT = "DISCOUNT",
749
- MARKUP = "MARKUP"
750
- }
751
- export interface CreatePricingRuleInput {
752
-
753
- ClientToken?: string;
754
-
755
- Name: string | undefined;
756
-
757
- Description?: string;
758
-
759
- Scope: PricingRuleScope | string | undefined;
760
-
761
- Type: PricingRuleType | string | undefined;
762
-
763
- ModifierPercentage: number | undefined;
764
-
765
- Service?: string;
766
-
767
- Tags?: Record<string, string>;
768
- }
769
- export interface CreatePricingRuleOutput {
770
-
771
- Arn?: string;
772
- }
773
- export interface DeletePricingRuleInput {
774
-
775
- Arn: string | undefined;
776
- }
777
- export interface DeletePricingRuleOutput {
778
-
779
- Arn?: string;
780
- }
781
-
782
- export interface ListPricingRulesFilter {
783
-
784
- Arns?: string[];
785
- }
786
- export interface ListPricingRulesInput {
787
-
788
- BillingPeriod?: string;
789
-
790
- Filters?: ListPricingRulesFilter;
791
-
792
- MaxResults?: number;
793
-
794
- NextToken?: string;
795
- }
796
-
797
- export interface PricingRuleListElement {
798
-
799
- Name?: string;
800
-
801
- Arn?: string;
802
-
803
- Description?: string;
804
-
805
- Scope?: PricingRuleScope | string;
806
-
807
- Type?: PricingRuleType | string;
808
-
809
- ModifierPercentage?: number;
810
-
811
- Service?: string;
812
-
813
- AssociatedPricingPlanCount?: number;
814
-
815
- CreationTime?: number;
816
-
817
- LastModifiedTime?: number;
818
- }
819
- export interface ListPricingRulesOutput {
820
-
821
- BillingPeriod?: string;
822
-
823
- PricingRules?: PricingRuleListElement[];
824
-
825
- NextToken?: string;
826
- }
827
- export interface ListPricingRulesAssociatedToPricingPlanInput {
828
-
829
- BillingPeriod?: string;
830
-
831
- PricingPlanArn: string | undefined;
832
-
833
- MaxResults?: number;
834
-
835
- NextToken?: string;
836
- }
837
- export interface ListPricingRulesAssociatedToPricingPlanOutput {
838
-
839
- BillingPeriod?: string;
840
-
841
- PricingPlanArn?: string;
842
-
843
- PricingRuleArns?: string[];
844
-
845
- NextToken?: string;
846
- }
847
- export interface UpdatePricingRuleInput {
848
-
849
- Arn: string | undefined;
850
-
851
- Name?: string;
852
-
853
- Description?: string;
854
-
855
- Type?: PricingRuleType | string;
856
-
857
- ModifierPercentage?: number;
858
- }
859
- export interface UpdatePricingRuleOutput {
860
-
861
- Arn?: string;
862
-
863
- Name?: string;
864
-
865
- Description?: string;
866
-
867
- Scope?: PricingRuleScope | string;
868
-
869
- Type?: PricingRuleType | string;
870
-
871
- ModifierPercentage?: number;
872
-
873
- Service?: string;
874
-
875
- AssociatedPricingPlanCount?: number;
876
-
877
- LastModifiedTime?: number;
878
- }
879
- export interface TagResourceRequest {
880
-
881
- ResourceArn: string | undefined;
882
-
883
- Tags: Record<string, string> | undefined;
884
- }
885
- export interface TagResourceResponse {
886
- }
887
- export interface UntagResourceRequest {
888
-
889
- ResourceArn: string | undefined;
890
-
891
- TagKeys: string[] | undefined;
892
- }
893
- export interface UntagResourceResponse {
894
- }
895
-
896
- export declare const AccountAssociationsListElementFilterSensitiveLog: (obj: AccountAssociationsListElement) => any;
897
-
898
- export declare const AccountGroupingFilterSensitiveLog: (obj: AccountGrouping) => any;
899
-
900
- export declare const AssociateAccountsInputFilterSensitiveLog: (obj: AssociateAccountsInput) => any;
901
-
902
- export declare const AssociateAccountsOutputFilterSensitiveLog: (obj: AssociateAccountsOutput) => any;
903
-
904
- export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
905
-
906
- export declare const AssociatePricingRulesInputFilterSensitiveLog: (obj: AssociatePricingRulesInput) => any;
907
-
908
- export declare const AssociatePricingRulesOutputFilterSensitiveLog: (obj: AssociatePricingRulesOutput) => any;
909
-
910
- export declare const AssociateResourceErrorFilterSensitiveLog: (obj: AssociateResourceError) => any;
911
-
912
- export declare const AssociateResourceResponseElementFilterSensitiveLog: (obj: AssociateResourceResponseElement) => any;
913
-
914
- export declare const ComputationPreferenceFilterSensitiveLog: (obj: ComputationPreference) => any;
915
-
916
- export declare const CreateBillingGroupInputFilterSensitiveLog: (obj: CreateBillingGroupInput) => any;
917
-
918
- export declare const CreateBillingGroupOutputFilterSensitiveLog: (obj: CreateBillingGroupOutput) => any;
919
-
920
- export declare const DeleteBillingGroupInputFilterSensitiveLog: (obj: DeleteBillingGroupInput) => any;
921
-
922
- export declare const DeleteBillingGroupOutputFilterSensitiveLog: (obj: DeleteBillingGroupOutput) => any;
923
-
924
- export declare const DisassociateAccountsInputFilterSensitiveLog: (obj: DisassociateAccountsInput) => any;
925
-
926
- export declare const DisassociateAccountsOutputFilterSensitiveLog: (obj: DisassociateAccountsOutput) => any;
927
-
928
- export declare const ListBillingGroupsFilterFilterSensitiveLog: (obj: ListBillingGroupsFilter) => any;
929
-
930
- export declare const ListBillingGroupsInputFilterSensitiveLog: (obj: ListBillingGroupsInput) => any;
931
-
932
- export declare const BillingGroupListElementFilterSensitiveLog: (obj: BillingGroupListElement) => any;
933
-
934
- export declare const ListBillingGroupsOutputFilterSensitiveLog: (obj: ListBillingGroupsOutput) => any;
935
-
936
- export declare const UpdateBillingGroupInputFilterSensitiveLog: (obj: UpdateBillingGroupInput) => any;
937
-
938
- export declare const UpdateBillingGroupOutputFilterSensitiveLog: (obj: UpdateBillingGroupOutput) => any;
939
-
940
- export declare const CustomLineItemBillingPeriodRangeFilterSensitiveLog: (obj: CustomLineItemBillingPeriodRange) => any;
941
-
942
- export declare const BatchAssociateResourcesToCustomLineItemInputFilterSensitiveLog: (obj: BatchAssociateResourcesToCustomLineItemInput) => any;
943
-
944
- export declare const BatchAssociateResourcesToCustomLineItemOutputFilterSensitiveLog: (obj: BatchAssociateResourcesToCustomLineItemOutput) => any;
945
-
946
- export declare const BatchDisassociateResourcesFromCustomLineItemInputFilterSensitiveLog: (obj: BatchDisassociateResourcesFromCustomLineItemInput) => any;
947
-
948
- export declare const DisassociateResourceResponseElementFilterSensitiveLog: (obj: DisassociateResourceResponseElement) => any;
949
-
950
- export declare const BatchDisassociateResourcesFromCustomLineItemOutputFilterSensitiveLog: (obj: BatchDisassociateResourcesFromCustomLineItemOutput) => any;
951
-
952
- export declare const CustomLineItemFlatChargeDetailsFilterSensitiveLog: (obj: CustomLineItemFlatChargeDetails) => any;
953
-
954
- export declare const CustomLineItemPercentageChargeDetailsFilterSensitiveLog: (obj: CustomLineItemPercentageChargeDetails) => any;
955
-
956
- export declare const CustomLineItemChargeDetailsFilterSensitiveLog: (obj: CustomLineItemChargeDetails) => any;
957
-
958
- export declare const CreateCustomLineItemInputFilterSensitiveLog: (obj: CreateCustomLineItemInput) => any;
959
-
960
- export declare const CreateCustomLineItemOutputFilterSensitiveLog: (obj: CreateCustomLineItemOutput) => any;
961
-
962
- export declare const DeleteCustomLineItemInputFilterSensitiveLog: (obj: DeleteCustomLineItemInput) => any;
963
-
964
- export declare const DeleteCustomLineItemOutputFilterSensitiveLog: (obj: DeleteCustomLineItemOutput) => any;
965
-
966
- export declare const ListCustomLineItemsFilterFilterSensitiveLog: (obj: ListCustomLineItemsFilter) => any;
967
-
968
- export declare const ListCustomLineItemsInputFilterSensitiveLog: (obj: ListCustomLineItemsInput) => any;
969
-
970
- export declare const ListCustomLineItemFlatChargeDetailsFilterSensitiveLog: (obj: ListCustomLineItemFlatChargeDetails) => any;
971
-
972
- export declare const ListCustomLineItemPercentageChargeDetailsFilterSensitiveLog: (obj: ListCustomLineItemPercentageChargeDetails) => any;
973
-
974
- export declare const ListCustomLineItemChargeDetailsFilterSensitiveLog: (obj: ListCustomLineItemChargeDetails) => any;
975
-
976
- export declare const CustomLineItemListElementFilterSensitiveLog: (obj: CustomLineItemListElement) => any;
977
-
978
- export declare const ListCustomLineItemsOutputFilterSensitiveLog: (obj: ListCustomLineItemsOutput) => any;
979
-
980
- export declare const ListResourcesAssociatedToCustomLineItemFilterFilterSensitiveLog: (obj: ListResourcesAssociatedToCustomLineItemFilter) => any;
981
-
982
- export declare const ListResourcesAssociatedToCustomLineItemInputFilterSensitiveLog: (obj: ListResourcesAssociatedToCustomLineItemInput) => any;
983
-
984
- export declare const ListResourcesAssociatedToCustomLineItemResponseElementFilterSensitiveLog: (obj: ListResourcesAssociatedToCustomLineItemResponseElement) => any;
985
-
986
- export declare const ListResourcesAssociatedToCustomLineItemOutputFilterSensitiveLog: (obj: ListResourcesAssociatedToCustomLineItemOutput) => any;
987
-
988
- export declare const UpdateCustomLineItemFlatChargeDetailsFilterSensitiveLog: (obj: UpdateCustomLineItemFlatChargeDetails) => any;
989
-
990
- export declare const UpdateCustomLineItemPercentageChargeDetailsFilterSensitiveLog: (obj: UpdateCustomLineItemPercentageChargeDetails) => any;
991
-
992
- export declare const UpdateCustomLineItemChargeDetailsFilterSensitiveLog: (obj: UpdateCustomLineItemChargeDetails) => any;
993
-
994
- export declare const UpdateCustomLineItemInputFilterSensitiveLog: (obj: UpdateCustomLineItemInput) => any;
995
-
996
- export declare const UpdateCustomLineItemOutputFilterSensitiveLog: (obj: UpdateCustomLineItemOutput) => any;
997
-
998
- export declare const ListAccountAssociationsFilterFilterSensitiveLog: (obj: ListAccountAssociationsFilter) => any;
999
-
1000
- export declare const ListAccountAssociationsInputFilterSensitiveLog: (obj: ListAccountAssociationsInput) => any;
1001
-
1002
- export declare const ListAccountAssociationsOutputFilterSensitiveLog: (obj: ListAccountAssociationsOutput) => any;
1003
-
1004
- export declare const ListBillingGroupCostReportsFilterFilterSensitiveLog: (obj: ListBillingGroupCostReportsFilter) => any;
1005
-
1006
- export declare const ListBillingGroupCostReportsInputFilterSensitiveLog: (obj: ListBillingGroupCostReportsInput) => any;
1007
-
1008
- export declare const BillingGroupCostReportElementFilterSensitiveLog: (obj: BillingGroupCostReportElement) => any;
1009
-
1010
- export declare const ListBillingGroupCostReportsOutputFilterSensitiveLog: (obj: ListBillingGroupCostReportsOutput) => any;
1011
-
1012
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1013
-
1014
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1015
-
1016
- export declare const CreatePricingPlanInputFilterSensitiveLog: (obj: CreatePricingPlanInput) => any;
1017
-
1018
- export declare const CreatePricingPlanOutputFilterSensitiveLog: (obj: CreatePricingPlanOutput) => any;
1019
-
1020
- export declare const DeletePricingPlanInputFilterSensitiveLog: (obj: DeletePricingPlanInput) => any;
1021
-
1022
- export declare const DeletePricingPlanOutputFilterSensitiveLog: (obj: DeletePricingPlanOutput) => any;
1023
-
1024
- export declare const DisassociatePricingRulesInputFilterSensitiveLog: (obj: DisassociatePricingRulesInput) => any;
1025
-
1026
- export declare const DisassociatePricingRulesOutputFilterSensitiveLog: (obj: DisassociatePricingRulesOutput) => any;
1027
-
1028
- export declare const ListPricingPlansFilterFilterSensitiveLog: (obj: ListPricingPlansFilter) => any;
1029
-
1030
- export declare const ListPricingPlansInputFilterSensitiveLog: (obj: ListPricingPlansInput) => any;
1031
-
1032
- export declare const PricingPlanListElementFilterSensitiveLog: (obj: PricingPlanListElement) => any;
1033
-
1034
- export declare const ListPricingPlansOutputFilterSensitiveLog: (obj: ListPricingPlansOutput) => any;
1035
-
1036
- export declare const ListPricingPlansAssociatedWithPricingRuleInputFilterSensitiveLog: (obj: ListPricingPlansAssociatedWithPricingRuleInput) => any;
1037
-
1038
- export declare const ListPricingPlansAssociatedWithPricingRuleOutputFilterSensitiveLog: (obj: ListPricingPlansAssociatedWithPricingRuleOutput) => any;
1039
-
1040
- export declare const UpdatePricingPlanInputFilterSensitiveLog: (obj: UpdatePricingPlanInput) => any;
1041
-
1042
- export declare const UpdatePricingPlanOutputFilterSensitiveLog: (obj: UpdatePricingPlanOutput) => any;
1043
-
1044
- export declare const CreatePricingRuleInputFilterSensitiveLog: (obj: CreatePricingRuleInput) => any;
1045
-
1046
- export declare const CreatePricingRuleOutputFilterSensitiveLog: (obj: CreatePricingRuleOutput) => any;
1047
-
1048
- export declare const DeletePricingRuleInputFilterSensitiveLog: (obj: DeletePricingRuleInput) => any;
1049
-
1050
- export declare const DeletePricingRuleOutputFilterSensitiveLog: (obj: DeletePricingRuleOutput) => any;
1051
-
1052
- export declare const ListPricingRulesFilterFilterSensitiveLog: (obj: ListPricingRulesFilter) => any;
1053
-
1054
- export declare const ListPricingRulesInputFilterSensitiveLog: (obj: ListPricingRulesInput) => any;
1055
-
1056
- export declare const PricingRuleListElementFilterSensitiveLog: (obj: PricingRuleListElement) => any;
1057
-
1058
- export declare const ListPricingRulesOutputFilterSensitiveLog: (obj: ListPricingRulesOutput) => any;
1059
-
1060
- export declare const ListPricingRulesAssociatedToPricingPlanInputFilterSensitiveLog: (obj: ListPricingRulesAssociatedToPricingPlanInput) => any;
1061
-
1062
- export declare const ListPricingRulesAssociatedToPricingPlanOutputFilterSensitiveLog: (obj: ListPricingRulesAssociatedToPricingPlanOutput) => any;
1063
-
1064
- export declare const UpdatePricingRuleInputFilterSensitiveLog: (obj: UpdatePricingRuleInput) => any;
1065
-
1066
- export declare const UpdatePricingRuleOutputFilterSensitiveLog: (obj: UpdatePricingRuleOutput) => any;
1067
-
1068
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1069
-
1070
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1071
-
1072
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1073
-
1074
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { BillingconductorServiceException as __BaseException } from "./BillingconductorServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message: string | undefined;
8
+
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+
14
+ export interface AccountAssociationsListElement {
15
+ AccountId?: string;
16
+
17
+ BillingGroupArn?: string;
18
+
19
+ AccountName?: string;
20
+
21
+ AccountEmail?: string;
22
+ }
23
+
24
+ export interface AccountGrouping {
25
+ LinkedAccountIds: string[] | undefined;
26
+ }
27
+ export interface AssociateAccountsInput {
28
+ Arn: string | undefined;
29
+
30
+ AccountIds: string[] | undefined;
31
+ }
32
+ export interface AssociateAccountsOutput {
33
+ Arn?: string;
34
+ }
35
+
36
+ export declare class ConflictException extends __BaseException {
37
+ readonly name: "ConflictException";
38
+ readonly $fault: "client";
39
+ Message: string | undefined;
40
+
41
+ ResourceId: string | undefined;
42
+
43
+ ResourceType: string | undefined;
44
+
45
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
46
+ }
47
+
48
+ export declare class InternalServerException extends __BaseException {
49
+ readonly name: "InternalServerException";
50
+ readonly $fault: "server";
51
+ Message: string | undefined;
52
+
53
+ RetryAfterSeconds?: number;
54
+
55
+ constructor(
56
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
57
+ );
58
+ }
59
+
60
+ export declare class ResourceNotFoundException extends __BaseException {
61
+ readonly name: "ResourceNotFoundException";
62
+ readonly $fault: "client";
63
+ Message: string | undefined;
64
+
65
+ ResourceId: string | undefined;
66
+
67
+ ResourceType: string | undefined;
68
+
69
+ constructor(
70
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
71
+ );
72
+ }
73
+
74
+ export declare class ServiceLimitExceededException extends __BaseException {
75
+ readonly name: "ServiceLimitExceededException";
76
+ readonly $fault: "client";
77
+ Message: string | undefined;
78
+
79
+ ResourceId?: string;
80
+
81
+ ResourceType?: string;
82
+
83
+ LimitCode: string | undefined;
84
+
85
+ ServiceCode: string | undefined;
86
+
87
+ constructor(
88
+ opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
89
+ );
90
+ }
91
+
92
+ export declare class ThrottlingException extends __BaseException {
93
+ readonly name: "ThrottlingException";
94
+ readonly $fault: "client";
95
+ Message: string | undefined;
96
+
97
+ RetryAfterSeconds?: number;
98
+
99
+ constructor(
100
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
101
+ );
102
+ }
103
+
104
+ export interface ValidationExceptionField {
105
+ Name: string | undefined;
106
+
107
+ Message: string | undefined;
108
+ }
109
+ export declare enum ValidationExceptionReason {
110
+ ACCOUNTS_ALREADY_ASSOCIATED = "ACCOUNTS_ALREADY_ASSOCIATED",
111
+ ACCOUNTS_NOT_ASSOCIATED = "ACCOUNTS_NOT_ASSOCIATED",
112
+ CANNOT_PARSE = "CANNOT_PARSE",
113
+ DUPLICATE_ACCOUNT = "DUPLICATE_ACCOUNT",
114
+ DUPLICATE_PRICINGRULE_ARNS = "DUPLICATE_PRICINGRULE_ARNS",
115
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
116
+ ILLEGAL_ACCOUNTS = "ILLEGAL_ACCOUNTS",
117
+ ILLEGAL_BILLING_PERIOD = "ILLEGAL_BILLING_PERIOD",
118
+ ILLEGAL_BILLING_PERIOD_RANGE = "ILLEGAL_BILLING_PERIOD_RANGE",
119
+ ILLEGAL_CHARGE_DETAILS = "ILLEGAL_CHARGE_DETAILS",
120
+ ILLEGAL_CUSTOMLINEITEM = "ILLEGAL_CUSTOMLINEITEM",
121
+ ILLEGAL_CUSTOMLINEITEM_MODIFICATION = "ILLEGAL_CUSTOMLINEITEM_MODIFICATION",
122
+ ILLEGAL_CUSTOMLINEITEM_UPDATE = "ILLEGAL_CUSTOMLINEITEM_UPDATE",
123
+ ILLEGAL_EXPRESSION = "ILLEGAL_EXPRESSION",
124
+ ILLEGAL_PRIMARY_ACCOUNT = "ILLEGAL_PRIMARY_ACCOUNT",
125
+ ILLEGAL_RESOURCE_ARNS = "ILLEGAL_RESOURCE_ARNS",
126
+ ILLEGAL_SCOPE = "ILLEGAL_SCOPE",
127
+ ILLEGAL_SERVICE = "ILLEGAL_SERVICE",
128
+ ILLEGAL_UPDATE_CHARGE_DETAILS = "ILLEGAL_UPDATE_CHARGE_DETAILS",
129
+ INVALID_ARN = "INVALID_ARN",
130
+ INVALID_BILLINGVIEW_ARN = "INVALID_BILLINGVIEW_ARN",
131
+ INVALID_BILLING_GROUP_STATUS = "INVALID_BILLING_GROUP_STATUS",
132
+ INVALID_TIME_RANGE = "INVALID_TIME_RANGE",
133
+ MISMATCHED_BILLINGGROUP_ARN = "MISMATCHED_BILLINGGROUP_ARN",
134
+ MISMATCHED_BILLINGVIEW_ARN = "MISMATCHED_BILLINGVIEW_ARN",
135
+ MISMATCHED_CUSTOMLINEITEM_ARN = "MISMATCHED_CUSTOMLINEITEM_ARN",
136
+ MISMATCHED_PRICINGPLAN_ARN = "MISMATCHED_PRICINGPLAN_ARN",
137
+ MISMATCHED_PRICINGRULE_ARN = "MISMATCHED_PRICINGRULE_ARN",
138
+ MISSING_BILLINGGROUP = "MISSING_BILLINGGROUP",
139
+ MISSING_CUSTOMLINEITEM = "MISSING_CUSTOMLINEITEM",
140
+ MISSING_LINKED_ACCOUNT_IDS = "MISSING_LINKED_ACCOUNT_IDS",
141
+ MISSING_PRICINGPLAN = "MISSING_PRICINGPLAN",
142
+ MISSING_PRICING_PLAN_ARN = "MISSING_PRICING_PLAN_ARN",
143
+ MULTIPLE_LINKED_ACCOUNT_IDS = "MULTIPLE_LINKED_ACCOUNT_IDS",
144
+ MULTIPLE_PRICING_PLAN_ARN = "MULTIPLE_PRICING_PLAN_ARN",
145
+ OTHER = "OTHER",
146
+ PRICINGRULES_ALREADY_ASSOCIATED = "PRICINGRULES_ALREADY_ASSOCIATED",
147
+ PRICINGRULES_NOT_ASSOCIATED = "PRICINGRULES_NOT_ASSOCIATED",
148
+ PRICINGRULES_NOT_EXIST = "PRICINGRULES_NOT_EXIST",
149
+ PRIMARY_CANNOT_DISASSOCIATE = "PRIMARY_CANNOT_DISASSOCIATE",
150
+ PRIMARY_NOT_ASSOCIATED = "PRIMARY_NOT_ASSOCIATED",
151
+ TOO_MANY_ACCOUNTS_IN_REQUEST = "TOO_MANY_ACCOUNTS_IN_REQUEST",
152
+ TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST = "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST",
153
+ UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
154
+ }
155
+
156
+ export declare class ValidationException extends __BaseException {
157
+ readonly name: "ValidationException";
158
+ readonly $fault: "client";
159
+ Message: string | undefined;
160
+
161
+ Reason?: ValidationExceptionReason | string;
162
+
163
+ Fields?: ValidationExceptionField[];
164
+
165
+ constructor(
166
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
167
+ );
168
+ }
169
+ export interface AssociatePricingRulesInput {
170
+ Arn: string | undefined;
171
+
172
+ PricingRuleArns: string[] | undefined;
173
+ }
174
+ export interface AssociatePricingRulesOutput {
175
+ Arn?: string;
176
+ }
177
+ export declare enum AssociateResourceErrorReason {
178
+ ILLEGAL_CUSTOMLINEITEM = "ILLEGAL_CUSTOMLINEITEM",
179
+ INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
180
+ INVALID_ARN = "INVALID_ARN",
181
+ SERVICE_LIMIT_EXCEEDED = "SERVICE_LIMIT_EXCEEDED",
182
+ }
183
+
184
+ export interface AssociateResourceError {
185
+ Message?: string;
186
+
187
+ Reason?: AssociateResourceErrorReason | string;
188
+ }
189
+
190
+ export interface AssociateResourceResponseElement {
191
+ Arn?: string;
192
+
193
+ Error?: AssociateResourceError;
194
+ }
195
+
196
+ export interface ComputationPreference {
197
+ PricingPlanArn: string | undefined;
198
+ }
199
+ export interface CreateBillingGroupInput {
200
+ ClientToken?: string;
201
+
202
+ Name: string | undefined;
203
+
204
+ AccountGrouping: AccountGrouping | undefined;
205
+
206
+ ComputationPreference: ComputationPreference | undefined;
207
+
208
+ PrimaryAccountId?: string;
209
+
210
+ Description?: string;
211
+
212
+ Tags?: Record<string, string>;
213
+ }
214
+ export interface CreateBillingGroupOutput {
215
+ Arn?: string;
216
+ }
217
+ export interface DeleteBillingGroupInput {
218
+ Arn: string | undefined;
219
+ }
220
+ export interface DeleteBillingGroupOutput {
221
+ Arn?: string;
222
+ }
223
+ export interface DisassociateAccountsInput {
224
+ Arn: string | undefined;
225
+
226
+ AccountIds: string[] | undefined;
227
+ }
228
+ export interface DisassociateAccountsOutput {
229
+ Arn?: string;
230
+ }
231
+
232
+ export interface ListBillingGroupsFilter {
233
+ Arns?: string[];
234
+
235
+ PricingPlan?: string;
236
+ }
237
+ export interface ListBillingGroupsInput {
238
+ BillingPeriod?: string;
239
+
240
+ MaxResults?: number;
241
+
242
+ NextToken?: string;
243
+
244
+ Filters?: ListBillingGroupsFilter;
245
+ }
246
+ export declare enum BillingGroupStatus {
247
+ ACTIVE = "ACTIVE",
248
+ PRIMARY_ACCOUNT_MISSING = "PRIMARY_ACCOUNT_MISSING",
249
+ }
250
+
251
+ export interface BillingGroupListElement {
252
+ Name?: string;
253
+
254
+ Arn?: string;
255
+
256
+ Description?: string;
257
+
258
+ PrimaryAccountId?: string;
259
+
260
+ ComputationPreference?: ComputationPreference;
261
+
262
+ Size?: number;
263
+
264
+ CreationTime?: number;
265
+
266
+ LastModifiedTime?: number;
267
+
268
+ Status?: BillingGroupStatus | string;
269
+
270
+ StatusReason?: string;
271
+ }
272
+ export interface ListBillingGroupsOutput {
273
+ BillingGroups?: BillingGroupListElement[];
274
+
275
+ NextToken?: string;
276
+ }
277
+ export interface UpdateBillingGroupInput {
278
+ Arn: string | undefined;
279
+
280
+ Name?: string;
281
+
282
+ Status?: BillingGroupStatus | string;
283
+
284
+ ComputationPreference?: ComputationPreference;
285
+
286
+ Description?: string;
287
+ }
288
+ export interface UpdateBillingGroupOutput {
289
+ Arn?: string;
290
+
291
+ Name?: string;
292
+
293
+ Description?: string;
294
+
295
+ PrimaryAccountId?: string;
296
+
297
+ PricingPlanArn?: string;
298
+
299
+ Size?: number;
300
+
301
+ LastModifiedTime?: number;
302
+
303
+ Status?: BillingGroupStatus | string;
304
+
305
+ StatusReason?: string;
306
+ }
307
+
308
+ export interface CustomLineItemBillingPeriodRange {
309
+ InclusiveStartBillingPeriod: string | undefined;
310
+
311
+ ExclusiveEndBillingPeriod: string | undefined;
312
+ }
313
+ export interface BatchAssociateResourcesToCustomLineItemInput {
314
+ TargetArn: string | undefined;
315
+
316
+ ResourceArns: string[] | undefined;
317
+
318
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange;
319
+ }
320
+ export interface BatchAssociateResourcesToCustomLineItemOutput {
321
+ SuccessfullyAssociatedResources?: AssociateResourceResponseElement[];
322
+
323
+ FailedAssociatedResources?: AssociateResourceResponseElement[];
324
+ }
325
+ export interface BatchDisassociateResourcesFromCustomLineItemInput {
326
+ TargetArn: string | undefined;
327
+
328
+ ResourceArns: string[] | undefined;
329
+
330
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange;
331
+ }
332
+
333
+ export interface DisassociateResourceResponseElement {
334
+ Arn?: string;
335
+
336
+ Error?: AssociateResourceError;
337
+ }
338
+ export interface BatchDisassociateResourcesFromCustomLineItemOutput {
339
+ SuccessfullyDisassociatedResources?: DisassociateResourceResponseElement[];
340
+
341
+ FailedDisassociatedResources?: DisassociateResourceResponseElement[];
342
+ }
343
+
344
+ export interface CustomLineItemFlatChargeDetails {
345
+ ChargeValue: number | undefined;
346
+ }
347
+
348
+ export interface CustomLineItemPercentageChargeDetails {
349
+ PercentageValue: number | undefined;
350
+
351
+ AssociatedValues?: string[];
352
+ }
353
+ export declare enum CustomLineItemType {
354
+ CREDIT = "CREDIT",
355
+ FEE = "FEE",
356
+ }
357
+
358
+ export interface CustomLineItemChargeDetails {
359
+ Flat?: CustomLineItemFlatChargeDetails;
360
+
361
+ Percentage?: CustomLineItemPercentageChargeDetails;
362
+
363
+ Type: CustomLineItemType | string | undefined;
364
+ }
365
+ export interface CreateCustomLineItemInput {
366
+ ClientToken?: string;
367
+
368
+ Name: string | undefined;
369
+
370
+ Description: string | undefined;
371
+
372
+ BillingGroupArn: string | undefined;
373
+
374
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange;
375
+
376
+ Tags?: Record<string, string>;
377
+
378
+ ChargeDetails: CustomLineItemChargeDetails | undefined;
379
+ }
380
+ export interface CreateCustomLineItemOutput {
381
+ Arn?: string;
382
+ }
383
+ export interface DeleteCustomLineItemInput {
384
+ Arn: string | undefined;
385
+
386
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange;
387
+ }
388
+ export interface DeleteCustomLineItemOutput {
389
+ Arn?: string;
390
+ }
391
+
392
+ export interface ListCustomLineItemsFilter {
393
+ Names?: string[];
394
+
395
+ BillingGroups?: string[];
396
+
397
+ Arns?: string[];
398
+ }
399
+ export interface ListCustomLineItemsInput {
400
+ BillingPeriod?: string;
401
+
402
+ MaxResults?: number;
403
+
404
+ NextToken?: string;
405
+
406
+ Filters?: ListCustomLineItemsFilter;
407
+ }
408
+
409
+ export interface ListCustomLineItemFlatChargeDetails {
410
+ ChargeValue: number | undefined;
411
+ }
412
+
413
+ export interface ListCustomLineItemPercentageChargeDetails {
414
+ PercentageValue: number | undefined;
415
+ }
416
+
417
+ export interface ListCustomLineItemChargeDetails {
418
+ Flat?: ListCustomLineItemFlatChargeDetails;
419
+
420
+ Percentage?: ListCustomLineItemPercentageChargeDetails;
421
+
422
+ Type: CustomLineItemType | string | undefined;
423
+ }
424
+ export declare enum CurrencyCode {
425
+ CNY = "CNY",
426
+ USD = "USD",
427
+ }
428
+
429
+ export interface CustomLineItemListElement {
430
+ Arn?: string;
431
+
432
+ Name?: string;
433
+
434
+ ChargeDetails?: ListCustomLineItemChargeDetails;
435
+
436
+ CurrencyCode?: CurrencyCode | string;
437
+
438
+ Description?: string;
439
+
440
+ ProductCode?: string;
441
+
442
+ BillingGroupArn?: string;
443
+
444
+ CreationTime?: number;
445
+
446
+ LastModifiedTime?: number;
447
+
448
+ AssociationSize?: number;
449
+ }
450
+ export interface ListCustomLineItemsOutput {
451
+ CustomLineItems?: CustomLineItemListElement[];
452
+
453
+ NextToken?: string;
454
+ }
455
+ export declare enum CustomLineItemRelationship {
456
+ CHILD = "CHILD",
457
+ PARENT = "PARENT",
458
+ }
459
+
460
+ export interface ListResourcesAssociatedToCustomLineItemFilter {
461
+ Relationship?: CustomLineItemRelationship | string;
462
+ }
463
+ export interface ListResourcesAssociatedToCustomLineItemInput {
464
+ BillingPeriod?: string;
465
+
466
+ Arn: string | undefined;
467
+
468
+ MaxResults?: number;
469
+
470
+ NextToken?: string;
471
+
472
+ Filters?: ListResourcesAssociatedToCustomLineItemFilter;
473
+ }
474
+
475
+ export interface ListResourcesAssociatedToCustomLineItemResponseElement {
476
+ Arn?: string;
477
+
478
+ Relationship?: CustomLineItemRelationship | string;
479
+ }
480
+ export interface ListResourcesAssociatedToCustomLineItemOutput {
481
+ Arn?: string;
482
+
483
+ AssociatedResources?: ListResourcesAssociatedToCustomLineItemResponseElement[];
484
+
485
+ NextToken?: string;
486
+ }
487
+
488
+ export interface UpdateCustomLineItemFlatChargeDetails {
489
+ ChargeValue: number | undefined;
490
+ }
491
+
492
+ export interface UpdateCustomLineItemPercentageChargeDetails {
493
+ PercentageValue: number | undefined;
494
+ }
495
+
496
+ export interface UpdateCustomLineItemChargeDetails {
497
+ Flat?: UpdateCustomLineItemFlatChargeDetails;
498
+
499
+ Percentage?: UpdateCustomLineItemPercentageChargeDetails;
500
+ }
501
+ export interface UpdateCustomLineItemInput {
502
+ Arn: string | undefined;
503
+
504
+ Name?: string;
505
+
506
+ Description?: string;
507
+
508
+ ChargeDetails?: UpdateCustomLineItemChargeDetails;
509
+
510
+ BillingPeriodRange?: CustomLineItemBillingPeriodRange;
511
+ }
512
+ export interface UpdateCustomLineItemOutput {
513
+ Arn?: string;
514
+
515
+ BillingGroupArn?: string;
516
+
517
+ Name?: string;
518
+
519
+ Description?: string;
520
+
521
+ ChargeDetails?: ListCustomLineItemChargeDetails;
522
+
523
+ LastModifiedTime?: number;
524
+
525
+ AssociationSize?: number;
526
+ }
527
+
528
+ export interface ListAccountAssociationsFilter {
529
+ Association?: string;
530
+
531
+ AccountId?: string;
532
+ }
533
+ export interface ListAccountAssociationsInput {
534
+ BillingPeriod?: string;
535
+
536
+ Filters?: ListAccountAssociationsFilter;
537
+
538
+ NextToken?: string;
539
+ }
540
+ export interface ListAccountAssociationsOutput {
541
+ LinkedAccounts?: AccountAssociationsListElement[];
542
+
543
+ NextToken?: string;
544
+ }
545
+
546
+ export interface ListBillingGroupCostReportsFilter {
547
+ BillingGroupArns?: string[];
548
+ }
549
+ export interface ListBillingGroupCostReportsInput {
550
+ BillingPeriod?: string;
551
+
552
+ MaxResults?: number;
553
+
554
+ NextToken?: string;
555
+
556
+ Filters?: ListBillingGroupCostReportsFilter;
557
+ }
558
+
559
+ export interface BillingGroupCostReportElement {
560
+ Arn?: string;
561
+
562
+ AWSCost?: string;
563
+
564
+ ProformaCost?: string;
565
+
566
+ Margin?: string;
567
+
568
+ MarginPercentage?: string;
569
+
570
+ Currency?: string;
571
+ }
572
+ export interface ListBillingGroupCostReportsOutput {
573
+ BillingGroupCostReports?: BillingGroupCostReportElement[];
574
+
575
+ NextToken?: string;
576
+ }
577
+ export interface ListTagsForResourceRequest {
578
+ ResourceArn: string | undefined;
579
+ }
580
+ export interface ListTagsForResourceResponse {
581
+ Tags?: Record<string, string>;
582
+ }
583
+ export interface CreatePricingPlanInput {
584
+ ClientToken?: string;
585
+
586
+ Name: string | undefined;
587
+
588
+ Description?: string;
589
+
590
+ PricingRuleArns?: string[];
591
+
592
+ Tags?: Record<string, string>;
593
+ }
594
+ export interface CreatePricingPlanOutput {
595
+ Arn?: string;
596
+ }
597
+ export interface DeletePricingPlanInput {
598
+ Arn: string | undefined;
599
+ }
600
+ export interface DeletePricingPlanOutput {
601
+ Arn?: string;
602
+ }
603
+ export interface DisassociatePricingRulesInput {
604
+ Arn: string | undefined;
605
+
606
+ PricingRuleArns: string[] | undefined;
607
+ }
608
+ export interface DisassociatePricingRulesOutput {
609
+ Arn?: string;
610
+ }
611
+
612
+ export interface ListPricingPlansFilter {
613
+ Arns?: string[];
614
+ }
615
+ export interface ListPricingPlansInput {
616
+ BillingPeriod?: string;
617
+
618
+ Filters?: ListPricingPlansFilter;
619
+
620
+ MaxResults?: number;
621
+
622
+ NextToken?: string;
623
+ }
624
+
625
+ export interface PricingPlanListElement {
626
+ Name?: string;
627
+
628
+ Arn?: string;
629
+
630
+ Description?: string;
631
+
632
+ Size?: number;
633
+
634
+ CreationTime?: number;
635
+
636
+ LastModifiedTime?: number;
637
+ }
638
+ export interface ListPricingPlansOutput {
639
+ BillingPeriod?: string;
640
+
641
+ PricingPlans?: PricingPlanListElement[];
642
+
643
+ NextToken?: string;
644
+ }
645
+ export interface ListPricingPlansAssociatedWithPricingRuleInput {
646
+ BillingPeriod?: string;
647
+
648
+ PricingRuleArn: string | undefined;
649
+
650
+ MaxResults?: number;
651
+
652
+ NextToken?: string;
653
+ }
654
+ export interface ListPricingPlansAssociatedWithPricingRuleOutput {
655
+ BillingPeriod?: string;
656
+
657
+ PricingRuleArn?: string;
658
+
659
+ PricingPlanArns?: string[];
660
+
661
+ NextToken?: string;
662
+ }
663
+ export interface UpdatePricingPlanInput {
664
+ Arn: string | undefined;
665
+
666
+ Name?: string;
667
+
668
+ Description?: string;
669
+ }
670
+ export interface UpdatePricingPlanOutput {
671
+ Arn?: string;
672
+
673
+ Name?: string;
674
+
675
+ Description?: string;
676
+
677
+ Size?: number;
678
+
679
+ LastModifiedTime?: number;
680
+ }
681
+ export declare enum PricingRuleScope {
682
+ GLOBAL = "GLOBAL",
683
+ SERVICE = "SERVICE",
684
+ }
685
+ export declare enum PricingRuleType {
686
+ DISCOUNT = "DISCOUNT",
687
+ MARKUP = "MARKUP",
688
+ }
689
+ export interface CreatePricingRuleInput {
690
+ ClientToken?: string;
691
+
692
+ Name: string | undefined;
693
+
694
+ Description?: string;
695
+
696
+ Scope: PricingRuleScope | string | undefined;
697
+
698
+ Type: PricingRuleType | string | undefined;
699
+
700
+ ModifierPercentage: number | undefined;
701
+
702
+ Service?: string;
703
+
704
+ Tags?: Record<string, string>;
705
+ }
706
+ export interface CreatePricingRuleOutput {
707
+ Arn?: string;
708
+ }
709
+ export interface DeletePricingRuleInput {
710
+ Arn: string | undefined;
711
+ }
712
+ export interface DeletePricingRuleOutput {
713
+ Arn?: string;
714
+ }
715
+
716
+ export interface ListPricingRulesFilter {
717
+ Arns?: string[];
718
+ }
719
+ export interface ListPricingRulesInput {
720
+ BillingPeriod?: string;
721
+
722
+ Filters?: ListPricingRulesFilter;
723
+
724
+ MaxResults?: number;
725
+
726
+ NextToken?: string;
727
+ }
728
+
729
+ export interface PricingRuleListElement {
730
+ Name?: string;
731
+
732
+ Arn?: string;
733
+
734
+ Description?: string;
735
+
736
+ Scope?: PricingRuleScope | string;
737
+
738
+ Type?: PricingRuleType | string;
739
+
740
+ ModifierPercentage?: number;
741
+
742
+ Service?: string;
743
+
744
+ AssociatedPricingPlanCount?: number;
745
+
746
+ CreationTime?: number;
747
+
748
+ LastModifiedTime?: number;
749
+ }
750
+ export interface ListPricingRulesOutput {
751
+ BillingPeriod?: string;
752
+
753
+ PricingRules?: PricingRuleListElement[];
754
+
755
+ NextToken?: string;
756
+ }
757
+ export interface ListPricingRulesAssociatedToPricingPlanInput {
758
+ BillingPeriod?: string;
759
+
760
+ PricingPlanArn: string | undefined;
761
+
762
+ MaxResults?: number;
763
+
764
+ NextToken?: string;
765
+ }
766
+ export interface ListPricingRulesAssociatedToPricingPlanOutput {
767
+ BillingPeriod?: string;
768
+
769
+ PricingPlanArn?: string;
770
+
771
+ PricingRuleArns?: string[];
772
+
773
+ NextToken?: string;
774
+ }
775
+ export interface UpdatePricingRuleInput {
776
+ Arn: string | undefined;
777
+
778
+ Name?: string;
779
+
780
+ Description?: string;
781
+
782
+ Type?: PricingRuleType | string;
783
+
784
+ ModifierPercentage?: number;
785
+ }
786
+ export interface UpdatePricingRuleOutput {
787
+ Arn?: string;
788
+
789
+ Name?: string;
790
+
791
+ Description?: string;
792
+
793
+ Scope?: PricingRuleScope | string;
794
+
795
+ Type?: PricingRuleType | string;
796
+
797
+ ModifierPercentage?: number;
798
+
799
+ Service?: string;
800
+
801
+ AssociatedPricingPlanCount?: number;
802
+
803
+ LastModifiedTime?: number;
804
+ }
805
+ export interface TagResourceRequest {
806
+ ResourceArn: string | undefined;
807
+
808
+ Tags: Record<string, string> | undefined;
809
+ }
810
+ export interface TagResourceResponse {}
811
+ export interface UntagResourceRequest {
812
+ ResourceArn: string | undefined;
813
+
814
+ TagKeys: string[] | undefined;
815
+ }
816
+ export interface UntagResourceResponse {}
817
+
818
+ export declare const AccountAssociationsListElementFilterSensitiveLog: (
819
+ obj: AccountAssociationsListElement
820
+ ) => any;
821
+
822
+ export declare const AccountGroupingFilterSensitiveLog: (
823
+ obj: AccountGrouping
824
+ ) => any;
825
+
826
+ export declare const AssociateAccountsInputFilterSensitiveLog: (
827
+ obj: AssociateAccountsInput
828
+ ) => any;
829
+
830
+ export declare const AssociateAccountsOutputFilterSensitiveLog: (
831
+ obj: AssociateAccountsOutput
832
+ ) => any;
833
+
834
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
835
+ obj: ValidationExceptionField
836
+ ) => any;
837
+
838
+ export declare const AssociatePricingRulesInputFilterSensitiveLog: (
839
+ obj: AssociatePricingRulesInput
840
+ ) => any;
841
+
842
+ export declare const AssociatePricingRulesOutputFilterSensitiveLog: (
843
+ obj: AssociatePricingRulesOutput
844
+ ) => any;
845
+
846
+ export declare const AssociateResourceErrorFilterSensitiveLog: (
847
+ obj: AssociateResourceError
848
+ ) => any;
849
+
850
+ export declare const AssociateResourceResponseElementFilterSensitiveLog: (
851
+ obj: AssociateResourceResponseElement
852
+ ) => any;
853
+
854
+ export declare const ComputationPreferenceFilterSensitiveLog: (
855
+ obj: ComputationPreference
856
+ ) => any;
857
+
858
+ export declare const CreateBillingGroupInputFilterSensitiveLog: (
859
+ obj: CreateBillingGroupInput
860
+ ) => any;
861
+
862
+ export declare const CreateBillingGroupOutputFilterSensitiveLog: (
863
+ obj: CreateBillingGroupOutput
864
+ ) => any;
865
+
866
+ export declare const DeleteBillingGroupInputFilterSensitiveLog: (
867
+ obj: DeleteBillingGroupInput
868
+ ) => any;
869
+
870
+ export declare const DeleteBillingGroupOutputFilterSensitiveLog: (
871
+ obj: DeleteBillingGroupOutput
872
+ ) => any;
873
+
874
+ export declare const DisassociateAccountsInputFilterSensitiveLog: (
875
+ obj: DisassociateAccountsInput
876
+ ) => any;
877
+
878
+ export declare const DisassociateAccountsOutputFilterSensitiveLog: (
879
+ obj: DisassociateAccountsOutput
880
+ ) => any;
881
+
882
+ export declare const ListBillingGroupsFilterFilterSensitiveLog: (
883
+ obj: ListBillingGroupsFilter
884
+ ) => any;
885
+
886
+ export declare const ListBillingGroupsInputFilterSensitiveLog: (
887
+ obj: ListBillingGroupsInput
888
+ ) => any;
889
+
890
+ export declare const BillingGroupListElementFilterSensitiveLog: (
891
+ obj: BillingGroupListElement
892
+ ) => any;
893
+
894
+ export declare const ListBillingGroupsOutputFilterSensitiveLog: (
895
+ obj: ListBillingGroupsOutput
896
+ ) => any;
897
+
898
+ export declare const UpdateBillingGroupInputFilterSensitiveLog: (
899
+ obj: UpdateBillingGroupInput
900
+ ) => any;
901
+
902
+ export declare const UpdateBillingGroupOutputFilterSensitiveLog: (
903
+ obj: UpdateBillingGroupOutput
904
+ ) => any;
905
+
906
+ export declare const CustomLineItemBillingPeriodRangeFilterSensitiveLog: (
907
+ obj: CustomLineItemBillingPeriodRange
908
+ ) => any;
909
+
910
+ export declare const BatchAssociateResourcesToCustomLineItemInputFilterSensitiveLog: (
911
+ obj: BatchAssociateResourcesToCustomLineItemInput
912
+ ) => any;
913
+
914
+ export declare const BatchAssociateResourcesToCustomLineItemOutputFilterSensitiveLog: (
915
+ obj: BatchAssociateResourcesToCustomLineItemOutput
916
+ ) => any;
917
+
918
+ export declare const BatchDisassociateResourcesFromCustomLineItemInputFilterSensitiveLog: (
919
+ obj: BatchDisassociateResourcesFromCustomLineItemInput
920
+ ) => any;
921
+
922
+ export declare const DisassociateResourceResponseElementFilterSensitiveLog: (
923
+ obj: DisassociateResourceResponseElement
924
+ ) => any;
925
+
926
+ export declare const BatchDisassociateResourcesFromCustomLineItemOutputFilterSensitiveLog: (
927
+ obj: BatchDisassociateResourcesFromCustomLineItemOutput
928
+ ) => any;
929
+
930
+ export declare const CustomLineItemFlatChargeDetailsFilterSensitiveLog: (
931
+ obj: CustomLineItemFlatChargeDetails
932
+ ) => any;
933
+
934
+ export declare const CustomLineItemPercentageChargeDetailsFilterSensitiveLog: (
935
+ obj: CustomLineItemPercentageChargeDetails
936
+ ) => any;
937
+
938
+ export declare const CustomLineItemChargeDetailsFilterSensitiveLog: (
939
+ obj: CustomLineItemChargeDetails
940
+ ) => any;
941
+
942
+ export declare const CreateCustomLineItemInputFilterSensitiveLog: (
943
+ obj: CreateCustomLineItemInput
944
+ ) => any;
945
+
946
+ export declare const CreateCustomLineItemOutputFilterSensitiveLog: (
947
+ obj: CreateCustomLineItemOutput
948
+ ) => any;
949
+
950
+ export declare const DeleteCustomLineItemInputFilterSensitiveLog: (
951
+ obj: DeleteCustomLineItemInput
952
+ ) => any;
953
+
954
+ export declare const DeleteCustomLineItemOutputFilterSensitiveLog: (
955
+ obj: DeleteCustomLineItemOutput
956
+ ) => any;
957
+
958
+ export declare const ListCustomLineItemsFilterFilterSensitiveLog: (
959
+ obj: ListCustomLineItemsFilter
960
+ ) => any;
961
+
962
+ export declare const ListCustomLineItemsInputFilterSensitiveLog: (
963
+ obj: ListCustomLineItemsInput
964
+ ) => any;
965
+
966
+ export declare const ListCustomLineItemFlatChargeDetailsFilterSensitiveLog: (
967
+ obj: ListCustomLineItemFlatChargeDetails
968
+ ) => any;
969
+
970
+ export declare const ListCustomLineItemPercentageChargeDetailsFilterSensitiveLog: (
971
+ obj: ListCustomLineItemPercentageChargeDetails
972
+ ) => any;
973
+
974
+ export declare const ListCustomLineItemChargeDetailsFilterSensitiveLog: (
975
+ obj: ListCustomLineItemChargeDetails
976
+ ) => any;
977
+
978
+ export declare const CustomLineItemListElementFilterSensitiveLog: (
979
+ obj: CustomLineItemListElement
980
+ ) => any;
981
+
982
+ export declare const ListCustomLineItemsOutputFilterSensitiveLog: (
983
+ obj: ListCustomLineItemsOutput
984
+ ) => any;
985
+
986
+ export declare const ListResourcesAssociatedToCustomLineItemFilterFilterSensitiveLog: (
987
+ obj: ListResourcesAssociatedToCustomLineItemFilter
988
+ ) => any;
989
+
990
+ export declare const ListResourcesAssociatedToCustomLineItemInputFilterSensitiveLog: (
991
+ obj: ListResourcesAssociatedToCustomLineItemInput
992
+ ) => any;
993
+
994
+ export declare const ListResourcesAssociatedToCustomLineItemResponseElementFilterSensitiveLog: (
995
+ obj: ListResourcesAssociatedToCustomLineItemResponseElement
996
+ ) => any;
997
+
998
+ export declare const ListResourcesAssociatedToCustomLineItemOutputFilterSensitiveLog: (
999
+ obj: ListResourcesAssociatedToCustomLineItemOutput
1000
+ ) => any;
1001
+
1002
+ export declare const UpdateCustomLineItemFlatChargeDetailsFilterSensitiveLog: (
1003
+ obj: UpdateCustomLineItemFlatChargeDetails
1004
+ ) => any;
1005
+
1006
+ export declare const UpdateCustomLineItemPercentageChargeDetailsFilterSensitiveLog: (
1007
+ obj: UpdateCustomLineItemPercentageChargeDetails
1008
+ ) => any;
1009
+
1010
+ export declare const UpdateCustomLineItemChargeDetailsFilterSensitiveLog: (
1011
+ obj: UpdateCustomLineItemChargeDetails
1012
+ ) => any;
1013
+
1014
+ export declare const UpdateCustomLineItemInputFilterSensitiveLog: (
1015
+ obj: UpdateCustomLineItemInput
1016
+ ) => any;
1017
+
1018
+ export declare const UpdateCustomLineItemOutputFilterSensitiveLog: (
1019
+ obj: UpdateCustomLineItemOutput
1020
+ ) => any;
1021
+
1022
+ export declare const ListAccountAssociationsFilterFilterSensitiveLog: (
1023
+ obj: ListAccountAssociationsFilter
1024
+ ) => any;
1025
+
1026
+ export declare const ListAccountAssociationsInputFilterSensitiveLog: (
1027
+ obj: ListAccountAssociationsInput
1028
+ ) => any;
1029
+
1030
+ export declare const ListAccountAssociationsOutputFilterSensitiveLog: (
1031
+ obj: ListAccountAssociationsOutput
1032
+ ) => any;
1033
+
1034
+ export declare const ListBillingGroupCostReportsFilterFilterSensitiveLog: (
1035
+ obj: ListBillingGroupCostReportsFilter
1036
+ ) => any;
1037
+
1038
+ export declare const ListBillingGroupCostReportsInputFilterSensitiveLog: (
1039
+ obj: ListBillingGroupCostReportsInput
1040
+ ) => any;
1041
+
1042
+ export declare const BillingGroupCostReportElementFilterSensitiveLog: (
1043
+ obj: BillingGroupCostReportElement
1044
+ ) => any;
1045
+
1046
+ export declare const ListBillingGroupCostReportsOutputFilterSensitiveLog: (
1047
+ obj: ListBillingGroupCostReportsOutput
1048
+ ) => any;
1049
+
1050
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1051
+ obj: ListTagsForResourceRequest
1052
+ ) => any;
1053
+
1054
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1055
+ obj: ListTagsForResourceResponse
1056
+ ) => any;
1057
+
1058
+ export declare const CreatePricingPlanInputFilterSensitiveLog: (
1059
+ obj: CreatePricingPlanInput
1060
+ ) => any;
1061
+
1062
+ export declare const CreatePricingPlanOutputFilterSensitiveLog: (
1063
+ obj: CreatePricingPlanOutput
1064
+ ) => any;
1065
+
1066
+ export declare const DeletePricingPlanInputFilterSensitiveLog: (
1067
+ obj: DeletePricingPlanInput
1068
+ ) => any;
1069
+
1070
+ export declare const DeletePricingPlanOutputFilterSensitiveLog: (
1071
+ obj: DeletePricingPlanOutput
1072
+ ) => any;
1073
+
1074
+ export declare const DisassociatePricingRulesInputFilterSensitiveLog: (
1075
+ obj: DisassociatePricingRulesInput
1076
+ ) => any;
1077
+
1078
+ export declare const DisassociatePricingRulesOutputFilterSensitiveLog: (
1079
+ obj: DisassociatePricingRulesOutput
1080
+ ) => any;
1081
+
1082
+ export declare const ListPricingPlansFilterFilterSensitiveLog: (
1083
+ obj: ListPricingPlansFilter
1084
+ ) => any;
1085
+
1086
+ export declare const ListPricingPlansInputFilterSensitiveLog: (
1087
+ obj: ListPricingPlansInput
1088
+ ) => any;
1089
+
1090
+ export declare const PricingPlanListElementFilterSensitiveLog: (
1091
+ obj: PricingPlanListElement
1092
+ ) => any;
1093
+
1094
+ export declare const ListPricingPlansOutputFilterSensitiveLog: (
1095
+ obj: ListPricingPlansOutput
1096
+ ) => any;
1097
+
1098
+ export declare const ListPricingPlansAssociatedWithPricingRuleInputFilterSensitiveLog: (
1099
+ obj: ListPricingPlansAssociatedWithPricingRuleInput
1100
+ ) => any;
1101
+
1102
+ export declare const ListPricingPlansAssociatedWithPricingRuleOutputFilterSensitiveLog: (
1103
+ obj: ListPricingPlansAssociatedWithPricingRuleOutput
1104
+ ) => any;
1105
+
1106
+ export declare const UpdatePricingPlanInputFilterSensitiveLog: (
1107
+ obj: UpdatePricingPlanInput
1108
+ ) => any;
1109
+
1110
+ export declare const UpdatePricingPlanOutputFilterSensitiveLog: (
1111
+ obj: UpdatePricingPlanOutput
1112
+ ) => any;
1113
+
1114
+ export declare const CreatePricingRuleInputFilterSensitiveLog: (
1115
+ obj: CreatePricingRuleInput
1116
+ ) => any;
1117
+
1118
+ export declare const CreatePricingRuleOutputFilterSensitiveLog: (
1119
+ obj: CreatePricingRuleOutput
1120
+ ) => any;
1121
+
1122
+ export declare const DeletePricingRuleInputFilterSensitiveLog: (
1123
+ obj: DeletePricingRuleInput
1124
+ ) => any;
1125
+
1126
+ export declare const DeletePricingRuleOutputFilterSensitiveLog: (
1127
+ obj: DeletePricingRuleOutput
1128
+ ) => any;
1129
+
1130
+ export declare const ListPricingRulesFilterFilterSensitiveLog: (
1131
+ obj: ListPricingRulesFilter
1132
+ ) => any;
1133
+
1134
+ export declare const ListPricingRulesInputFilterSensitiveLog: (
1135
+ obj: ListPricingRulesInput
1136
+ ) => any;
1137
+
1138
+ export declare const PricingRuleListElementFilterSensitiveLog: (
1139
+ obj: PricingRuleListElement
1140
+ ) => any;
1141
+
1142
+ export declare const ListPricingRulesOutputFilterSensitiveLog: (
1143
+ obj: ListPricingRulesOutput
1144
+ ) => any;
1145
+
1146
+ export declare const ListPricingRulesAssociatedToPricingPlanInputFilterSensitiveLog: (
1147
+ obj: ListPricingRulesAssociatedToPricingPlanInput
1148
+ ) => any;
1149
+
1150
+ export declare const ListPricingRulesAssociatedToPricingPlanOutputFilterSensitiveLog: (
1151
+ obj: ListPricingRulesAssociatedToPricingPlanOutput
1152
+ ) => any;
1153
+
1154
+ export declare const UpdatePricingRuleInputFilterSensitiveLog: (
1155
+ obj: UpdatePricingRuleInput
1156
+ ) => any;
1157
+
1158
+ export declare const UpdatePricingRuleOutputFilterSensitiveLog: (
1159
+ obj: UpdatePricingRuleOutput
1160
+ ) => any;
1161
+
1162
+ export declare const TagResourceRequestFilterSensitiveLog: (
1163
+ obj: TagResourceRequest
1164
+ ) => any;
1165
+
1166
+ export declare const TagResourceResponseFilterSensitiveLog: (
1167
+ obj: TagResourceResponse
1168
+ ) => any;
1169
+
1170
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1171
+ obj: UntagResourceRequest
1172
+ ) => any;
1173
+
1174
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1175
+ obj: UntagResourceResponse
1176
+ ) => any;