@aws-sdk/client-billingconductor 3.204.0 → 3.206.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 +3 -4
- package/dist-cjs/Billingconductor.js +15 -0
- package/dist-cjs/commands/ListCustomLineItemVersionsCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +5 -5
- package/dist-cjs/models/models_0.js +42 -3
- package/dist-cjs/pagination/ListCustomLineItemVersionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +119 -2
- package/dist-es/Billingconductor.js +15 -0
- package/dist-es/commands/ListCustomLineItemVersionsCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +5 -5
- package/dist-es/models/models_0.js +34 -0
- package/dist-es/pagination/ListCustomLineItemVersionsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-types/Billingconductor.d.ts +16 -15
- package/dist-types/BillingconductorClient.d.ts +6 -6
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +2 -7
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +37 -0
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +200 -99
- package/dist-types/pagination/ListCustomLineItemVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/Billingconductor.d.ts +17 -0
- package/dist-types/ts3.4/BillingconductorClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListCustomLineItemVersionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +60 -1
- package/dist-types/ts3.4/pagination/ListCustomLineItemVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -14,12 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* <p>
|
|
18
|
-
* <i>
|
|
19
|
-
* <b>Amazon Web Services Billing Conductor is in beta release and is subject to change. Your use of Amazon Web Services Billing Conductor is subject to the Beta Service Participation terms of the <a href="https://aws.amazon.com/service-terms/">Amazon Web Services Service Terms</a> (Section 1.10).</b>
|
|
20
|
-
* </i>
|
|
21
|
-
* </p>
|
|
22
|
-
* <p> A representation of a linked account. </p>
|
|
17
|
+
* <p> A representation of a linked account. </p>
|
|
23
18
|
*/
|
|
24
19
|
export interface AccountAssociationsListElement {
|
|
25
20
|
/**
|
|
@@ -78,6 +73,13 @@ export interface AssociateAccountsOutput {
|
|
|
78
73
|
*/
|
|
79
74
|
Arn?: string;
|
|
80
75
|
}
|
|
76
|
+
export declare enum ConflictExceptionReason {
|
|
77
|
+
PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT = "PRICING_PLAN_ATTACHED_TO_BILLING_GROUP_DELETE_CONFLICT",
|
|
78
|
+
PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT = "PRICING_RULE_ATTACHED_TO_PRICING_PLAN_DELETE_CONFLICT",
|
|
79
|
+
PRICING_RULE_IN_PRICING_PLAN_CONFLICT = "PRICING_RULE_IN_PRICING_PLAN_CONFLICT",
|
|
80
|
+
RESOURCE_NAME_CONFLICT = "RESOURCE_NAME_CONFLICT",
|
|
81
|
+
WRITE_CONFLICT_RETRY = "WRITE_CONFLICT_RETRY"
|
|
82
|
+
}
|
|
81
83
|
/**
|
|
82
84
|
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
83
85
|
* </p>
|
|
@@ -96,6 +98,11 @@ export declare class ConflictException extends __BaseException {
|
|
|
96
98
|
* </p>
|
|
97
99
|
*/
|
|
98
100
|
ResourceType: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>Reason for the inconsistent state.
|
|
103
|
+
* </p>
|
|
104
|
+
*/
|
|
105
|
+
Reason?: ConflictExceptionReason | string;
|
|
99
106
|
/**
|
|
100
107
|
* @internal
|
|
101
108
|
*/
|
|
@@ -213,6 +220,7 @@ export declare enum ValidationExceptionReason {
|
|
|
213
220
|
ACCOUNTS_ALREADY_ASSOCIATED = "ACCOUNTS_ALREADY_ASSOCIATED",
|
|
214
221
|
ACCOUNTS_NOT_ASSOCIATED = "ACCOUNTS_NOT_ASSOCIATED",
|
|
215
222
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
223
|
+
CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS = "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS",
|
|
216
224
|
DUPLICATE_ACCOUNT = "DUPLICATE_ACCOUNT",
|
|
217
225
|
DUPLICATE_PRICINGRULE_ARNS = "DUPLICATE_PRICINGRULE_ARNS",
|
|
218
226
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
@@ -220,6 +228,7 @@ export declare enum ValidationExceptionReason {
|
|
|
220
228
|
ILLEGAL_BILLING_PERIOD = "ILLEGAL_BILLING_PERIOD",
|
|
221
229
|
ILLEGAL_BILLING_PERIOD_RANGE = "ILLEGAL_BILLING_PERIOD_RANGE",
|
|
222
230
|
ILLEGAL_CHARGE_DETAILS = "ILLEGAL_CHARGE_DETAILS",
|
|
231
|
+
ILLEGAL_CHILD_ASSOCIATE_RESOURCE = "ILLEGAL_CHILD_ASSOCIATE_RESOURCE",
|
|
223
232
|
ILLEGAL_CUSTOMLINEITEM = "ILLEGAL_CUSTOMLINEITEM",
|
|
224
233
|
ILLEGAL_CUSTOMLINEITEM_MODIFICATION = "ILLEGAL_CUSTOMLINEITEM_MODIFICATION",
|
|
225
234
|
ILLEGAL_CUSTOMLINEITEM_UPDATE = "ILLEGAL_CUSTOMLINEITEM_UPDATE",
|
|
@@ -231,7 +240,9 @@ export declare enum ValidationExceptionReason {
|
|
|
231
240
|
ILLEGAL_UPDATE_CHARGE_DETAILS = "ILLEGAL_UPDATE_CHARGE_DETAILS",
|
|
232
241
|
INVALID_ARN = "INVALID_ARN",
|
|
233
242
|
INVALID_BILLINGVIEW_ARN = "INVALID_BILLINGVIEW_ARN",
|
|
243
|
+
INVALID_BILLING_GROUP = "INVALID_BILLING_GROUP",
|
|
234
244
|
INVALID_BILLING_GROUP_STATUS = "INVALID_BILLING_GROUP_STATUS",
|
|
245
|
+
INVALID_BILLING_PERIOD_FOR_OPERATION = "INVALID_BILLING_PERIOD_FOR_OPERATION",
|
|
235
246
|
INVALID_TIME_RANGE = "INVALID_TIME_RANGE",
|
|
236
247
|
MISMATCHED_BILLINGGROUP_ARN = "MISMATCHED_BILLINGGROUP_ARN",
|
|
237
248
|
MISMATCHED_BILLINGVIEW_ARN = "MISMATCHED_BILLINGVIEW_ARN",
|
|
@@ -303,6 +314,7 @@ export declare enum AssociateResourceErrorReason {
|
|
|
303
314
|
ILLEGAL_CUSTOMLINEITEM = "ILLEGAL_CUSTOMLINEITEM",
|
|
304
315
|
INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
|
|
305
316
|
INVALID_ARN = "INVALID_ARN",
|
|
317
|
+
INVALID_BILLING_PERIOD_RANGE = "INVALID_BILLING_PERIOD_RANGE",
|
|
306
318
|
SERVICE_LIMIT_EXCEEDED = "SERVICE_LIMIT_EXCEEDED"
|
|
307
319
|
}
|
|
308
320
|
/**
|
|
@@ -312,15 +324,11 @@ export declare enum AssociateResourceErrorReason {
|
|
|
312
324
|
*/
|
|
313
325
|
export interface AssociateResourceError {
|
|
314
326
|
/**
|
|
315
|
-
* <p>
|
|
316
|
-
* The reason the resource association failed.
|
|
317
|
-
* </p>
|
|
327
|
+
* <p> The reason why the resource association failed. </p>
|
|
318
328
|
*/
|
|
319
329
|
Message?: string;
|
|
320
330
|
/**
|
|
321
|
-
* <p>
|
|
322
|
-
* A static error code that used to classify the type of failure.
|
|
323
|
-
* </p>
|
|
331
|
+
* <p> A static error code that's used to classify the type of failure. </p>
|
|
324
332
|
*/
|
|
325
333
|
Reason?: AssociateResourceErrorReason | string;
|
|
326
334
|
}
|
|
@@ -350,9 +358,7 @@ export interface AssociateResourceResponseElement {
|
|
|
350
358
|
*/
|
|
351
359
|
export interface ComputationPreference {
|
|
352
360
|
/**
|
|
353
|
-
* <p>
|
|
354
|
-
* The Amazon Resource Name (ARN) of the pricing plan used to compute the Amazon Web Services charges for a billing group.
|
|
355
|
-
* </p>
|
|
361
|
+
* <p> The Amazon Resource Name (ARN) of the pricing plan that's used to compute the Amazon Web Services charges for a billing group. </p>
|
|
356
362
|
*/
|
|
357
363
|
PricingPlanArn: string | undefined;
|
|
358
364
|
}
|
|
@@ -386,8 +392,7 @@ export interface CreateBillingGroupInput {
|
|
|
386
392
|
*/
|
|
387
393
|
PrimaryAccountId?: string;
|
|
388
394
|
/**
|
|
389
|
-
* <p>The billing group
|
|
390
|
-
* </p>
|
|
395
|
+
* <p>The description of the billing group. </p>
|
|
391
396
|
*/
|
|
392
397
|
Description?: string;
|
|
393
398
|
/**
|
|
@@ -404,7 +409,7 @@ export interface CreateBillingGroupOutput {
|
|
|
404
409
|
}
|
|
405
410
|
export interface DeleteBillingGroupInput {
|
|
406
411
|
/**
|
|
407
|
-
* <p>The Amazon Resource Name (ARN) of the billing group you're deleting.</p>
|
|
412
|
+
* <p>The Amazon Resource Name (ARN) of the billing group that you're deleting.</p>
|
|
408
413
|
*/
|
|
409
414
|
Arn: string | undefined;
|
|
410
415
|
}
|
|
@@ -459,7 +464,7 @@ export interface ListBillingGroupsInput {
|
|
|
459
464
|
*/
|
|
460
465
|
MaxResults?: number;
|
|
461
466
|
/**
|
|
462
|
-
* <p>The pagination token used on subsequent calls to get billing groups.
|
|
467
|
+
* <p>The pagination token that's used on subsequent calls to get billing groups.
|
|
463
468
|
* </p>
|
|
464
469
|
*/
|
|
465
470
|
NextToken?: string;
|
|
@@ -479,8 +484,7 @@ export declare enum BillingGroupStatus {
|
|
|
479
484
|
*/
|
|
480
485
|
export interface BillingGroupListElement {
|
|
481
486
|
/**
|
|
482
|
-
* <p>The billing group
|
|
483
|
-
* </p>
|
|
487
|
+
* <p>The name of the billing group. </p>
|
|
484
488
|
*/
|
|
485
489
|
Name?: string;
|
|
486
490
|
/**
|
|
@@ -489,8 +493,7 @@ export interface BillingGroupListElement {
|
|
|
489
493
|
*/
|
|
490
494
|
Arn?: string;
|
|
491
495
|
/**
|
|
492
|
-
* <p>The billing group
|
|
493
|
-
* </p>
|
|
496
|
+
* <p>The description of the billing group. </p>
|
|
494
497
|
*/
|
|
495
498
|
Description?: string;
|
|
496
499
|
/**
|
|
@@ -510,14 +513,12 @@ export interface BillingGroupListElement {
|
|
|
510
513
|
Size?: number;
|
|
511
514
|
/**
|
|
512
515
|
* <p>
|
|
513
|
-
* The time the billing group was created.
|
|
516
|
+
* The time when the billing group was created.
|
|
514
517
|
* </p>
|
|
515
518
|
*/
|
|
516
519
|
CreationTime?: number;
|
|
517
520
|
/**
|
|
518
|
-
* <p>
|
|
519
|
-
* The most recent time the billing group was modified.
|
|
520
|
-
* </p>
|
|
521
|
+
* <p> The most recent time when the billing group was modified. </p>
|
|
521
522
|
*/
|
|
522
523
|
LastModifiedTime?: number;
|
|
523
524
|
/**
|
|
@@ -538,7 +539,7 @@ export interface ListBillingGroupsOutput {
|
|
|
538
539
|
*/
|
|
539
540
|
BillingGroups?: BillingGroupListElement[];
|
|
540
541
|
/**
|
|
541
|
-
* <p>The pagination token used on subsequent calls to get billing groups.
|
|
542
|
+
* <p>The pagination token that's used on subsequent calls to get billing groups.
|
|
542
543
|
* </p>
|
|
543
544
|
*/
|
|
544
545
|
NextToken?: string;
|
|
@@ -607,9 +608,7 @@ export interface UpdateBillingGroupOutput {
|
|
|
607
608
|
*/
|
|
608
609
|
Size?: number;
|
|
609
610
|
/**
|
|
610
|
-
* <p>
|
|
611
|
-
* The most recent time the billing group was modified.
|
|
612
|
-
* </p>
|
|
611
|
+
* <p> The most recent time when the billing group was modified. </p>
|
|
613
612
|
*/
|
|
614
613
|
LastModifiedTime?: number;
|
|
615
614
|
/**
|
|
@@ -642,7 +641,7 @@ export interface CustomLineItemBillingPeriodRange {
|
|
|
642
641
|
* The inclusive end billing period that defines a billing period range where a custom line is applied.
|
|
643
642
|
* </p>
|
|
644
643
|
*/
|
|
645
|
-
ExclusiveEndBillingPeriod
|
|
644
|
+
ExclusiveEndBillingPeriod?: string;
|
|
646
645
|
}
|
|
647
646
|
export interface BatchAssociateResourcesToCustomLineItemInput {
|
|
648
647
|
/**
|
|
@@ -711,9 +710,7 @@ export interface DisassociateResourceResponseElement {
|
|
|
711
710
|
*/
|
|
712
711
|
Arn?: string;
|
|
713
712
|
/**
|
|
714
|
-
* <p>
|
|
715
|
-
* An <code>AssociateResourceError</code> shown if the resource disassociation fails.
|
|
716
|
-
* </p>
|
|
713
|
+
* <p> An <code>AssociateResourceError</code> that's shown if the resource disassociation fails. </p>
|
|
717
714
|
*/
|
|
718
715
|
Error?: AssociateResourceError;
|
|
719
716
|
}
|
|
@@ -733,7 +730,7 @@ export interface BatchDisassociateResourcesFromCustomLineItemOutput {
|
|
|
733
730
|
}
|
|
734
731
|
/**
|
|
735
732
|
* <p>
|
|
736
|
-
* A representation of the charge details associated with a flat custom line item.
|
|
733
|
+
* A representation of the charge details that are associated with a flat custom line item.
|
|
737
734
|
* </p>
|
|
738
735
|
*/
|
|
739
736
|
export interface CustomLineItemFlatChargeDetails {
|
|
@@ -746,7 +743,7 @@ export interface CustomLineItemFlatChargeDetails {
|
|
|
746
743
|
}
|
|
747
744
|
/**
|
|
748
745
|
* <p>
|
|
749
|
-
* A representation of the charge details associated with a percentage custom line item.
|
|
746
|
+
* A representation of the charge details that are associated with a percentage custom line item.
|
|
750
747
|
* </p>
|
|
751
748
|
*/
|
|
752
749
|
export interface CustomLineItemPercentageChargeDetails {
|
|
@@ -897,7 +894,7 @@ export interface ListCustomLineItemsInput {
|
|
|
897
894
|
MaxResults?: number;
|
|
898
895
|
/**
|
|
899
896
|
* <p>
|
|
900
|
-
* The pagination token used on subsequent calls to get custom line items (FFLIs).
|
|
897
|
+
* The pagination token that's used on subsequent calls to get custom line items (FFLIs).
|
|
901
898
|
* </p>
|
|
902
899
|
*/
|
|
903
900
|
NextToken?: string;
|
|
@@ -909,7 +906,7 @@ export interface ListCustomLineItemsInput {
|
|
|
909
906
|
}
|
|
910
907
|
/**
|
|
911
908
|
* <p>
|
|
912
|
-
* A representation of the charge details associated with a flat custom line item.
|
|
909
|
+
* A representation of the charge details that are associated with a flat custom line item.
|
|
913
910
|
* </p>
|
|
914
911
|
*/
|
|
915
912
|
export interface ListCustomLineItemFlatChargeDetails {
|
|
@@ -922,7 +919,7 @@ export interface ListCustomLineItemFlatChargeDetails {
|
|
|
922
919
|
}
|
|
923
920
|
/**
|
|
924
921
|
* <p>
|
|
925
|
-
* A representation of the charge details associated with a percentage custom line item.
|
|
922
|
+
* A representation of the charge details that are associated with a percentage custom line item.
|
|
926
923
|
* </p>
|
|
927
924
|
*/
|
|
928
925
|
export interface ListCustomLineItemPercentageChargeDetails {
|
|
@@ -998,7 +995,7 @@ export interface CustomLineItemListElement {
|
|
|
998
995
|
Description?: string;
|
|
999
996
|
/**
|
|
1000
997
|
* <p>
|
|
1001
|
-
* The product code associated with the custom line item.
|
|
998
|
+
* The product code that's associated with the custom line item.
|
|
1002
999
|
* </p>
|
|
1003
1000
|
*/
|
|
1004
1001
|
ProductCode?: string;
|
|
@@ -1014,9 +1011,7 @@ export interface CustomLineItemListElement {
|
|
|
1014
1011
|
*/
|
|
1015
1012
|
CreationTime?: number;
|
|
1016
1013
|
/**
|
|
1017
|
-
* <p>
|
|
1018
|
-
* The most recent time the custom line item was modified.
|
|
1019
|
-
* </p>
|
|
1014
|
+
* <p> The most recent time when the custom line item was modified. </p>
|
|
1020
1015
|
*/
|
|
1021
1016
|
LastModifiedTime?: number;
|
|
1022
1017
|
/**
|
|
@@ -1035,11 +1030,112 @@ export interface ListCustomLineItemsOutput {
|
|
|
1035
1030
|
CustomLineItems?: CustomLineItemListElement[];
|
|
1036
1031
|
/**
|
|
1037
1032
|
* <p>
|
|
1038
|
-
* The pagination token used on subsequent calls to get custom line items (FFLIs).
|
|
1033
|
+
* The pagination token that's used on subsequent calls to get custom line items (FFLIs).
|
|
1039
1034
|
* </p>
|
|
1040
1035
|
*/
|
|
1041
1036
|
NextToken?: string;
|
|
1042
1037
|
}
|
|
1038
|
+
/**
|
|
1039
|
+
* <p>A billing period filter that specifies the custom line item versions to retrieve.</p>
|
|
1040
|
+
*/
|
|
1041
|
+
export interface ListCustomLineItemVersionsBillingPeriodRangeFilter {
|
|
1042
|
+
/**
|
|
1043
|
+
* <p>The inclusive start billing period that defines a billing period range where a custom line item version is applied.</p>
|
|
1044
|
+
*/
|
|
1045
|
+
StartBillingPeriod?: string;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>The exclusive end billing period that defines a billing period range where a custom line item version is applied.</p>
|
|
1048
|
+
*/
|
|
1049
|
+
EndBillingPeriod?: string;
|
|
1050
|
+
}
|
|
1051
|
+
/**
|
|
1052
|
+
* <p>A filter that specifies the billing period range where the custom line item versions reside.</p>
|
|
1053
|
+
*/
|
|
1054
|
+
export interface ListCustomLineItemVersionsFilter {
|
|
1055
|
+
/**
|
|
1056
|
+
* <p>The billing period range in which the custom line item version is applied.</p>
|
|
1057
|
+
*/
|
|
1058
|
+
BillingPeriodRange?: ListCustomLineItemVersionsBillingPeriodRangeFilter;
|
|
1059
|
+
}
|
|
1060
|
+
export interface ListCustomLineItemVersionsInput {
|
|
1061
|
+
/**
|
|
1062
|
+
* <p>The Amazon Resource Name (ARN) for the custom line item.</p>
|
|
1063
|
+
*/
|
|
1064
|
+
Arn: string | undefined;
|
|
1065
|
+
/**
|
|
1066
|
+
* <p>The maximum number of custom line item versions to retrieve.</p>
|
|
1067
|
+
*/
|
|
1068
|
+
MaxResults?: number;
|
|
1069
|
+
/**
|
|
1070
|
+
* <p>The pagination token that's used on subsequent calls to retrieve custom line item versions.</p>
|
|
1071
|
+
*/
|
|
1072
|
+
NextToken?: string;
|
|
1073
|
+
/**
|
|
1074
|
+
* <p>A <code>ListCustomLineItemVersionsFilter</code> that specifies the billing period range in which the custom line item versions are applied.</p>
|
|
1075
|
+
*/
|
|
1076
|
+
Filters?: ListCustomLineItemVersionsFilter;
|
|
1077
|
+
}
|
|
1078
|
+
/**
|
|
1079
|
+
* <p>A representation of a custom line item version.</p>
|
|
1080
|
+
*/
|
|
1081
|
+
export interface CustomLineItemVersionListElement {
|
|
1082
|
+
/**
|
|
1083
|
+
* <p>The name of the custom line item.</p>
|
|
1084
|
+
*/
|
|
1085
|
+
Name?: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* <p>
|
|
1088
|
+
* A representation of the charge details of a custom line item.
|
|
1089
|
+
* </p>
|
|
1090
|
+
*/
|
|
1091
|
+
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
1092
|
+
/**
|
|
1093
|
+
* <p>The charge value currency of the custom line item.</p>
|
|
1094
|
+
*/
|
|
1095
|
+
CurrencyCode?: CurrencyCode | string;
|
|
1096
|
+
/**
|
|
1097
|
+
* <p>The description of the custom line item.</p>
|
|
1098
|
+
*/
|
|
1099
|
+
Description?: string;
|
|
1100
|
+
/**
|
|
1101
|
+
* <p>The product code that’s associated with the custom line item.</p>
|
|
1102
|
+
*/
|
|
1103
|
+
ProductCode?: string;
|
|
1104
|
+
/**
|
|
1105
|
+
* <p>The Amazon Resource Name (ARN) of the billing group that the custom line item applies to.</p>
|
|
1106
|
+
*/
|
|
1107
|
+
BillingGroupArn?: string;
|
|
1108
|
+
/**
|
|
1109
|
+
* <p>The time when the custom line item version was created.</p>
|
|
1110
|
+
*/
|
|
1111
|
+
CreationTime?: number;
|
|
1112
|
+
/**
|
|
1113
|
+
* <p>The most recent time that the custom line item version was modified.</p>
|
|
1114
|
+
*/
|
|
1115
|
+
LastModifiedTime?: number;
|
|
1116
|
+
/**
|
|
1117
|
+
* <p>The number of resources that are associated with the custom line item.</p>
|
|
1118
|
+
*/
|
|
1119
|
+
AssociationSize?: number;
|
|
1120
|
+
/**
|
|
1121
|
+
* <p>The start billing period of the custom line item version.</p>
|
|
1122
|
+
*/
|
|
1123
|
+
StartBillingPeriod?: string;
|
|
1124
|
+
/**
|
|
1125
|
+
* <p>The end billing period of the custom line item version.</p>
|
|
1126
|
+
*/
|
|
1127
|
+
EndBillingPeriod?: string;
|
|
1128
|
+
}
|
|
1129
|
+
export interface ListCustomLineItemVersionsOutput {
|
|
1130
|
+
/**
|
|
1131
|
+
* <p>A list of <code>CustomLineItemVersionListElements</code> that are received.</p>
|
|
1132
|
+
*/
|
|
1133
|
+
CustomLineItemVersions?: CustomLineItemVersionListElement[];
|
|
1134
|
+
/**
|
|
1135
|
+
* <p>The pagination token that's used on subsequent calls to retrieve custom line item versions.</p>
|
|
1136
|
+
*/
|
|
1137
|
+
NextToken?: string;
|
|
1138
|
+
}
|
|
1043
1139
|
export declare enum CustomLineItemRelationship {
|
|
1044
1140
|
CHILD = "CHILD",
|
|
1045
1141
|
PARENT = "PARENT"
|
|
@@ -1077,9 +1173,7 @@ export interface ListResourcesAssociatedToCustomLineItemInput {
|
|
|
1077
1173
|
*/
|
|
1078
1174
|
MaxResults?: number;
|
|
1079
1175
|
/**
|
|
1080
|
-
* <p>
|
|
1081
|
-
* (Optional) The pagination token returned by a previous request.
|
|
1082
|
-
* </p>
|
|
1176
|
+
* <p> (Optional) The pagination token that's returned by a previous request. </p>
|
|
1083
1177
|
*/
|
|
1084
1178
|
NextToken?: string;
|
|
1085
1179
|
/**
|
|
@@ -1107,6 +1201,10 @@ export interface ListResourcesAssociatedToCustomLineItemResponseElement {
|
|
|
1107
1201
|
* </p>
|
|
1108
1202
|
*/
|
|
1109
1203
|
Relationship?: CustomLineItemRelationship | string;
|
|
1204
|
+
/**
|
|
1205
|
+
* <p>The end billing period of the associated resource.</p>
|
|
1206
|
+
*/
|
|
1207
|
+
EndBillingPeriod?: string;
|
|
1110
1208
|
}
|
|
1111
1209
|
export interface ListResourcesAssociatedToCustomLineItemOutput {
|
|
1112
1210
|
/**
|
|
@@ -1130,7 +1228,7 @@ export interface ListResourcesAssociatedToCustomLineItemOutput {
|
|
|
1130
1228
|
}
|
|
1131
1229
|
/**
|
|
1132
1230
|
* <p>
|
|
1133
|
-
* A representation of the new charge details associated with a flat custom line item.
|
|
1231
|
+
* A representation of the new charge details that are associated with a flat custom line item.
|
|
1134
1232
|
* </p>
|
|
1135
1233
|
*/
|
|
1136
1234
|
export interface UpdateCustomLineItemFlatChargeDetails {
|
|
@@ -1143,7 +1241,7 @@ export interface UpdateCustomLineItemFlatChargeDetails {
|
|
|
1143
1241
|
}
|
|
1144
1242
|
/**
|
|
1145
1243
|
* <p>
|
|
1146
|
-
* A representation of the new charge details associated with a percentage custom line item.
|
|
1244
|
+
* A representation of the new charge details that are associated with a percentage custom line item.
|
|
1147
1245
|
* </p>
|
|
1148
1246
|
*/
|
|
1149
1247
|
export interface UpdateCustomLineItemPercentageChargeDetails {
|
|
@@ -1237,9 +1335,7 @@ export interface UpdateCustomLineItemOutput {
|
|
|
1237
1335
|
*/
|
|
1238
1336
|
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
1239
1337
|
/**
|
|
1240
|
-
* <p>
|
|
1241
|
-
* The most recent time the custom line item was modified.
|
|
1242
|
-
* </p>
|
|
1338
|
+
* <p> The most recent time when the custom line item was modified. </p>
|
|
1243
1339
|
*/
|
|
1244
1340
|
LastModifiedTime?: number;
|
|
1245
1341
|
/**
|
|
@@ -1291,8 +1387,7 @@ export interface ListAccountAssociationsInput {
|
|
|
1291
1387
|
* <p>
|
|
1292
1388
|
* <code>MONITORED</code>: linked accounts that are associated to billing groups.</p>
|
|
1293
1389
|
* <p>
|
|
1294
|
-
* <code>UNMONITORED</code>: linked accounts that
|
|
1295
|
-
* groups.</p>
|
|
1390
|
+
* <code>UNMONITORED</code>: linked accounts that aren't associated to billing groups.</p>
|
|
1296
1391
|
* <p>
|
|
1297
1392
|
* <code>Billing Group Arn</code>: linked accounts that are associated to the provided
|
|
1298
1393
|
* billing group Arn. </p>
|
|
@@ -1300,7 +1395,7 @@ export interface ListAccountAssociationsInput {
|
|
|
1300
1395
|
Filters?: ListAccountAssociationsFilter;
|
|
1301
1396
|
/**
|
|
1302
1397
|
* <p>
|
|
1303
|
-
* The pagination token used on subsequent calls to retrieve accounts.
|
|
1398
|
+
* The pagination token that's used on subsequent calls to retrieve accounts.
|
|
1304
1399
|
* </p>
|
|
1305
1400
|
*/
|
|
1306
1401
|
NextToken?: string;
|
|
@@ -1312,7 +1407,7 @@ export interface ListAccountAssociationsOutput {
|
|
|
1312
1407
|
LinkedAccounts?: AccountAssociationsListElement[];
|
|
1313
1408
|
/**
|
|
1314
1409
|
* <p>
|
|
1315
|
-
* The pagination token used on subsequent calls to get accounts.
|
|
1410
|
+
* The pagination token that's used on subsequent calls to get accounts.
|
|
1316
1411
|
* </p>
|
|
1317
1412
|
*/
|
|
1318
1413
|
NextToken?: string;
|
|
@@ -1340,7 +1435,7 @@ export interface ListBillingGroupCostReportsInput {
|
|
|
1340
1435
|
*/
|
|
1341
1436
|
MaxResults?: number;
|
|
1342
1437
|
/**
|
|
1343
|
-
* <p>The pagination token used on subsequent calls to get reports.
|
|
1438
|
+
* <p>The pagination token that's used on subsequent calls to get reports.
|
|
1344
1439
|
* </p>
|
|
1345
1440
|
*/
|
|
1346
1441
|
NextToken?: string;
|
|
@@ -1394,7 +1489,7 @@ export interface ListBillingGroupCostReportsOutput {
|
|
|
1394
1489
|
*/
|
|
1395
1490
|
BillingGroupCostReports?: BillingGroupCostReportElement[];
|
|
1396
1491
|
/**
|
|
1397
|
-
* <p>The pagination token used on subsequent calls to get reports.
|
|
1492
|
+
* <p>The pagination token that's used on subsequent calls to get reports.
|
|
1398
1493
|
* </p>
|
|
1399
1494
|
*/
|
|
1400
1495
|
NextToken?: string;
|
|
@@ -1423,13 +1518,11 @@ export interface CreatePricingPlanInput {
|
|
|
1423
1518
|
*/
|
|
1424
1519
|
ClientToken?: string;
|
|
1425
1520
|
/**
|
|
1426
|
-
* <p>The pricing plan
|
|
1427
|
-
* </p>
|
|
1521
|
+
* <p>The name of the pricing plan. The names must be unique to each pricing plan. </p>
|
|
1428
1522
|
*/
|
|
1429
1523
|
Name: string | undefined;
|
|
1430
1524
|
/**
|
|
1431
|
-
* <p>The pricing plan
|
|
1432
|
-
* </p>
|
|
1525
|
+
* <p>The description of the pricing plan. </p>
|
|
1433
1526
|
*/
|
|
1434
1527
|
Description?: string;
|
|
1435
1528
|
/**
|
|
@@ -1451,7 +1544,7 @@ export interface CreatePricingPlanOutput {
|
|
|
1451
1544
|
}
|
|
1452
1545
|
export interface DeletePricingPlanInput {
|
|
1453
1546
|
/**
|
|
1454
|
-
* <p>The Amazon Resource Name (ARN) of the pricing plan you're deleting. </p>
|
|
1547
|
+
* <p>The Amazon Resource Name (ARN) of the pricing plan that you're deleting. </p>
|
|
1455
1548
|
*/
|
|
1456
1549
|
Arn: string | undefined;
|
|
1457
1550
|
}
|
|
@@ -1505,7 +1598,7 @@ export interface ListPricingPlansInput {
|
|
|
1505
1598
|
*/
|
|
1506
1599
|
MaxResults?: number;
|
|
1507
1600
|
/**
|
|
1508
|
-
* <p>The pagination token used on subsequent call to get pricing plans.
|
|
1601
|
+
* <p>The pagination token that's used on subsequent call to get pricing plans.
|
|
1509
1602
|
* </p>
|
|
1510
1603
|
*/
|
|
1511
1604
|
NextToken?: string;
|
|
@@ -1532,20 +1625,18 @@ export interface PricingPlanListElement {
|
|
|
1532
1625
|
Description?: string;
|
|
1533
1626
|
/**
|
|
1534
1627
|
* <p>
|
|
1535
|
-
* The pricing rules count currently associated with this pricing plan list element.
|
|
1628
|
+
* The pricing rules count that's currently associated with this pricing plan list element.
|
|
1536
1629
|
* </p>
|
|
1537
1630
|
*/
|
|
1538
1631
|
Size?: number;
|
|
1539
1632
|
/**
|
|
1540
1633
|
* <p>
|
|
1541
|
-
* The time the pricing plan was created.
|
|
1634
|
+
* The time when the pricing plan was created.
|
|
1542
1635
|
* </p>
|
|
1543
1636
|
*/
|
|
1544
1637
|
CreationTime?: number;
|
|
1545
1638
|
/**
|
|
1546
|
-
* <p>
|
|
1547
|
-
* The most recent time the pricing plan was modified.
|
|
1548
|
-
* </p>
|
|
1639
|
+
* <p> The most recent time when the pricing plan was modified. </p>
|
|
1549
1640
|
*/
|
|
1550
1641
|
LastModifiedTime?: number;
|
|
1551
1642
|
}
|
|
@@ -1562,7 +1653,7 @@ export interface ListPricingPlansOutput {
|
|
|
1562
1653
|
*/
|
|
1563
1654
|
PricingPlans?: PricingPlanListElement[];
|
|
1564
1655
|
/**
|
|
1565
|
-
* <p>The pagination token used on subsequent calls to get pricing plans.
|
|
1656
|
+
* <p>The pagination token that's used on subsequent calls to get pricing plans.
|
|
1566
1657
|
* </p>
|
|
1567
1658
|
*/
|
|
1568
1659
|
NextToken?: string;
|
|
@@ -1604,7 +1695,7 @@ export interface ListPricingPlansAssociatedWithPricingRuleOutput {
|
|
|
1604
1695
|
PricingRuleArn?: string;
|
|
1605
1696
|
/**
|
|
1606
1697
|
* <p>
|
|
1607
|
-
* The list containing pricing plans associated with the requested pricing rule.
|
|
1698
|
+
* The list containing pricing plans that are associated with the requested pricing rule.
|
|
1608
1699
|
* </p>
|
|
1609
1700
|
*/
|
|
1610
1701
|
PricingPlanArns?: string[];
|
|
@@ -1617,7 +1708,7 @@ export interface ListPricingPlansAssociatedWithPricingRuleOutput {
|
|
|
1617
1708
|
}
|
|
1618
1709
|
export interface UpdatePricingPlanInput {
|
|
1619
1710
|
/**
|
|
1620
|
-
* <p>The Amazon Resource Name (ARN) of the pricing plan you're updating. </p>
|
|
1711
|
+
* <p>The Amazon Resource Name (ARN) of the pricing plan that you're updating. </p>
|
|
1621
1712
|
*/
|
|
1622
1713
|
Arn: string | undefined;
|
|
1623
1714
|
/**
|
|
@@ -1626,8 +1717,7 @@ export interface UpdatePricingPlanInput {
|
|
|
1626
1717
|
*/
|
|
1627
1718
|
Name?: string;
|
|
1628
1719
|
/**
|
|
1629
|
-
* <p>The pricing plan
|
|
1630
|
-
* </p>
|
|
1720
|
+
* <p>The description of the pricing plan. </p>
|
|
1631
1721
|
*/
|
|
1632
1722
|
Description?: string;
|
|
1633
1723
|
}
|
|
@@ -1650,14 +1740,12 @@ export interface UpdatePricingPlanOutput {
|
|
|
1650
1740
|
Description?: string;
|
|
1651
1741
|
/**
|
|
1652
1742
|
* <p>
|
|
1653
|
-
* The pricing rules count currently associated with this pricing plan list.
|
|
1743
|
+
* The pricing rules count that's currently associated with this pricing plan list.
|
|
1654
1744
|
* </p>
|
|
1655
1745
|
*/
|
|
1656
1746
|
Size?: number;
|
|
1657
1747
|
/**
|
|
1658
|
-
* <p>
|
|
1659
|
-
* The most recent time the pricing plan was modified.
|
|
1660
|
-
* </p>
|
|
1748
|
+
* <p> The most recent time when the pricing plan was modified. </p>
|
|
1661
1749
|
*/
|
|
1662
1750
|
LastModifiedTime?: number;
|
|
1663
1751
|
}
|
|
@@ -1671,9 +1759,8 @@ export declare enum PricingRuleType {
|
|
|
1671
1759
|
}
|
|
1672
1760
|
export interface CreatePricingRuleInput {
|
|
1673
1761
|
/**
|
|
1674
|
-
* <p>
|
|
1675
|
-
*
|
|
1676
|
-
* </p>
|
|
1762
|
+
* <p> The token that's needed to support idempotency. Idempotency isn't currently supported,
|
|
1763
|
+
* but will be implemented in a future update. </p>
|
|
1677
1764
|
*/
|
|
1678
1765
|
ClientToken?: string;
|
|
1679
1766
|
/**
|
|
@@ -1689,9 +1776,8 @@ export interface CreatePricingRuleInput {
|
|
|
1689
1776
|
*/
|
|
1690
1777
|
Description?: string;
|
|
1691
1778
|
/**
|
|
1692
|
-
* <p>
|
|
1693
|
-
*
|
|
1694
|
-
* </p>
|
|
1779
|
+
* <p> The scope of pricing rule that indicates if it's globally applicable, or it's
|
|
1780
|
+
* service-specific. </p>
|
|
1695
1781
|
*/
|
|
1696
1782
|
Scope: PricingRuleScope | string | undefined;
|
|
1697
1783
|
/**
|
|
@@ -1701,9 +1787,7 @@ export interface CreatePricingRuleInput {
|
|
|
1701
1787
|
*/
|
|
1702
1788
|
Type: PricingRuleType | string | undefined;
|
|
1703
1789
|
/**
|
|
1704
|
-
* <p>
|
|
1705
|
-
* A percentage modifier applied on the public pricing rates.
|
|
1706
|
-
* </p>
|
|
1790
|
+
* <p> A percentage modifier that's applied on the public pricing rates. </p>
|
|
1707
1791
|
*/
|
|
1708
1792
|
ModifierPercentage: number | undefined;
|
|
1709
1793
|
/**
|
|
@@ -1727,7 +1811,7 @@ export interface CreatePricingRuleOutput {
|
|
|
1727
1811
|
}
|
|
1728
1812
|
export interface DeletePricingRuleInput {
|
|
1729
1813
|
/**
|
|
1730
|
-
* <p> The Amazon Resource Name (ARN) of the pricing rule you are deleting. </p>
|
|
1814
|
+
* <p> The Amazon Resource Name (ARN) of the pricing rule that you are deleting. </p>
|
|
1731
1815
|
*/
|
|
1732
1816
|
Arn: string | undefined;
|
|
1733
1817
|
}
|
|
@@ -1768,7 +1852,7 @@ export interface ListPricingRulesInput {
|
|
|
1768
1852
|
MaxResults?: number;
|
|
1769
1853
|
/**
|
|
1770
1854
|
* <p>
|
|
1771
|
-
* The pagination token used on subsequent call to get pricing rules.
|
|
1855
|
+
* The pagination token that's used on subsequent call to get pricing rules.
|
|
1772
1856
|
* </p>
|
|
1773
1857
|
*/
|
|
1774
1858
|
NextToken?: string;
|
|
@@ -1827,14 +1911,12 @@ export interface PricingRuleListElement {
|
|
|
1827
1911
|
AssociatedPricingPlanCount?: number;
|
|
1828
1912
|
/**
|
|
1829
1913
|
* <p>
|
|
1830
|
-
* The time the pricing rule was created.
|
|
1914
|
+
* The time when the pricing rule was created.
|
|
1831
1915
|
* </p>
|
|
1832
1916
|
*/
|
|
1833
1917
|
CreationTime?: number;
|
|
1834
1918
|
/**
|
|
1835
|
-
* <p>
|
|
1836
|
-
* The most recent time the pricing rule was modified.
|
|
1837
|
-
* </p>
|
|
1919
|
+
* <p> The most recent time when the pricing rule was modified. </p>
|
|
1838
1920
|
*/
|
|
1839
1921
|
LastModifiedTime?: number;
|
|
1840
1922
|
}
|
|
@@ -1853,7 +1935,7 @@ export interface ListPricingRulesOutput {
|
|
|
1853
1935
|
PricingRules?: PricingRuleListElement[];
|
|
1854
1936
|
/**
|
|
1855
1937
|
* <p>
|
|
1856
|
-
* The pagination token used on subsequent calls to get pricing rules.
|
|
1938
|
+
* The pagination token that's used on subsequent calls to get pricing rules.
|
|
1857
1939
|
* </p>
|
|
1858
1940
|
*/
|
|
1859
1941
|
NextToken?: string;
|
|
@@ -1895,7 +1977,7 @@ export interface ListPricingRulesAssociatedToPricingPlanOutput {
|
|
|
1895
1977
|
PricingPlanArn?: string;
|
|
1896
1978
|
/**
|
|
1897
1979
|
* <p>
|
|
1898
|
-
* A list containing pricing rules associated with the requested pricing plan.
|
|
1980
|
+
* A list containing pricing rules that are associated with the requested pricing plan.
|
|
1899
1981
|
* </p>
|
|
1900
1982
|
*/
|
|
1901
1983
|
PricingRuleArns?: string[];
|
|
@@ -1954,9 +2036,8 @@ export interface UpdatePricingRuleOutput {
|
|
|
1954
2036
|
*/
|
|
1955
2037
|
Description?: string;
|
|
1956
2038
|
/**
|
|
1957
|
-
* <p>
|
|
1958
|
-
*
|
|
1959
|
-
* </p>
|
|
2039
|
+
* <p> The scope of pricing rule that indicates if it's globally applicable, or it's
|
|
2040
|
+
* service-specific. </p>
|
|
1960
2041
|
*/
|
|
1961
2042
|
Scope?: PricingRuleScope | string;
|
|
1962
2043
|
/**
|
|
@@ -2190,6 +2271,26 @@ export declare const CustomLineItemListElementFilterSensitiveLog: (obj: CustomLi
|
|
|
2190
2271
|
* @internal
|
|
2191
2272
|
*/
|
|
2192
2273
|
export declare const ListCustomLineItemsOutputFilterSensitiveLog: (obj: ListCustomLineItemsOutput) => any;
|
|
2274
|
+
/**
|
|
2275
|
+
* @internal
|
|
2276
|
+
*/
|
|
2277
|
+
export declare const ListCustomLineItemVersionsBillingPeriodRangeFilterFilterSensitiveLog: (obj: ListCustomLineItemVersionsBillingPeriodRangeFilter) => any;
|
|
2278
|
+
/**
|
|
2279
|
+
* @internal
|
|
2280
|
+
*/
|
|
2281
|
+
export declare const ListCustomLineItemVersionsFilterFilterSensitiveLog: (obj: ListCustomLineItemVersionsFilter) => any;
|
|
2282
|
+
/**
|
|
2283
|
+
* @internal
|
|
2284
|
+
*/
|
|
2285
|
+
export declare const ListCustomLineItemVersionsInputFilterSensitiveLog: (obj: ListCustomLineItemVersionsInput) => any;
|
|
2286
|
+
/**
|
|
2287
|
+
* @internal
|
|
2288
|
+
*/
|
|
2289
|
+
export declare const CustomLineItemVersionListElementFilterSensitiveLog: (obj: CustomLineItemVersionListElement) => any;
|
|
2290
|
+
/**
|
|
2291
|
+
* @internal
|
|
2292
|
+
*/
|
|
2293
|
+
export declare const ListCustomLineItemVersionsOutputFilterSensitiveLog: (obj: ListCustomLineItemVersionsOutput) => any;
|
|
2193
2294
|
/**
|
|
2194
2295
|
* @internal
|
|
2195
2296
|
*/
|