@aws-sdk/client-billingconductor 3.370.0 → 3.378.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/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/AssociateAccountsCommand.d.ts +1 -1
- package/dist-types/commands/AssociatePricingRulesCommand.d.ts +1 -1
- package/dist-types/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/CreatePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/CreatePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBillingGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/DeletePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAccountsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociatePricingRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListBillingGroupCostReportsCommand.d.ts +1 -1
- package/dist-types/commands/ListBillingGroupsCommand.d.ts +5 -1
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomLineItemsCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingPlansCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBillingGroupCommand.d.ts +7 -1
- package/dist-types/commands/UpdateCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePricingRuleCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +155 -237
- package/dist-types/ts3.4/models/models_0.d.ts +13 -0
- package/package.json +35 -35
|
@@ -16,45 +16,40 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* @public
|
|
19
|
-
* <p>
|
|
19
|
+
* <p>A representation of a linked account.</p>
|
|
20
20
|
*/
|
|
21
21
|
export interface AccountAssociationsListElement {
|
|
22
22
|
/**
|
|
23
|
-
* <p>
|
|
24
|
-
* The associating array of account IDs.
|
|
25
|
-
* </p>
|
|
23
|
+
* <p>The associating array of account IDs.</p>
|
|
26
24
|
*/
|
|
27
25
|
AccountId?: string;
|
|
28
26
|
/**
|
|
29
|
-
* <p>
|
|
27
|
+
* <p>The Billing Group Arn that the linked account is associated to.</p>
|
|
30
28
|
*/
|
|
31
29
|
BillingGroupArn?: string;
|
|
32
30
|
/**
|
|
33
|
-
* <p>
|
|
34
|
-
* The Amazon Web Services account name.
|
|
35
|
-
* </p>
|
|
31
|
+
* <p>The Amazon Web Services account name.</p>
|
|
36
32
|
*/
|
|
37
33
|
AccountName?: string;
|
|
38
34
|
/**
|
|
39
|
-
* <p>
|
|
40
|
-
* The Amazon Web Services account email.
|
|
41
|
-
* </p>
|
|
35
|
+
* <p>The Amazon Web Services account email.</p>
|
|
42
36
|
*/
|
|
43
37
|
AccountEmail?: string;
|
|
44
38
|
}
|
|
45
39
|
/**
|
|
46
40
|
* @public
|
|
47
|
-
* <p>
|
|
48
|
-
* The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated family.
|
|
49
|
-
* </p>
|
|
41
|
+
* <p>The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated billing family.</p>
|
|
50
42
|
*/
|
|
51
43
|
export interface AccountGrouping {
|
|
52
44
|
/**
|
|
53
|
-
* <p>
|
|
54
|
-
* The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.
|
|
55
|
-
* </p>
|
|
45
|
+
* <p>The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.</p>
|
|
56
46
|
*/
|
|
57
47
|
LinkedAccountIds: string[] | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>Specifies if this billing group will automatically associate newly added
|
|
50
|
+
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
51
|
+
*/
|
|
52
|
+
AutoAssociate?: boolean;
|
|
58
53
|
}
|
|
59
54
|
/**
|
|
60
55
|
* @public
|
|
@@ -224,18 +219,15 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
224
219
|
}
|
|
225
220
|
/**
|
|
226
221
|
* @public
|
|
227
|
-
* <p>The field's information of a request that resulted in an exception
|
|
228
|
-
* </p>
|
|
222
|
+
* <p>The field's information of a request that resulted in an exception.</p>
|
|
229
223
|
*/
|
|
230
224
|
export interface ValidationExceptionField {
|
|
231
225
|
/**
|
|
232
|
-
* <p>The field name
|
|
233
|
-
* </p>
|
|
226
|
+
* <p>The field name.</p>
|
|
234
227
|
*/
|
|
235
228
|
Name: string | undefined;
|
|
236
229
|
/**
|
|
237
|
-
* <p>The message describing why the field failed validation
|
|
238
|
-
* </p>
|
|
230
|
+
* <p>The message describing why the field failed validation.</p>
|
|
239
231
|
*/
|
|
240
232
|
Message: string | undefined;
|
|
241
233
|
}
|
|
@@ -246,6 +238,7 @@ export interface ValidationExceptionField {
|
|
|
246
238
|
export declare const ValidationExceptionReason: {
|
|
247
239
|
readonly ACCOUNTS_ALREADY_ASSOCIATED: "ACCOUNTS_ALREADY_ASSOCIATED";
|
|
248
240
|
readonly ACCOUNTS_NOT_ASSOCIATED: "ACCOUNTS_NOT_ASSOCIATED";
|
|
241
|
+
readonly CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP: "CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP";
|
|
249
242
|
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
250
243
|
readonly CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS: "CUSTOM_LINE_ITEM_ASSOCIATION_EXISTS";
|
|
251
244
|
readonly DUPLICATE_ACCOUNT: "DUPLICATE_ACCOUNT";
|
|
@@ -299,6 +292,7 @@ export declare const ValidationExceptionReason: {
|
|
|
299
292
|
readonly PRIMARY_CANNOT_DISASSOCIATE: "PRIMARY_CANNOT_DISASSOCIATE";
|
|
300
293
|
readonly PRIMARY_NOT_ASSOCIATED: "PRIMARY_NOT_ASSOCIATED";
|
|
301
294
|
readonly TOO_MANY_ACCOUNTS_IN_REQUEST: "TOO_MANY_ACCOUNTS_IN_REQUEST";
|
|
295
|
+
readonly TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS: "TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS";
|
|
302
296
|
readonly TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST: "TOO_MANY_CUSTOMLINEITEMS_IN_REQUEST";
|
|
303
297
|
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
304
298
|
};
|
|
@@ -308,7 +302,7 @@ export declare const ValidationExceptionReason: {
|
|
|
308
302
|
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
309
303
|
/**
|
|
310
304
|
* @public
|
|
311
|
-
* <p>The input doesn't match with the constraints specified by Amazon Web Services
|
|
305
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services.</p>
|
|
312
306
|
*/
|
|
313
307
|
export declare class ValidationException extends __BaseException {
|
|
314
308
|
readonly name: "ValidationException";
|
|
@@ -374,45 +368,35 @@ export declare const AssociateResourceErrorReason: {
|
|
|
374
368
|
export type AssociateResourceErrorReason = (typeof AssociateResourceErrorReason)[keyof typeof AssociateResourceErrorReason];
|
|
375
369
|
/**
|
|
376
370
|
* @public
|
|
377
|
-
* <p>
|
|
378
|
-
* A representation of a resource association error.
|
|
379
|
-
* </p>
|
|
371
|
+
* <p>A representation of a resource association error.</p>
|
|
380
372
|
*/
|
|
381
373
|
export interface AssociateResourceError {
|
|
382
374
|
/**
|
|
383
|
-
* <p>
|
|
375
|
+
* <p>The reason why the resource association failed.</p>
|
|
384
376
|
*/
|
|
385
377
|
Message?: string;
|
|
386
378
|
/**
|
|
387
|
-
* <p>
|
|
379
|
+
* <p>A static error code that's used to classify the type of failure.</p>
|
|
388
380
|
*/
|
|
389
381
|
Reason?: AssociateResourceErrorReason | string;
|
|
390
382
|
}
|
|
391
383
|
/**
|
|
392
384
|
* @public
|
|
393
|
-
* <p>
|
|
394
|
-
* A resource association result for a percentage custom line item.
|
|
395
|
-
* </p>
|
|
385
|
+
* <p>A resource association result for a percentage custom line item.</p>
|
|
396
386
|
*/
|
|
397
387
|
export interface AssociateResourceResponseElement {
|
|
398
388
|
/**
|
|
399
|
-
* <p>
|
|
400
|
-
* The resource ARN that was associated to the custom line item.
|
|
401
|
-
* </p>
|
|
389
|
+
* <p>The resource ARN that was associated to the custom line item.</p>
|
|
402
390
|
*/
|
|
403
391
|
Arn?: string;
|
|
404
392
|
/**
|
|
405
|
-
* <p>
|
|
406
|
-
* An <code>AssociateResourceError</code> that will populate if the resource association fails.
|
|
407
|
-
* </p>
|
|
393
|
+
* <p>An <code>AssociateResourceError</code> that will populate if the resource association fails.</p>
|
|
408
394
|
*/
|
|
409
395
|
Error?: AssociateResourceError;
|
|
410
396
|
}
|
|
411
397
|
/**
|
|
412
398
|
* @public
|
|
413
|
-
* <p>
|
|
414
|
-
* The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.
|
|
415
|
-
* </p>
|
|
399
|
+
* <p>The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.</p>
|
|
416
400
|
*/
|
|
417
401
|
export interface ComputationPreference {
|
|
418
402
|
/**
|
|
@@ -438,7 +422,7 @@ export interface CreateBillingGroupInput {
|
|
|
438
422
|
Name: string | undefined;
|
|
439
423
|
/**
|
|
440
424
|
* <p>
|
|
441
|
-
* The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated family.
|
|
425
|
+
* The set of accounts that will be under the billing group. The set of accounts resemble the linked accounts in a consolidated billing family.
|
|
442
426
|
* </p>
|
|
443
427
|
*/
|
|
444
428
|
AccountGrouping: AccountGrouping | undefined;
|
|
@@ -528,16 +512,15 @@ export declare const BillingGroupStatus: {
|
|
|
528
512
|
export type BillingGroupStatus = (typeof BillingGroupStatus)[keyof typeof BillingGroupStatus];
|
|
529
513
|
/**
|
|
530
514
|
* @public
|
|
531
|
-
* <p>The filter that specifies the billing groups and pricing plans to retrieve billing group information
|
|
532
|
-
* </p>
|
|
515
|
+
* <p>The filter that specifies the billing groups and pricing plans to retrieve billing group information.</p>
|
|
533
516
|
*/
|
|
534
517
|
export interface ListBillingGroupsFilter {
|
|
535
518
|
/**
|
|
536
|
-
* <p>The list of billing group Amazon Resource Names (ARNs) to retrieve information
|
|
519
|
+
* <p>The list of billing group Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
537
520
|
*/
|
|
538
521
|
Arns?: string[];
|
|
539
522
|
/**
|
|
540
|
-
* <p>The pricing plan Amazon Resource Names (ARNs) to retrieve information
|
|
523
|
+
* <p>The pricing plan Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
541
524
|
*/
|
|
542
525
|
PricingPlan?: string;
|
|
543
526
|
/**
|
|
@@ -546,6 +529,11 @@ export interface ListBillingGroupsFilter {
|
|
|
546
529
|
* </p>
|
|
547
530
|
*/
|
|
548
531
|
Statuses?: (BillingGroupStatus | string)[];
|
|
532
|
+
/**
|
|
533
|
+
* <p>Specifies if this billing group will automatically associate newly added
|
|
534
|
+
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
535
|
+
*/
|
|
536
|
+
AutoAssociate?: boolean;
|
|
549
537
|
}
|
|
550
538
|
/**
|
|
551
539
|
* @public
|
|
@@ -574,58 +562,66 @@ export interface ListBillingGroupsInput {
|
|
|
574
562
|
}
|
|
575
563
|
/**
|
|
576
564
|
* @public
|
|
577
|
-
* <p>
|
|
578
|
-
*
|
|
565
|
+
* <p>Specifies if the billing group has the following
|
|
566
|
+
* features enabled.</p>
|
|
567
|
+
*/
|
|
568
|
+
export interface ListBillingGroupAccountGrouping {
|
|
569
|
+
/**
|
|
570
|
+
* <p>Specifies if this billing group will automatically associate newly added
|
|
571
|
+
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
572
|
+
*/
|
|
573
|
+
AutoAssociate?: boolean;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
* <p>A representation of a billing group.</p>
|
|
579
578
|
*/
|
|
580
579
|
export interface BillingGroupListElement {
|
|
581
580
|
/**
|
|
582
|
-
* <p>The name of the billing group
|
|
581
|
+
* <p>The name of the billing group.</p>
|
|
583
582
|
*/
|
|
584
583
|
Name?: string;
|
|
585
584
|
/**
|
|
586
|
-
* <p>The Amazon Resource Number (ARN) that can be used to uniquely identify the billing group
|
|
587
|
-
* </p>
|
|
585
|
+
* <p>The Amazon Resource Number (ARN) that can be used to uniquely identify the billing group.</p>
|
|
588
586
|
*/
|
|
589
587
|
Arn?: string;
|
|
590
588
|
/**
|
|
591
|
-
* <p>The description of the billing group
|
|
589
|
+
* <p>The description of the billing group.</p>
|
|
592
590
|
*/
|
|
593
591
|
Description?: string;
|
|
594
592
|
/**
|
|
595
|
-
* <p>The account ID that serves as the main account in a billing group
|
|
593
|
+
* <p>The account ID that serves as the main account in a billing group.</p>
|
|
596
594
|
*/
|
|
597
595
|
PrimaryAccountId?: string;
|
|
598
596
|
/**
|
|
599
|
-
* <p>
|
|
600
|
-
* The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.
|
|
601
|
-
* </p>
|
|
597
|
+
* <p>The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.</p>
|
|
602
598
|
*/
|
|
603
599
|
ComputationPreference?: ComputationPreference;
|
|
604
600
|
/**
|
|
605
|
-
* <p>The number of accounts in the particular billing group
|
|
606
|
-
* </p>
|
|
601
|
+
* <p>The number of accounts in the particular billing group.</p>
|
|
607
602
|
*/
|
|
608
603
|
Size?: number;
|
|
609
604
|
/**
|
|
610
|
-
* <p>
|
|
611
|
-
* The time when the billing group was created.
|
|
612
|
-
* </p>
|
|
605
|
+
* <p>The time when the billing group was created.</p>
|
|
613
606
|
*/
|
|
614
607
|
CreationTime?: number;
|
|
615
608
|
/**
|
|
616
|
-
* <p>
|
|
609
|
+
* <p>The most recent time when the billing group was modified.</p>
|
|
617
610
|
*/
|
|
618
611
|
LastModifiedTime?: number;
|
|
619
612
|
/**
|
|
620
|
-
* <p>The billing group status. Only one of the valid values can be used
|
|
621
|
-
* </p>
|
|
613
|
+
* <p>The billing group status. Only one of the valid values can be used.</p>
|
|
622
614
|
*/
|
|
623
615
|
Status?: BillingGroupStatus | string;
|
|
624
616
|
/**
|
|
625
|
-
* <p>The reason why the billing group is in its current status
|
|
626
|
-
* </p>
|
|
617
|
+
* <p>The reason why the billing group is in its current status.</p>
|
|
627
618
|
*/
|
|
628
619
|
StatusReason?: string;
|
|
620
|
+
/**
|
|
621
|
+
* <p>Specifies if the billing group has automatic account
|
|
622
|
+
* association (<code>AutoAssociate</code>) enabled.</p>
|
|
623
|
+
*/
|
|
624
|
+
AccountGrouping?: ListBillingGroupAccountGrouping;
|
|
629
625
|
}
|
|
630
626
|
/**
|
|
631
627
|
* @public
|
|
@@ -642,6 +638,18 @@ export interface ListBillingGroupsOutput {
|
|
|
642
638
|
*/
|
|
643
639
|
NextToken?: string;
|
|
644
640
|
}
|
|
641
|
+
/**
|
|
642
|
+
* @public
|
|
643
|
+
* <p>Specifies if the billing group has the following
|
|
644
|
+
* features enabled.</p>
|
|
645
|
+
*/
|
|
646
|
+
export interface UpdateBillingGroupAccountGrouping {
|
|
647
|
+
/**
|
|
648
|
+
* <p>Specifies if this billing group will automatically associate newly added
|
|
649
|
+
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
650
|
+
*/
|
|
651
|
+
AutoAssociate?: boolean;
|
|
652
|
+
}
|
|
645
653
|
/**
|
|
646
654
|
* @public
|
|
647
655
|
*/
|
|
@@ -671,6 +679,11 @@ export interface UpdateBillingGroupInput {
|
|
|
671
679
|
* </p>
|
|
672
680
|
*/
|
|
673
681
|
Description?: string;
|
|
682
|
+
/**
|
|
683
|
+
* <p>Specifies if the billing group has automatic account
|
|
684
|
+
* association (<code>AutoAssociate</code>) enabled.</p>
|
|
685
|
+
*/
|
|
686
|
+
AccountGrouping?: UpdateBillingGroupAccountGrouping;
|
|
674
687
|
}
|
|
675
688
|
/**
|
|
676
689
|
* @public
|
|
@@ -727,24 +740,23 @@ export interface UpdateBillingGroupOutput {
|
|
|
727
740
|
* </p>
|
|
728
741
|
*/
|
|
729
742
|
StatusReason?: string;
|
|
743
|
+
/**
|
|
744
|
+
* <p>Specifies if the billing group has automatic account
|
|
745
|
+
* association (<code>AutoAssociate</code>) enabled.</p>
|
|
746
|
+
*/
|
|
747
|
+
AccountGrouping?: UpdateBillingGroupAccountGrouping;
|
|
730
748
|
}
|
|
731
749
|
/**
|
|
732
750
|
* @public
|
|
733
|
-
* <p>
|
|
734
|
-
* The billing period range in which the custom line item request will be applied.
|
|
735
|
-
* </p>
|
|
751
|
+
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
736
752
|
*/
|
|
737
753
|
export interface CustomLineItemBillingPeriodRange {
|
|
738
754
|
/**
|
|
739
|
-
* <p>
|
|
740
|
-
* The inclusive start billing period that defines a billing period range where a custom line is applied.
|
|
741
|
-
* </p>
|
|
755
|
+
* <p>The inclusive start billing period that defines a billing period range where a custom line is applied.</p>
|
|
742
756
|
*/
|
|
743
757
|
InclusiveStartBillingPeriod: string | undefined;
|
|
744
758
|
/**
|
|
745
|
-
* <p>
|
|
746
|
-
* The inclusive end billing period that defines a billing period range where a custom line is applied.
|
|
747
|
-
* </p>
|
|
759
|
+
* <p>The inclusive end billing period that defines a billing period range where a custom line is applied.</p>
|
|
748
760
|
*/
|
|
749
761
|
ExclusiveEndBillingPeriod?: string;
|
|
750
762
|
}
|
|
@@ -765,9 +777,7 @@ export interface BatchAssociateResourcesToCustomLineItemInput {
|
|
|
765
777
|
*/
|
|
766
778
|
ResourceArns: string[] | undefined;
|
|
767
779
|
/**
|
|
768
|
-
* <p>
|
|
769
|
-
* The billing period range in which the custom line item request will be applied.
|
|
770
|
-
* </p>
|
|
780
|
+
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
771
781
|
*/
|
|
772
782
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
773
783
|
}
|
|
@@ -805,22 +815,17 @@ export interface BatchDisassociateResourcesFromCustomLineItemInput {
|
|
|
805
815
|
*/
|
|
806
816
|
ResourceArns: string[] | undefined;
|
|
807
817
|
/**
|
|
808
|
-
* <p>
|
|
809
|
-
* The billing period range in which the custom line item request will be applied.
|
|
810
|
-
* </p>
|
|
818
|
+
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
811
819
|
*/
|
|
812
820
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
813
821
|
}
|
|
814
822
|
/**
|
|
815
823
|
* @public
|
|
816
|
-
* <p>
|
|
817
|
-
* A resource disassociation result for a percentage custom line item.
|
|
818
|
-
* </p>
|
|
824
|
+
* <p>A resource disassociation result for a percentage custom line item.</p>
|
|
819
825
|
*/
|
|
820
826
|
export interface DisassociateResourceResponseElement {
|
|
821
827
|
/**
|
|
822
|
-
* <p>
|
|
823
|
-
* The resource ARN that was disassociated from the custom line item.
|
|
828
|
+
* <p>The resource ARN that was disassociated from the custom line item.
|
|
824
829
|
* </p>
|
|
825
830
|
*/
|
|
826
831
|
Arn?: string;
|
|
@@ -848,35 +853,26 @@ export interface BatchDisassociateResourcesFromCustomLineItemOutput {
|
|
|
848
853
|
}
|
|
849
854
|
/**
|
|
850
855
|
* @public
|
|
851
|
-
* <p>
|
|
852
|
-
* A representation of the charge details that are associated with a flat custom line item.
|
|
853
|
-
* </p>
|
|
856
|
+
* <p>A representation of the charge details that are associated with a flat custom line item.</p>
|
|
854
857
|
*/
|
|
855
858
|
export interface CustomLineItemFlatChargeDetails {
|
|
856
859
|
/**
|
|
857
|
-
* <p>
|
|
858
|
-
* The custom line item's fixed charge value in USD.
|
|
859
|
-
* </p>
|
|
860
|
+
* <p>The custom line item's fixed charge value in USD.</p>
|
|
860
861
|
*/
|
|
861
862
|
ChargeValue: number | undefined;
|
|
862
863
|
}
|
|
863
864
|
/**
|
|
864
865
|
* @public
|
|
865
|
-
* <p>
|
|
866
|
-
* A representation of the charge details that are associated with a percentage custom line item.
|
|
867
|
-
* </p>
|
|
866
|
+
* <p>A representation of the charge details that are associated with a percentage custom line item.</p>
|
|
868
867
|
*/
|
|
869
868
|
export interface CustomLineItemPercentageChargeDetails {
|
|
870
869
|
/**
|
|
871
|
-
* <p>
|
|
872
|
-
*
|
|
873
|
-
* </p>
|
|
870
|
+
* <p>The custom line item's percentage value. This will be multiplied against the combined
|
|
871
|
+
* value of its associated resources to determine its charge value. </p>
|
|
874
872
|
*/
|
|
875
873
|
PercentageValue: number | undefined;
|
|
876
874
|
/**
|
|
877
|
-
* <p>
|
|
878
|
-
* A list of resource ARNs to associate to the percentage custom line item.
|
|
879
|
-
* </p>
|
|
875
|
+
* <p>A list of resource ARNs to associate to the percentage custom line item.</p>
|
|
880
876
|
*/
|
|
881
877
|
AssociatedValues?: string[];
|
|
882
878
|
}
|
|
@@ -894,27 +890,20 @@ export declare const CustomLineItemType: {
|
|
|
894
890
|
export type CustomLineItemType = (typeof CustomLineItemType)[keyof typeof CustomLineItemType];
|
|
895
891
|
/**
|
|
896
892
|
* @public
|
|
897
|
-
* <p>
|
|
898
|
-
* The charge details of a custom line item. It should contain only one of <code>Flat</code> or <code>Percentage</code>.
|
|
899
|
-
* </p>
|
|
893
|
+
* <p>The charge details of a custom line item. It should contain only one of <code>Flat</code> or <code>Percentage</code>.</p>
|
|
900
894
|
*/
|
|
901
895
|
export interface CustomLineItemChargeDetails {
|
|
902
896
|
/**
|
|
903
|
-
* <p>
|
|
904
|
-
*
|
|
905
|
-
* </p>
|
|
897
|
+
* <p>A <code>CustomLineItemFlatChargeDetails</code> that describes the charge details of a flat
|
|
898
|
+
* custom line item.</p>
|
|
906
899
|
*/
|
|
907
900
|
Flat?: CustomLineItemFlatChargeDetails;
|
|
908
901
|
/**
|
|
909
|
-
* <p>
|
|
910
|
-
* A <code>CustomLineItemPercentageChargeDetails</code> that describes the charge details of a percentage custom line item.
|
|
911
|
-
* </p>
|
|
902
|
+
* <p>A <code>CustomLineItemPercentageChargeDetails</code> that describes the charge details of a percentage custom line item.</p>
|
|
912
903
|
*/
|
|
913
904
|
Percentage?: CustomLineItemPercentageChargeDetails;
|
|
914
905
|
/**
|
|
915
|
-
* <p>
|
|
916
|
-
* The type of the custom line item that indicates whether the charge is a fee or credit.
|
|
917
|
-
* </p>
|
|
906
|
+
* <p>The type of the custom line item that indicates whether the charge is a fee or credit.</p>
|
|
918
907
|
*/
|
|
919
908
|
Type: CustomLineItemType | string | undefined;
|
|
920
909
|
}
|
|
@@ -980,9 +969,7 @@ export interface DeleteCustomLineItemInput {
|
|
|
980
969
|
*/
|
|
981
970
|
Arn: string | undefined;
|
|
982
971
|
/**
|
|
983
|
-
* <p>
|
|
984
|
-
* The billing period range in which the custom line item request will be applied.
|
|
985
|
-
* </p>
|
|
972
|
+
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
986
973
|
*/
|
|
987
974
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
988
975
|
}
|
|
@@ -999,25 +986,19 @@ export interface DeleteCustomLineItemOutput {
|
|
|
999
986
|
}
|
|
1000
987
|
/**
|
|
1001
988
|
* @public
|
|
1002
|
-
* <p>
|
|
1003
|
-
* A filter that specifies the custom line items and billing groups to retrieve FFLI information.
|
|
1004
|
-
* </p>
|
|
989
|
+
* <p>A filter that specifies the custom line items and billing groups to retrieve FFLI information.</p>
|
|
1005
990
|
*/
|
|
1006
991
|
export interface ListCustomLineItemsFilter {
|
|
1007
992
|
/**
|
|
1008
|
-
* <p>
|
|
1009
|
-
* A list of custom line items to retrieve information.
|
|
1010
|
-
* </p>
|
|
993
|
+
* <p>A list of custom line items to retrieve information.</p>
|
|
1011
994
|
*/
|
|
1012
995
|
Names?: string[];
|
|
1013
996
|
/**
|
|
1014
|
-
* <p>
|
|
997
|
+
* <p>The billing group Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
1015
998
|
*/
|
|
1016
999
|
BillingGroups?: string[];
|
|
1017
1000
|
/**
|
|
1018
|
-
* <p>
|
|
1019
|
-
* A list of custom line item ARNs to retrieve information.
|
|
1020
|
-
* </p>
|
|
1001
|
+
* <p>A list of custom line item ARNs to retrieve information.</p>
|
|
1021
1002
|
*/
|
|
1022
1003
|
Arns?: string[];
|
|
1023
1004
|
}
|
|
@@ -1117,64 +1098,47 @@ export declare const CurrencyCode: {
|
|
|
1117
1098
|
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
1118
1099
|
/**
|
|
1119
1100
|
* @public
|
|
1120
|
-
* <p>
|
|
1121
|
-
* A representation of a custom line item.
|
|
1122
|
-
* </p>
|
|
1101
|
+
* <p>A representation of a custom line item.</p>
|
|
1123
1102
|
*/
|
|
1124
1103
|
export interface CustomLineItemListElement {
|
|
1125
1104
|
/**
|
|
1126
|
-
* <p>
|
|
1105
|
+
* <p>The Amazon Resource Names (ARNs) for custom line items.</p>
|
|
1127
1106
|
*/
|
|
1128
1107
|
Arn?: string;
|
|
1129
1108
|
/**
|
|
1130
|
-
* <p>
|
|
1131
|
-
* The custom line item's name.
|
|
1132
|
-
* </p>
|
|
1109
|
+
* <p>The custom line item's name.</p>
|
|
1133
1110
|
*/
|
|
1134
1111
|
Name?: string;
|
|
1135
1112
|
/**
|
|
1136
|
-
* <p>
|
|
1137
|
-
* A <code>ListCustomLineItemChargeDetails</code> that describes the charge details of a custom line item.
|
|
1138
|
-
* </p>
|
|
1113
|
+
* <p>A <code>ListCustomLineItemChargeDetails</code> that describes the charge details of a custom line item.</p>
|
|
1139
1114
|
*/
|
|
1140
1115
|
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
1141
1116
|
/**
|
|
1142
|
-
* <p>
|
|
1143
|
-
* The custom line item's charge value currency. Only one of the valid values can be used.
|
|
1144
|
-
* </p>
|
|
1117
|
+
* <p>The custom line item's charge value currency. Only one of the valid values can be used.</p>
|
|
1145
1118
|
*/
|
|
1146
1119
|
CurrencyCode?: CurrencyCode | string;
|
|
1147
1120
|
/**
|
|
1148
|
-
* <p>
|
|
1149
|
-
* The custom line item's description. This is shown on the Bills page in association with the charge value.
|
|
1150
|
-
* </p>
|
|
1121
|
+
* <p>The custom line item's description. This is shown on the Bills page in association with the charge value.</p>
|
|
1151
1122
|
*/
|
|
1152
1123
|
Description?: string;
|
|
1153
1124
|
/**
|
|
1154
|
-
* <p>
|
|
1155
|
-
* The product code that's associated with the custom line item.
|
|
1156
|
-
* </p>
|
|
1125
|
+
* <p>The product code that's associated with the custom line item.</p>
|
|
1157
1126
|
*/
|
|
1158
1127
|
ProductCode?: string;
|
|
1159
1128
|
/**
|
|
1160
|
-
* <p>
|
|
1161
|
-
* item applies to. </p>
|
|
1129
|
+
* <p>The Amazon Resource Name (ARN) that references the billing group where the custom line item applies to.</p>
|
|
1162
1130
|
*/
|
|
1163
1131
|
BillingGroupArn?: string;
|
|
1164
1132
|
/**
|
|
1165
|
-
* <p>
|
|
1166
|
-
* The time created.
|
|
1167
|
-
* </p>
|
|
1133
|
+
* <p>The time created.</p>
|
|
1168
1134
|
*/
|
|
1169
1135
|
CreationTime?: number;
|
|
1170
1136
|
/**
|
|
1171
|
-
* <p>
|
|
1137
|
+
* <p>The most recent time when the custom line item was modified.</p>
|
|
1172
1138
|
*/
|
|
1173
1139
|
LastModifiedTime?: number;
|
|
1174
1140
|
/**
|
|
1175
|
-
* <p>
|
|
1176
|
-
* The number of resources that are associated to the custom line item.
|
|
1177
|
-
* </p>
|
|
1141
|
+
* <p>The number of resources that are associated to the custom line item.</p>
|
|
1178
1142
|
*/
|
|
1179
1143
|
AssociationSize?: number;
|
|
1180
1144
|
}
|
|
@@ -1500,9 +1464,7 @@ export interface UpdateCustomLineItemInput {
|
|
|
1500
1464
|
*/
|
|
1501
1465
|
ChargeDetails?: UpdateCustomLineItemChargeDetails;
|
|
1502
1466
|
/**
|
|
1503
|
-
* <p>
|
|
1504
|
-
* The billing period range in which the custom line item request will be applied.
|
|
1505
|
-
* </p>
|
|
1467
|
+
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
1506
1468
|
*/
|
|
1507
1469
|
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
1508
1470
|
}
|
|
@@ -1557,28 +1519,22 @@ export interface UpdateCustomLineItemOutput {
|
|
|
1557
1519
|
* <p>
|
|
1558
1520
|
* <code>MONITORED</code>: linked accounts that are associated to billing groups.</p>
|
|
1559
1521
|
* <p>
|
|
1560
|
-
* <code>UNMONITORED</code>: linked accounts that are not associated to billing
|
|
1561
|
-
* groups.</p>
|
|
1522
|
+
* <code>UNMONITORED</code>: linked accounts that are not associated to billing groups.</p>
|
|
1562
1523
|
* <p>
|
|
1563
|
-
* <code>Billing Group Arn</code>: linked accounts that are associated to the provided
|
|
1564
|
-
* Billing Group Arn. </p>
|
|
1524
|
+
* <code>Billing Group Arn</code>: linked accounts that are associated to the provided Billing Group Arn.</p>
|
|
1565
1525
|
*/
|
|
1566
1526
|
export interface ListAccountAssociationsFilter {
|
|
1567
1527
|
/**
|
|
1568
1528
|
* <p>
|
|
1569
1529
|
* <code>MONITORED</code>: linked accounts that are associated to billing groups.</p>
|
|
1570
1530
|
* <p>
|
|
1571
|
-
* <code>UNMONITORED</code>: linked accounts that are not associated to billing
|
|
1572
|
-
* groups.</p>
|
|
1531
|
+
* <code>UNMONITORED</code>: linked accounts that are not associated to billing groups.</p>
|
|
1573
1532
|
* <p>
|
|
1574
|
-
* <code>Billing Group Arn</code>: linked accounts that are associated to the provided
|
|
1575
|
-
* Billing Group Arn. </p>
|
|
1533
|
+
* <code>Billing Group Arn</code>: linked accounts that are associated to the provided Billing Group Arn.</p>
|
|
1576
1534
|
*/
|
|
1577
1535
|
Association?: string;
|
|
1578
1536
|
/**
|
|
1579
|
-
* <p>
|
|
1580
|
-
* The Amazon Web Services account ID to filter on.
|
|
1581
|
-
* </p>
|
|
1537
|
+
* <p>The Amazon Web Services account ID to filter on.</p>
|
|
1582
1538
|
*/
|
|
1583
1539
|
AccountId?: string;
|
|
1584
1540
|
/**
|
|
@@ -1633,13 +1589,11 @@ export interface ListAccountAssociationsOutput {
|
|
|
1633
1589
|
}
|
|
1634
1590
|
/**
|
|
1635
1591
|
* @public
|
|
1636
|
-
* <p>The filter used to retrieve specific <code>BillingGroupCostReportElements</code
|
|
1637
|
-
* </p>
|
|
1592
|
+
* <p>The filter used to retrieve specific <code>BillingGroupCostReportElements</code>.</p>
|
|
1638
1593
|
*/
|
|
1639
1594
|
export interface ListBillingGroupCostReportsFilter {
|
|
1640
1595
|
/**
|
|
1641
|
-
* <p>The list of Amazon Resource Names (ARNs) used to filter billing groups to retrieve
|
|
1642
|
-
* reports. </p>
|
|
1596
|
+
* <p>The list of Amazon Resource Names (ARNs) used to filter billing groups to retrieve reports. </p>
|
|
1643
1597
|
*/
|
|
1644
1598
|
BillingGroupArns?: string[];
|
|
1645
1599
|
}
|
|
@@ -1670,39 +1624,31 @@ export interface ListBillingGroupCostReportsInput {
|
|
|
1670
1624
|
}
|
|
1671
1625
|
/**
|
|
1672
1626
|
* @public
|
|
1673
|
-
* <p>A summary report of actual Amazon Web Services charges and calculated Amazon Web Services charges, based on the associated pricing plan of a billing group
|
|
1674
|
-
* </p>
|
|
1627
|
+
* <p>A summary report of actual Amazon Web Services charges and calculated Amazon Web Services charges, based on the associated pricing plan of a billing group.</p>
|
|
1675
1628
|
*/
|
|
1676
1629
|
export interface BillingGroupCostReportElement {
|
|
1677
1630
|
/**
|
|
1678
|
-
* <p>The Amazon Resource Name (ARN) of a billing group
|
|
1631
|
+
* <p>The Amazon Resource Name (ARN) of a billing group.</p>
|
|
1679
1632
|
*/
|
|
1680
1633
|
Arn?: string;
|
|
1681
1634
|
/**
|
|
1682
|
-
* <p>The actual Amazon Web Services charges for the billing group
|
|
1683
|
-
* </p>
|
|
1635
|
+
* <p>The actual Amazon Web Services charges for the billing group.</p>
|
|
1684
1636
|
*/
|
|
1685
1637
|
AWSCost?: string;
|
|
1686
1638
|
/**
|
|
1687
|
-
* <p>The hypothetical Amazon Web Services charges based on the associated pricing plan of a billing group
|
|
1688
|
-
* </p>
|
|
1639
|
+
* <p>The hypothetical Amazon Web Services charges based on the associated pricing plan of a billing group.</p>
|
|
1689
1640
|
*/
|
|
1690
1641
|
ProformaCost?: string;
|
|
1691
1642
|
/**
|
|
1692
|
-
* <p>
|
|
1693
|
-
* The billing group margin.
|
|
1694
|
-
* </p>
|
|
1643
|
+
* <p>The billing group margin.</p>
|
|
1695
1644
|
*/
|
|
1696
1645
|
Margin?: string;
|
|
1697
1646
|
/**
|
|
1698
|
-
* <p>
|
|
1699
|
-
* The percentage of billing group margin.
|
|
1700
|
-
* </p>
|
|
1647
|
+
* <p>The percentage of billing group margin.</p>
|
|
1701
1648
|
*/
|
|
1702
1649
|
MarginPercentage?: string;
|
|
1703
1650
|
/**
|
|
1704
|
-
* <p>The displayed currency
|
|
1705
|
-
* </p>
|
|
1651
|
+
* <p>The displayed currency.</p>
|
|
1706
1652
|
*/
|
|
1707
1653
|
Currency?: string;
|
|
1708
1654
|
}
|
|
@@ -1826,11 +1772,11 @@ export interface DisassociatePricingRulesOutput {
|
|
|
1826
1772
|
/**
|
|
1827
1773
|
* @public
|
|
1828
1774
|
* <p>The filter that specifies the Amazon Resource Names (ARNs) of pricing plans, to retrieve
|
|
1829
|
-
*
|
|
1775
|
+
* pricing plan information.</p>
|
|
1830
1776
|
*/
|
|
1831
1777
|
export interface ListPricingPlansFilter {
|
|
1832
1778
|
/**
|
|
1833
|
-
* <p>A list of pricing plan Amazon Resource Names (ARNs) to retrieve information
|
|
1779
|
+
* <p>A list of pricing plan Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
1834
1780
|
*/
|
|
1835
1781
|
Arns?: string[];
|
|
1836
1782
|
}
|
|
@@ -1860,39 +1806,31 @@ export interface ListPricingPlansInput {
|
|
|
1860
1806
|
}
|
|
1861
1807
|
/**
|
|
1862
1808
|
* @public
|
|
1863
|
-
* <p>A representation of a pricing plan
|
|
1864
|
-
* </p>
|
|
1809
|
+
* <p>A representation of a pricing plan.</p>
|
|
1865
1810
|
*/
|
|
1866
1811
|
export interface PricingPlanListElement {
|
|
1867
1812
|
/**
|
|
1868
|
-
* <p>The name of a pricing plan
|
|
1869
|
-
* </p>
|
|
1813
|
+
* <p>The name of a pricing plan.</p>
|
|
1870
1814
|
*/
|
|
1871
1815
|
Name?: string;
|
|
1872
1816
|
/**
|
|
1873
|
-
* <p>The pricing plan Amazon Resource Names (ARN). This can be used to uniquely identify a
|
|
1874
|
-
* pricing plan. </p>
|
|
1817
|
+
* <p>The pricing plan Amazon Resource Names (ARN). This can be used to uniquely identify a pricing plan.</p>
|
|
1875
1818
|
*/
|
|
1876
1819
|
Arn?: string;
|
|
1877
1820
|
/**
|
|
1878
|
-
* <p>The pricing plan description
|
|
1879
|
-
* </p>
|
|
1821
|
+
* <p>The pricing plan description.</p>
|
|
1880
1822
|
*/
|
|
1881
1823
|
Description?: string;
|
|
1882
1824
|
/**
|
|
1883
|
-
* <p>
|
|
1884
|
-
* The pricing rules count that's currently associated with this pricing plan list element.
|
|
1885
|
-
* </p>
|
|
1825
|
+
* <p>The pricing rules count that's currently associated with this pricing plan list element.</p>
|
|
1886
1826
|
*/
|
|
1887
1827
|
Size?: number;
|
|
1888
1828
|
/**
|
|
1889
|
-
* <p>
|
|
1890
|
-
* The time when the pricing plan was created.
|
|
1891
|
-
* </p>
|
|
1829
|
+
* <p>The time when the pricing plan was created.</p>
|
|
1892
1830
|
*/
|
|
1893
1831
|
CreationTime?: number;
|
|
1894
1832
|
/**
|
|
1895
|
-
* <p>
|
|
1833
|
+
* <p>The most recent time when the pricing plan was modified.</p>
|
|
1896
1834
|
*/
|
|
1897
1835
|
LastModifiedTime?: number;
|
|
1898
1836
|
}
|
|
@@ -2180,13 +2118,11 @@ export interface DeletePricingRuleOutput {
|
|
|
2180
2118
|
}
|
|
2181
2119
|
/**
|
|
2182
2120
|
* @public
|
|
2183
|
-
* <p> The filter that specifies criteria that the pricing rules returned by the
|
|
2184
|
-
* <code>ListPricingRules</code> API will adhere to. </p>
|
|
2121
|
+
* <p> The filter that specifies criteria that the pricing rules returned by the <code>ListPricingRules</code> API will adhere to.</p>
|
|
2185
2122
|
*/
|
|
2186
2123
|
export interface ListPricingRulesFilter {
|
|
2187
2124
|
/**
|
|
2188
|
-
* <p>
|
|
2189
|
-
* response. </p>
|
|
2125
|
+
* <p>A list containing the pricing rule Amazon Resource Names (ARNs) to include in the API response.</p>
|
|
2190
2126
|
*/
|
|
2191
2127
|
Arns?: string[];
|
|
2192
2128
|
}
|
|
@@ -2248,65 +2184,47 @@ export interface Tiering {
|
|
|
2248
2184
|
}
|
|
2249
2185
|
/**
|
|
2250
2186
|
* @public
|
|
2251
|
-
* <p>
|
|
2252
|
-
* A representation of a pricing rule.
|
|
2253
|
-
* </p>
|
|
2187
|
+
* <p>A representation of a pricing rule.</p>
|
|
2254
2188
|
*/
|
|
2255
2189
|
export interface PricingRuleListElement {
|
|
2256
2190
|
/**
|
|
2257
|
-
* <p>
|
|
2258
|
-
* The name of a pricing rule.
|
|
2259
|
-
* </p>
|
|
2191
|
+
* <p>The name of a pricing rule.</p>
|
|
2260
2192
|
*/
|
|
2261
2193
|
Name?: string;
|
|
2262
2194
|
/**
|
|
2263
|
-
* <p>
|
|
2195
|
+
* <p>The Amazon Resource Name (ARN) used to uniquely identify a pricing rule.</p>
|
|
2264
2196
|
*/
|
|
2265
2197
|
Arn?: string;
|
|
2266
2198
|
/**
|
|
2267
|
-
* <p>
|
|
2268
|
-
* The pricing rule description.
|
|
2269
|
-
* </p>
|
|
2199
|
+
* <p>The pricing rule description.</p>
|
|
2270
2200
|
*/
|
|
2271
2201
|
Description?: string;
|
|
2272
2202
|
/**
|
|
2273
|
-
* <p>
|
|
2274
|
-
* The scope of pricing rule that indicates if it is globally applicable, or if it is service-specific.
|
|
2275
|
-
* </p>
|
|
2203
|
+
* <p>The scope of pricing rule that indicates if it is globally applicable, or if it is service-specific.</p>
|
|
2276
2204
|
*/
|
|
2277
2205
|
Scope?: PricingRuleScope | string;
|
|
2278
2206
|
/**
|
|
2279
|
-
* <p>
|
|
2280
|
-
* The type of pricing rule.
|
|
2281
|
-
* </p>
|
|
2207
|
+
* <p>The type of pricing rule.</p>
|
|
2282
2208
|
*/
|
|
2283
2209
|
Type?: PricingRuleType | string;
|
|
2284
2210
|
/**
|
|
2285
|
-
* <p>
|
|
2286
|
-
* A percentage modifier applied on the public pricing rates.
|
|
2287
|
-
* </p>
|
|
2211
|
+
* <p>A percentage modifier applied on the public pricing rates.</p>
|
|
2288
2212
|
*/
|
|
2289
2213
|
ModifierPercentage?: number;
|
|
2290
2214
|
/**
|
|
2291
|
-
* <p>
|
|
2292
|
-
* If the <code>Scope</code> attribute is <code>SERVICE</code>, this attribute indicates which service the <code>PricingRule</code> is applicable for.
|
|
2293
|
-
* </p>
|
|
2215
|
+
* <p>If the <code>Scope</code> attribute is <code>SERVICE</code>, this attribute indicates which service the <code>PricingRule</code> is applicable for.</p>
|
|
2294
2216
|
*/
|
|
2295
2217
|
Service?: string;
|
|
2296
2218
|
/**
|
|
2297
|
-
* <p>
|
|
2298
|
-
* The pricing plans count that this pricing rule is associated with.
|
|
2299
|
-
* </p>
|
|
2219
|
+
* <p>The pricing plans count that this pricing rule is associated with.</p>
|
|
2300
2220
|
*/
|
|
2301
2221
|
AssociatedPricingPlanCount?: number;
|
|
2302
2222
|
/**
|
|
2303
|
-
* <p>
|
|
2304
|
-
* The time when the pricing rule was created.
|
|
2305
|
-
* </p>
|
|
2223
|
+
* <p>The time when the pricing rule was created.</p>
|
|
2306
2224
|
*/
|
|
2307
2225
|
CreationTime?: number;
|
|
2308
2226
|
/**
|
|
2309
|
-
* <p> The most recent time when the pricing rule was modified
|
|
2227
|
+
* <p> The most recent time when the pricing rule was modified.</p>
|
|
2310
2228
|
*/
|
|
2311
2229
|
LastModifiedTime?: number;
|
|
2312
2230
|
/**
|