@aws-sdk/client-billingconductor 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +284 -284
- package/dist-types/ts3.4/models/models_0.d.ts +296 -284
- package/package.json +7 -7
|
@@ -23,22 +23,22 @@ export interface AccountAssociationsListElement {
|
|
|
23
23
|
* <p>The associating array of account IDs.</p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
AccountId?: string;
|
|
26
|
+
AccountId?: string | undefined;
|
|
27
27
|
/**
|
|
28
28
|
* <p>The Billing Group Arn that the linked account is associated to.</p>
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
31
|
-
BillingGroupArn?: string;
|
|
31
|
+
BillingGroupArn?: string | undefined;
|
|
32
32
|
/**
|
|
33
33
|
* <p>The Amazon Web Services account name.</p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
AccountName?: string;
|
|
36
|
+
AccountName?: string | undefined;
|
|
37
37
|
/**
|
|
38
38
|
* <p>The Amazon Web Services account email.</p>
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
|
-
AccountEmail?: string;
|
|
41
|
+
AccountEmail?: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* <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>
|
|
@@ -55,7 +55,7 @@ export interface AccountGrouping {
|
|
|
55
55
|
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
|
58
|
-
AutoAssociate?: boolean;
|
|
58
|
+
AutoAssociate?: boolean | undefined;
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
61
|
* @public
|
|
@@ -84,7 +84,7 @@ export interface AssociateAccountsOutput {
|
|
|
84
84
|
* account IDs. </p>
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
Arn?: string;
|
|
87
|
+
Arn?: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
90
|
* @public
|
|
@@ -127,7 +127,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
127
127
|
* </p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
Reason?: ConflictExceptionReason;
|
|
130
|
+
Reason?: ConflictExceptionReason | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* @internal
|
|
133
133
|
*/
|
|
@@ -147,7 +147,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
147
147
|
* </p>
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
RetryAfterSeconds?: number;
|
|
150
|
+
RetryAfterSeconds?: number | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* @internal
|
|
153
153
|
*/
|
|
@@ -193,13 +193,13 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
193
193
|
* </p>
|
|
194
194
|
* @public
|
|
195
195
|
*/
|
|
196
|
-
ResourceId?: string;
|
|
196
|
+
ResourceId?: string | undefined;
|
|
197
197
|
/**
|
|
198
198
|
* <p>Type of the resource affected.
|
|
199
199
|
* </p>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
ResourceType?: string;
|
|
202
|
+
ResourceType?: string | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* <p>The unique code identifier of the service limit that is being exceeded.
|
|
205
205
|
* </p>
|
|
@@ -231,7 +231,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
231
231
|
* </p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
RetryAfterSeconds?: number;
|
|
234
|
+
RetryAfterSeconds?: number | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* @internal
|
|
237
237
|
*/
|
|
@@ -336,13 +336,13 @@ export declare class ValidationException extends __BaseException {
|
|
|
336
336
|
* </p>
|
|
337
337
|
* @public
|
|
338
338
|
*/
|
|
339
|
-
Reason?: ValidationExceptionReason;
|
|
339
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
340
340
|
/**
|
|
341
341
|
* <p>The fields that caused the error, if applicable.
|
|
342
342
|
* </p>
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
|
-
Fields?: ValidationExceptionField[];
|
|
345
|
+
Fields?: ValidationExceptionField[] | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* @internal
|
|
348
348
|
*/
|
|
@@ -377,7 +377,7 @@ export interface AssociatePricingRulesOutput {
|
|
|
377
377
|
* </p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
Arn?: string;
|
|
380
|
+
Arn?: string | undefined;
|
|
381
381
|
}
|
|
382
382
|
/**
|
|
383
383
|
* @public
|
|
@@ -403,12 +403,12 @@ export interface AssociateResourceError {
|
|
|
403
403
|
* <p>The reason why the resource association failed.</p>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
Message?: string;
|
|
406
|
+
Message?: string | undefined;
|
|
407
407
|
/**
|
|
408
408
|
* <p>A static error code that's used to classify the type of failure.</p>
|
|
409
409
|
* @public
|
|
410
410
|
*/
|
|
411
|
-
Reason?: AssociateResourceErrorReason;
|
|
411
|
+
Reason?: AssociateResourceErrorReason | undefined;
|
|
412
412
|
}
|
|
413
413
|
/**
|
|
414
414
|
* <p>A resource association result for a percentage custom line item.</p>
|
|
@@ -419,12 +419,12 @@ export interface AssociateResourceResponseElement {
|
|
|
419
419
|
* <p>The resource ARN that was associated to the custom line item.</p>
|
|
420
420
|
* @public
|
|
421
421
|
*/
|
|
422
|
-
Arn?: string;
|
|
422
|
+
Arn?: string | undefined;
|
|
423
423
|
/**
|
|
424
424
|
* <p>An <code>AssociateResourceError</code> that will populate if the resource association fails.</p>
|
|
425
425
|
* @public
|
|
426
426
|
*/
|
|
427
|
-
Error?: AssociateResourceError;
|
|
427
|
+
Error?: AssociateResourceError | undefined;
|
|
428
428
|
}
|
|
429
429
|
/**
|
|
430
430
|
* <p>The key-value pair that represents the attribute by which the
|
|
@@ -438,12 +438,12 @@ export interface Attribute {
|
|
|
438
438
|
* <p>The key in a key-value pair that describes the margin summary.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
Key?: string;
|
|
441
|
+
Key?: string | undefined;
|
|
442
442
|
/**
|
|
443
443
|
* <p>The value in a key-value pair that describes the margin summary.</p>
|
|
444
444
|
* @public
|
|
445
445
|
*/
|
|
446
|
-
Value?: string;
|
|
446
|
+
Value?: string | undefined;
|
|
447
447
|
}
|
|
448
448
|
/**
|
|
449
449
|
* <p>The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.</p>
|
|
@@ -466,7 +466,7 @@ export interface CreateBillingGroupInput {
|
|
|
466
466
|
* </p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
ClientToken?: string;
|
|
469
|
+
ClientToken?: string | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* <p>
|
|
472
472
|
* The billing group name. The names must be unique.
|
|
@@ -492,18 +492,18 @@ export interface CreateBillingGroupInput {
|
|
|
492
492
|
* <p> The account ID that serves as the main account in a billing group. </p>
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
PrimaryAccountId?: string;
|
|
495
|
+
PrimaryAccountId?: string | undefined;
|
|
496
496
|
/**
|
|
497
497
|
* <p>The description of the billing group. </p>
|
|
498
498
|
* @public
|
|
499
499
|
*/
|
|
500
|
-
Description?: string;
|
|
500
|
+
Description?: string | undefined;
|
|
501
501
|
/**
|
|
502
502
|
* <p> A map that contains tag keys and tag values that are attached to a billing group. This
|
|
503
503
|
* feature isn't available during the beta. </p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
Tags?: Record<string, string
|
|
506
|
+
Tags?: Record<string, string> | undefined;
|
|
507
507
|
}
|
|
508
508
|
/**
|
|
509
509
|
* @public
|
|
@@ -513,7 +513,7 @@ export interface CreateBillingGroupOutput {
|
|
|
513
513
|
* <p>The Amazon Resource Name (ARN) of the created billing group. </p>
|
|
514
514
|
* @public
|
|
515
515
|
*/
|
|
516
|
-
Arn?: string;
|
|
516
|
+
Arn?: string | undefined;
|
|
517
517
|
}
|
|
518
518
|
/**
|
|
519
519
|
* @public
|
|
@@ -533,7 +533,7 @@ export interface DeleteBillingGroupOutput {
|
|
|
533
533
|
* <p>The Amazon Resource Name (ARN) of the deleted billing group.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
Arn?: string;
|
|
536
|
+
Arn?: string | undefined;
|
|
537
537
|
}
|
|
538
538
|
/**
|
|
539
539
|
* @public
|
|
@@ -561,7 +561,7 @@ export interface DisassociateAccountsOutput {
|
|
|
561
561
|
* disassociated from. </p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
Arn?: string;
|
|
564
|
+
Arn?: string | undefined;
|
|
565
565
|
}
|
|
566
566
|
/**
|
|
567
567
|
* @public
|
|
@@ -584,25 +584,25 @@ export interface ListBillingGroupsFilter {
|
|
|
584
584
|
* <p>The list of billing group Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
Arns?: string[];
|
|
587
|
+
Arns?: string[] | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The pricing plan Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
PricingPlan?: string;
|
|
592
|
+
PricingPlan?: string | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>
|
|
595
595
|
* A list of billing groups to retrieve their current status for a specific time range
|
|
596
596
|
* </p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
Statuses?: BillingGroupStatus[];
|
|
599
|
+
Statuses?: BillingGroupStatus[] | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* <p>Specifies if this billing group will automatically associate newly added
|
|
602
602
|
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
AutoAssociate?: boolean;
|
|
605
|
+
AutoAssociate?: boolean | undefined;
|
|
606
606
|
}
|
|
607
607
|
/**
|
|
608
608
|
* @public
|
|
@@ -613,25 +613,25 @@ export interface ListBillingGroupsInput {
|
|
|
613
613
|
* </p>
|
|
614
614
|
* @public
|
|
615
615
|
*/
|
|
616
|
-
BillingPeriod?: string;
|
|
616
|
+
BillingPeriod?: string | undefined;
|
|
617
617
|
/**
|
|
618
618
|
* <p>The maximum number of billing groups to retrieve.
|
|
619
619
|
* </p>
|
|
620
620
|
* @public
|
|
621
621
|
*/
|
|
622
|
-
MaxResults?: number;
|
|
622
|
+
MaxResults?: number | undefined;
|
|
623
623
|
/**
|
|
624
624
|
* <p>The pagination token that's used on subsequent calls to get billing groups.
|
|
625
625
|
* </p>
|
|
626
626
|
* @public
|
|
627
627
|
*/
|
|
628
|
-
NextToken?: string;
|
|
628
|
+
NextToken?: string | undefined;
|
|
629
629
|
/**
|
|
630
630
|
* <p>A <code>ListBillingGroupsFilter</code> that specifies the billing group and pricing plan to retrieve billing group information.
|
|
631
631
|
* </p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
Filters?: ListBillingGroupsFilter;
|
|
634
|
+
Filters?: ListBillingGroupsFilter | undefined;
|
|
635
635
|
}
|
|
636
636
|
/**
|
|
637
637
|
* <p>Specifies if the billing group has the following
|
|
@@ -644,7 +644,7 @@ export interface ListBillingGroupAccountGrouping {
|
|
|
644
644
|
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
AutoAssociate?: boolean;
|
|
647
|
+
AutoAssociate?: boolean | undefined;
|
|
648
648
|
}
|
|
649
649
|
/**
|
|
650
650
|
* <p>A representation of a billing group.</p>
|
|
@@ -655,58 +655,58 @@ export interface BillingGroupListElement {
|
|
|
655
655
|
* <p>The name of the billing group.</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
Name?: string;
|
|
658
|
+
Name?: string | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* <p>The Amazon Resource Number (ARN) that can be used to uniquely identify the billing group.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
Arn?: string;
|
|
663
|
+
Arn?: string | undefined;
|
|
664
664
|
/**
|
|
665
665
|
* <p>The description of the billing group.</p>
|
|
666
666
|
* @public
|
|
667
667
|
*/
|
|
668
|
-
Description?: string;
|
|
668
|
+
Description?: string | undefined;
|
|
669
669
|
/**
|
|
670
670
|
* <p>The account ID that serves as the main account in a billing group.</p>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
PrimaryAccountId?: string;
|
|
673
|
+
PrimaryAccountId?: string | undefined;
|
|
674
674
|
/**
|
|
675
675
|
* <p>The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.</p>
|
|
676
676
|
* @public
|
|
677
677
|
*/
|
|
678
|
-
ComputationPreference?: ComputationPreference;
|
|
678
|
+
ComputationPreference?: ComputationPreference | undefined;
|
|
679
679
|
/**
|
|
680
680
|
* <p>The number of accounts in the particular billing group.</p>
|
|
681
681
|
* @public
|
|
682
682
|
*/
|
|
683
|
-
Size?: number;
|
|
683
|
+
Size?: number | undefined;
|
|
684
684
|
/**
|
|
685
685
|
* <p>The time when the billing group was created.</p>
|
|
686
686
|
* @public
|
|
687
687
|
*/
|
|
688
|
-
CreationTime?: number;
|
|
688
|
+
CreationTime?: number | undefined;
|
|
689
689
|
/**
|
|
690
690
|
* <p>The most recent time when the billing group was modified.</p>
|
|
691
691
|
* @public
|
|
692
692
|
*/
|
|
693
|
-
LastModifiedTime?: number;
|
|
693
|
+
LastModifiedTime?: number | undefined;
|
|
694
694
|
/**
|
|
695
695
|
* <p>The billing group status. Only one of the valid values can be used.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
Status?: BillingGroupStatus;
|
|
698
|
+
Status?: BillingGroupStatus | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>The reason why the billing group is in its current status.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
StatusReason?: string;
|
|
703
|
+
StatusReason?: string | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>Specifies if the billing group has automatic account
|
|
706
706
|
* association (<code>AutoAssociate</code>) enabled.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
AccountGrouping?: ListBillingGroupAccountGrouping;
|
|
709
|
+
AccountGrouping?: ListBillingGroupAccountGrouping | undefined;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
712
712
|
* @public
|
|
@@ -717,13 +717,13 @@ export interface ListBillingGroupsOutput {
|
|
|
717
717
|
* </p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
BillingGroups?: BillingGroupListElement[];
|
|
720
|
+
BillingGroups?: BillingGroupListElement[] | undefined;
|
|
721
721
|
/**
|
|
722
722
|
* <p>The pagination token that's used on subsequent calls to get billing groups.
|
|
723
723
|
* </p>
|
|
724
724
|
* @public
|
|
725
725
|
*/
|
|
726
|
-
NextToken?: string;
|
|
726
|
+
NextToken?: string | undefined;
|
|
727
727
|
}
|
|
728
728
|
/**
|
|
729
729
|
* <p>Specifies if the billing group has the following
|
|
@@ -736,7 +736,7 @@ export interface UpdateBillingGroupAccountGrouping {
|
|
|
736
736
|
* Amazon Web Services accounts that join your consolidated billing family.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
AutoAssociate?: boolean;
|
|
739
|
+
AutoAssociate?: boolean | undefined;
|
|
740
740
|
}
|
|
741
741
|
/**
|
|
742
742
|
* @public
|
|
@@ -752,32 +752,32 @@ export interface UpdateBillingGroupInput {
|
|
|
752
752
|
* </p>
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
|
-
Name?: string;
|
|
755
|
+
Name?: string | undefined;
|
|
756
756
|
/**
|
|
757
757
|
* <p>The status of the billing group. Only one of the valid values can be used.
|
|
758
758
|
* </p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
Status?: BillingGroupStatus;
|
|
761
|
+
Status?: BillingGroupStatus | undefined;
|
|
762
762
|
/**
|
|
763
763
|
* <p>
|
|
764
764
|
* The preferences and settings that will be used to compute the Amazon Web Services charges for a billing group.
|
|
765
765
|
* </p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
ComputationPreference?: ComputationPreference;
|
|
768
|
+
ComputationPreference?: ComputationPreference | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* <p>A description of the billing group.
|
|
771
771
|
* </p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
Description?: string;
|
|
774
|
+
Description?: string | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>Specifies if the billing group has automatic account
|
|
777
777
|
* association (<code>AutoAssociate</code>) enabled.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
AccountGrouping?: UpdateBillingGroupAccountGrouping;
|
|
780
|
+
AccountGrouping?: UpdateBillingGroupAccountGrouping | undefined;
|
|
781
781
|
}
|
|
782
782
|
/**
|
|
783
783
|
* @public
|
|
@@ -787,28 +787,28 @@ export interface UpdateBillingGroupOutput {
|
|
|
787
787
|
* <p>The Amazon Resource Name (ARN) of the billing group that was updated. </p>
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
|
-
Arn?: string;
|
|
790
|
+
Arn?: string | undefined;
|
|
791
791
|
/**
|
|
792
792
|
* <p>
|
|
793
793
|
* The name of the billing group. The names must be unique to each billing group.
|
|
794
794
|
* </p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
Name?: string;
|
|
797
|
+
Name?: string | undefined;
|
|
798
798
|
/**
|
|
799
799
|
* <p>
|
|
800
800
|
* A description of the billing group.
|
|
801
801
|
* </p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
Description?: string;
|
|
804
|
+
Description?: string | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <p>
|
|
807
807
|
* The account ID that serves as the main account in a billing group.
|
|
808
808
|
* </p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
PrimaryAccountId?: string;
|
|
811
|
+
PrimaryAccountId?: string | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* <p>
|
|
814
814
|
* The Amazon Resource Name (ARN) of the pricing plan to compute Amazon Web Services charges for the
|
|
@@ -816,39 +816,39 @@ export interface UpdateBillingGroupOutput {
|
|
|
816
816
|
* </p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
PricingPlanArn?: string;
|
|
819
|
+
PricingPlanArn?: string | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>
|
|
822
822
|
* The number of accounts in the particular billing group.
|
|
823
823
|
* </p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
Size?: number;
|
|
826
|
+
Size?: number | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p> The most recent time when the billing group was modified. </p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
LastModifiedTime?: number;
|
|
831
|
+
LastModifiedTime?: number | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>
|
|
834
834
|
* The status of the billing group. Only one of the valid values can be used.
|
|
835
835
|
* </p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
Status?: BillingGroupStatus;
|
|
838
|
+
Status?: BillingGroupStatus | undefined;
|
|
839
839
|
/**
|
|
840
840
|
* <p>
|
|
841
841
|
* The reason why the billing group is in its current status.
|
|
842
842
|
* </p>
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
StatusReason?: string;
|
|
845
|
+
StatusReason?: string | undefined;
|
|
846
846
|
/**
|
|
847
847
|
* <p>Specifies if the billing group has automatic account
|
|
848
848
|
* association (<code>AutoAssociate</code>) enabled.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
AccountGrouping?: UpdateBillingGroupAccountGrouping;
|
|
851
|
+
AccountGrouping?: UpdateBillingGroupAccountGrouping | undefined;
|
|
852
852
|
}
|
|
853
853
|
/**
|
|
854
854
|
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
@@ -864,7 +864,7 @@ export interface CustomLineItemBillingPeriodRange {
|
|
|
864
864
|
* <p>The inclusive end billing period that defines a billing period range where a custom line is applied.</p>
|
|
865
865
|
* @public
|
|
866
866
|
*/
|
|
867
|
-
ExclusiveEndBillingPeriod?: string;
|
|
867
|
+
ExclusiveEndBillingPeriod?: string | undefined;
|
|
868
868
|
}
|
|
869
869
|
/**
|
|
870
870
|
* @public
|
|
@@ -888,7 +888,7 @@ export interface BatchAssociateResourcesToCustomLineItemInput {
|
|
|
888
888
|
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
889
889
|
* @public
|
|
890
890
|
*/
|
|
891
|
-
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
891
|
+
BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
|
|
892
892
|
}
|
|
893
893
|
/**
|
|
894
894
|
* @public
|
|
@@ -900,14 +900,14 @@ export interface BatchAssociateResourcesToCustomLineItemOutput {
|
|
|
900
900
|
* </p>
|
|
901
901
|
* @public
|
|
902
902
|
*/
|
|
903
|
-
SuccessfullyAssociatedResources?: AssociateResourceResponseElement[];
|
|
903
|
+
SuccessfullyAssociatedResources?: AssociateResourceResponseElement[] | undefined;
|
|
904
904
|
/**
|
|
905
905
|
* <p>
|
|
906
906
|
* A list of <code>AssociateResourceResponseElement</code> for each resource that failed association to a percentage custom line item.
|
|
907
907
|
* </p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
FailedAssociatedResources?: AssociateResourceResponseElement[];
|
|
910
|
+
FailedAssociatedResources?: AssociateResourceResponseElement[] | undefined;
|
|
911
911
|
}
|
|
912
912
|
/**
|
|
913
913
|
* @public
|
|
@@ -931,7 +931,7 @@ export interface BatchDisassociateResourcesFromCustomLineItemInput {
|
|
|
931
931
|
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
932
932
|
* @public
|
|
933
933
|
*/
|
|
934
|
-
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
934
|
+
BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
|
|
935
935
|
}
|
|
936
936
|
/**
|
|
937
937
|
* <p>A resource disassociation result for a percentage custom line item.</p>
|
|
@@ -943,12 +943,12 @@ export interface DisassociateResourceResponseElement {
|
|
|
943
943
|
* </p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
Arn?: string;
|
|
946
|
+
Arn?: string | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p> An <code>AssociateResourceError</code> that's shown if the resource disassociation fails. </p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
Error?: AssociateResourceError;
|
|
951
|
+
Error?: AssociateResourceError | undefined;
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
954
|
* @public
|
|
@@ -960,14 +960,14 @@ export interface BatchDisassociateResourcesFromCustomLineItemOutput {
|
|
|
960
960
|
* </p>
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
|
-
SuccessfullyDisassociatedResources?: DisassociateResourceResponseElement[];
|
|
963
|
+
SuccessfullyDisassociatedResources?: DisassociateResourceResponseElement[] | undefined;
|
|
964
964
|
/**
|
|
965
965
|
* <p>
|
|
966
966
|
* A list of <code>DisassociateResourceResponseElement</code> for each resource that failed disassociation from a percentage custom line item.
|
|
967
967
|
* </p>
|
|
968
968
|
* @public
|
|
969
969
|
*/
|
|
970
|
-
FailedDisassociatedResources?: DisassociateResourceResponseElement[];
|
|
970
|
+
FailedDisassociatedResources?: DisassociateResourceResponseElement[] | undefined;
|
|
971
971
|
}
|
|
972
972
|
/**
|
|
973
973
|
* <p>A representation of the charge details that are associated with a flat custom line item.</p>
|
|
@@ -1052,7 +1052,7 @@ export interface CustomLineItemPercentageChargeDetails {
|
|
|
1052
1052
|
* <p>A list of resource ARNs to associate to the percentage custom line item.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
AssociatedValues?: string[];
|
|
1055
|
+
AssociatedValues?: string[] | undefined;
|
|
1056
1056
|
}
|
|
1057
1057
|
/**
|
|
1058
1058
|
* @public
|
|
@@ -1076,12 +1076,12 @@ export interface CustomLineItemChargeDetails {
|
|
|
1076
1076
|
* custom line item.</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
Flat?: CustomLineItemFlatChargeDetails;
|
|
1079
|
+
Flat?: CustomLineItemFlatChargeDetails | undefined;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* <p>A <code>CustomLineItemPercentageChargeDetails</code> that describes the charge details of a percentage custom line item.</p>
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
Percentage?: CustomLineItemPercentageChargeDetails;
|
|
1084
|
+
Percentage?: CustomLineItemPercentageChargeDetails | undefined;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>The type of the custom line item that indicates whether the charge is a fee or credit.</p>
|
|
1087
1087
|
* @public
|
|
@@ -1091,7 +1091,7 @@ export interface CustomLineItemChargeDetails {
|
|
|
1091
1091
|
* <p>A representation of the line item filter.</p>
|
|
1092
1092
|
* @public
|
|
1093
1093
|
*/
|
|
1094
|
-
LineItemFilters?: LineItemFilter[];
|
|
1094
|
+
LineItemFilters?: LineItemFilter[] | undefined;
|
|
1095
1095
|
}
|
|
1096
1096
|
/**
|
|
1097
1097
|
* @public
|
|
@@ -1103,7 +1103,7 @@ export interface CreateCustomLineItemInput {
|
|
|
1103
1103
|
* </p>
|
|
1104
1104
|
* @public
|
|
1105
1105
|
*/
|
|
1106
|
-
ClientToken?: string;
|
|
1106
|
+
ClientToken?: string | undefined;
|
|
1107
1107
|
/**
|
|
1108
1108
|
* <p>
|
|
1109
1109
|
* The name of the custom line item.
|
|
@@ -1128,12 +1128,12 @@ export interface CreateCustomLineItemInput {
|
|
|
1128
1128
|
* <p> A time range for which the custom line item is effective. </p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
1131
|
+
BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p> A map that contains tag keys and tag values that are attached to a custom line item. </p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
Tags?: Record<string, string
|
|
1136
|
+
Tags?: Record<string, string> | undefined;
|
|
1137
1137
|
/**
|
|
1138
1138
|
* <p>
|
|
1139
1139
|
* A <code>CustomLineItemChargeDetails</code> that describes the charge details for a custom line item.
|
|
@@ -1145,7 +1145,7 @@ export interface CreateCustomLineItemInput {
|
|
|
1145
1145
|
* <p>The Amazon Web Services account in which this custom line item will be applied to.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
AccountId?: string;
|
|
1148
|
+
AccountId?: string | undefined;
|
|
1149
1149
|
}
|
|
1150
1150
|
/**
|
|
1151
1151
|
* @public
|
|
@@ -1155,7 +1155,7 @@ export interface CreateCustomLineItemOutput {
|
|
|
1155
1155
|
* <p> The Amazon Resource Name (ARN) of the created custom line item. </p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
Arn?: string;
|
|
1158
|
+
Arn?: string | undefined;
|
|
1159
1159
|
}
|
|
1160
1160
|
/**
|
|
1161
1161
|
* @public
|
|
@@ -1172,7 +1172,7 @@ export interface DeleteCustomLineItemInput {
|
|
|
1172
1172
|
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
1175
|
+
BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
|
|
1176
1176
|
}
|
|
1177
1177
|
/**
|
|
1178
1178
|
* @public
|
|
@@ -1182,7 +1182,7 @@ export interface DeleteCustomLineItemOutput {
|
|
|
1182
1182
|
* <p>The ARN of the deleted custom line item. </p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
Arn?: string;
|
|
1185
|
+
Arn?: string | undefined;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>A filter that specifies the custom line items and billing groups to retrieve FFLI information.</p>
|
|
@@ -1193,22 +1193,22 @@ export interface ListCustomLineItemsFilter {
|
|
|
1193
1193
|
* <p>A list of custom line items to retrieve information.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
Names?: string[];
|
|
1196
|
+
Names?: string[] | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>The billing group Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
BillingGroups?: string[];
|
|
1201
|
+
BillingGroups?: string[] | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>A list of custom line item ARNs to retrieve information.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
Arns?: string[];
|
|
1206
|
+
Arns?: string[] | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>The Amazon Web Services accounts in which this custom line item will be applied to.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
AccountIds?: string[];
|
|
1211
|
+
AccountIds?: string[] | undefined;
|
|
1212
1212
|
}
|
|
1213
1213
|
/**
|
|
1214
1214
|
* @public
|
|
@@ -1220,27 +1220,27 @@ export interface ListCustomLineItemsInput {
|
|
|
1220
1220
|
* </p>
|
|
1221
1221
|
* @public
|
|
1222
1222
|
*/
|
|
1223
|
-
BillingPeriod?: string;
|
|
1223
|
+
BillingPeriod?: string | undefined;
|
|
1224
1224
|
/**
|
|
1225
1225
|
* <p>
|
|
1226
1226
|
* The maximum number of billing groups to retrieve.
|
|
1227
1227
|
* </p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
MaxResults?: number;
|
|
1230
|
+
MaxResults?: number | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>
|
|
1233
1233
|
* The pagination token that's used on subsequent calls to get custom line items (FFLIs).
|
|
1234
1234
|
* </p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
NextToken?: string;
|
|
1237
|
+
NextToken?: string | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>A <code>ListCustomLineItemsFilter</code> that specifies the custom line item names
|
|
1240
1240
|
* and/or billing group Amazon Resource Names (ARNs) to retrieve FFLI information.</p>
|
|
1241
1241
|
* @public
|
|
1242
1242
|
*/
|
|
1243
|
-
Filters?: ListCustomLineItemsFilter;
|
|
1243
|
+
Filters?: ListCustomLineItemsFilter | undefined;
|
|
1244
1244
|
}
|
|
1245
1245
|
/**
|
|
1246
1246
|
* <p>
|
|
@@ -1285,14 +1285,14 @@ export interface ListCustomLineItemChargeDetails {
|
|
|
1285
1285
|
* </p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
Flat?: ListCustomLineItemFlatChargeDetails;
|
|
1288
|
+
Flat?: ListCustomLineItemFlatChargeDetails | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>
|
|
1291
1291
|
* A <code>ListCustomLineItemPercentageChargeDetails</code> that describes the charge details of a percentage custom line item.
|
|
1292
1292
|
* </p>
|
|
1293
1293
|
* @public
|
|
1294
1294
|
*/
|
|
1295
|
-
Percentage?: ListCustomLineItemPercentageChargeDetails;
|
|
1295
|
+
Percentage?: ListCustomLineItemPercentageChargeDetails | undefined;
|
|
1296
1296
|
/**
|
|
1297
1297
|
* <p>
|
|
1298
1298
|
* The type of the custom line item that indicates whether the charge is a <code>fee</code> or <code>credit</code>.
|
|
@@ -1304,7 +1304,7 @@ export interface ListCustomLineItemChargeDetails {
|
|
|
1304
1304
|
* <p>A representation of the line item filter.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
LineItemFilters?: LineItemFilter[];
|
|
1307
|
+
LineItemFilters?: LineItemFilter[] | undefined;
|
|
1308
1308
|
}
|
|
1309
1309
|
/**
|
|
1310
1310
|
* @public
|
|
@@ -1327,57 +1327,57 @@ export interface CustomLineItemListElement {
|
|
|
1327
1327
|
* <p>The Amazon Resource Names (ARNs) for custom line items.</p>
|
|
1328
1328
|
* @public
|
|
1329
1329
|
*/
|
|
1330
|
-
Arn?: string;
|
|
1330
|
+
Arn?: string | undefined;
|
|
1331
1331
|
/**
|
|
1332
1332
|
* <p>The custom line item's name.</p>
|
|
1333
1333
|
* @public
|
|
1334
1334
|
*/
|
|
1335
|
-
Name?: string;
|
|
1335
|
+
Name?: string | undefined;
|
|
1336
1336
|
/**
|
|
1337
1337
|
* <p>A <code>ListCustomLineItemChargeDetails</code> that describes the charge details of a custom line item.</p>
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
1340
|
+
ChargeDetails?: ListCustomLineItemChargeDetails | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>The custom line item's charge value currency. Only one of the valid values can be used.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
CurrencyCode?: CurrencyCode;
|
|
1345
|
+
CurrencyCode?: CurrencyCode | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>The custom line item's description. This is shown on the Bills page in association with the charge value.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
Description?: string;
|
|
1350
|
+
Description?: string | undefined;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* <p>The product code that's associated with the custom line item.</p>
|
|
1353
1353
|
* @public
|
|
1354
1354
|
*/
|
|
1355
|
-
ProductCode?: string;
|
|
1355
|
+
ProductCode?: string | undefined;
|
|
1356
1356
|
/**
|
|
1357
1357
|
* <p>The Amazon Resource Name (ARN) that references the billing group where the custom line item applies to.</p>
|
|
1358
1358
|
* @public
|
|
1359
1359
|
*/
|
|
1360
|
-
BillingGroupArn?: string;
|
|
1360
|
+
BillingGroupArn?: string | undefined;
|
|
1361
1361
|
/**
|
|
1362
1362
|
* <p>The time created.</p>
|
|
1363
1363
|
* @public
|
|
1364
1364
|
*/
|
|
1365
|
-
CreationTime?: number;
|
|
1365
|
+
CreationTime?: number | undefined;
|
|
1366
1366
|
/**
|
|
1367
1367
|
* <p>The most recent time when the custom line item was modified.</p>
|
|
1368
1368
|
* @public
|
|
1369
1369
|
*/
|
|
1370
|
-
LastModifiedTime?: number;
|
|
1370
|
+
LastModifiedTime?: number | undefined;
|
|
1371
1371
|
/**
|
|
1372
1372
|
* <p>The number of resources that are associated to the custom line item.</p>
|
|
1373
1373
|
* @public
|
|
1374
1374
|
*/
|
|
1375
|
-
AssociationSize?: number;
|
|
1375
|
+
AssociationSize?: number | undefined;
|
|
1376
1376
|
/**
|
|
1377
1377
|
* <p>The Amazon Web Services account in which this custom line item will be applied to.</p>
|
|
1378
1378
|
* @public
|
|
1379
1379
|
*/
|
|
1380
|
-
AccountId?: string;
|
|
1380
|
+
AccountId?: string | undefined;
|
|
1381
1381
|
}
|
|
1382
1382
|
/**
|
|
1383
1383
|
* @public
|
|
@@ -1389,14 +1389,14 @@ export interface ListCustomLineItemsOutput {
|
|
|
1389
1389
|
* </p>
|
|
1390
1390
|
* @public
|
|
1391
1391
|
*/
|
|
1392
|
-
CustomLineItems?: CustomLineItemListElement[];
|
|
1392
|
+
CustomLineItems?: CustomLineItemListElement[] | undefined;
|
|
1393
1393
|
/**
|
|
1394
1394
|
* <p>
|
|
1395
1395
|
* The pagination token that's used on subsequent calls to get custom line items (FFLIs).
|
|
1396
1396
|
* </p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
NextToken?: string;
|
|
1399
|
+
NextToken?: string | undefined;
|
|
1400
1400
|
}
|
|
1401
1401
|
/**
|
|
1402
1402
|
* <p>A billing period filter that specifies the custom line item versions to retrieve.</p>
|
|
@@ -1407,12 +1407,12 @@ export interface ListCustomLineItemVersionsBillingPeriodRangeFilter {
|
|
|
1407
1407
|
* <p>The inclusive start billing period that defines a billing period range where a custom line item version is applied.</p>
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
StartBillingPeriod?: string;
|
|
1410
|
+
StartBillingPeriod?: string | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* <p>The exclusive end billing period that defines a billing period range where a custom line item version is applied.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
EndBillingPeriod?: string;
|
|
1415
|
+
EndBillingPeriod?: string | undefined;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
1418
1418
|
* <p>A filter that specifies the billing period range where the custom line item versions reside.</p>
|
|
@@ -1423,7 +1423,7 @@ export interface ListCustomLineItemVersionsFilter {
|
|
|
1423
1423
|
* <p>The billing period range in which the custom line item version is applied.</p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
BillingPeriodRange?: ListCustomLineItemVersionsBillingPeriodRangeFilter;
|
|
1426
|
+
BillingPeriodRange?: ListCustomLineItemVersionsBillingPeriodRangeFilter | undefined;
|
|
1427
1427
|
}
|
|
1428
1428
|
/**
|
|
1429
1429
|
* @public
|
|
@@ -1438,17 +1438,17 @@ export interface ListCustomLineItemVersionsInput {
|
|
|
1438
1438
|
* <p>The maximum number of custom line item versions to retrieve.</p>
|
|
1439
1439
|
* @public
|
|
1440
1440
|
*/
|
|
1441
|
-
MaxResults?: number;
|
|
1441
|
+
MaxResults?: number | undefined;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* <p>The pagination token that's used on subsequent calls to retrieve custom line item versions.</p>
|
|
1444
1444
|
* @public
|
|
1445
1445
|
*/
|
|
1446
|
-
NextToken?: string;
|
|
1446
|
+
NextToken?: string | undefined;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* <p>A <code>ListCustomLineItemVersionsFilter</code> that specifies the billing period range in which the custom line item versions are applied.</p>
|
|
1449
1449
|
* @public
|
|
1450
1450
|
*/
|
|
1451
|
-
Filters?: ListCustomLineItemVersionsFilter;
|
|
1451
|
+
Filters?: ListCustomLineItemVersionsFilter | undefined;
|
|
1452
1452
|
}
|
|
1453
1453
|
/**
|
|
1454
1454
|
* <p>A representation of a custom line item version.</p>
|
|
@@ -1459,78 +1459,78 @@ export interface CustomLineItemVersionListElement {
|
|
|
1459
1459
|
* <p>The name of the custom line item.</p>
|
|
1460
1460
|
* @public
|
|
1461
1461
|
*/
|
|
1462
|
-
Name?: string;
|
|
1462
|
+
Name?: string | undefined;
|
|
1463
1463
|
/**
|
|
1464
1464
|
* <p>
|
|
1465
1465
|
* A representation of the charge details of a custom line item.
|
|
1466
1466
|
* </p>
|
|
1467
1467
|
* @public
|
|
1468
1468
|
*/
|
|
1469
|
-
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
1469
|
+
ChargeDetails?: ListCustomLineItemChargeDetails | undefined;
|
|
1470
1470
|
/**
|
|
1471
1471
|
* <p>The charge value currency of the custom line item.</p>
|
|
1472
1472
|
* @public
|
|
1473
1473
|
*/
|
|
1474
|
-
CurrencyCode?: CurrencyCode;
|
|
1474
|
+
CurrencyCode?: CurrencyCode | undefined;
|
|
1475
1475
|
/**
|
|
1476
1476
|
* <p>The description of the custom line item.</p>
|
|
1477
1477
|
* @public
|
|
1478
1478
|
*/
|
|
1479
|
-
Description?: string;
|
|
1479
|
+
Description?: string | undefined;
|
|
1480
1480
|
/**
|
|
1481
1481
|
* <p>The product code that’s associated with the custom line item.</p>
|
|
1482
1482
|
* @public
|
|
1483
1483
|
*/
|
|
1484
|
-
ProductCode?: string;
|
|
1484
|
+
ProductCode?: string | undefined;
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p>The Amazon Resource Name (ARN) of the billing group that the custom line item applies to.</p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
BillingGroupArn?: string;
|
|
1489
|
+
BillingGroupArn?: string | undefined;
|
|
1490
1490
|
/**
|
|
1491
1491
|
* <p>The time when the custom line item version was created.</p>
|
|
1492
1492
|
* @public
|
|
1493
1493
|
*/
|
|
1494
|
-
CreationTime?: number;
|
|
1494
|
+
CreationTime?: number | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* <p>The most recent time that the custom line item version was modified.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
LastModifiedTime?: number;
|
|
1499
|
+
LastModifiedTime?: number | undefined;
|
|
1500
1500
|
/**
|
|
1501
1501
|
* <p>The number of resources that are associated with the custom line item.</p>
|
|
1502
1502
|
* @public
|
|
1503
1503
|
*/
|
|
1504
|
-
AssociationSize?: number;
|
|
1504
|
+
AssociationSize?: number | undefined;
|
|
1505
1505
|
/**
|
|
1506
1506
|
* <p>The start billing period of the custom line item version.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
StartBillingPeriod?: string;
|
|
1509
|
+
StartBillingPeriod?: string | undefined;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* <p>The end billing period of the custom line item version.</p>
|
|
1512
1512
|
* @public
|
|
1513
1513
|
*/
|
|
1514
|
-
EndBillingPeriod?: string;
|
|
1514
|
+
EndBillingPeriod?: string | undefined;
|
|
1515
1515
|
/**
|
|
1516
1516
|
* <p>
|
|
1517
1517
|
* A list of custom line item Amazon Resource Names (ARNs) to retrieve information.
|
|
1518
1518
|
* </p>
|
|
1519
1519
|
* @public
|
|
1520
1520
|
*/
|
|
1521
|
-
Arn?: string;
|
|
1521
|
+
Arn?: string | undefined;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* <p>
|
|
1524
1524
|
* The inclusive start time.
|
|
1525
1525
|
* </p>
|
|
1526
1526
|
* @public
|
|
1527
1527
|
*/
|
|
1528
|
-
StartTime?: number;
|
|
1528
|
+
StartTime?: number | undefined;
|
|
1529
1529
|
/**
|
|
1530
1530
|
* <p>The Amazon Web Services account in which this custom line item will be applied to.</p>
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
AccountId?: string;
|
|
1533
|
+
AccountId?: string | undefined;
|
|
1534
1534
|
}
|
|
1535
1535
|
/**
|
|
1536
1536
|
* @public
|
|
@@ -1540,12 +1540,12 @@ export interface ListCustomLineItemVersionsOutput {
|
|
|
1540
1540
|
* <p>A list of <code>CustomLineItemVersionListElements</code> that are received.</p>
|
|
1541
1541
|
* @public
|
|
1542
1542
|
*/
|
|
1543
|
-
CustomLineItemVersions?: CustomLineItemVersionListElement[];
|
|
1543
|
+
CustomLineItemVersions?: CustomLineItemVersionListElement[] | undefined;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* <p>The pagination token that's used on subsequent calls to retrieve custom line item versions.</p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
NextToken?: string;
|
|
1548
|
+
NextToken?: string | undefined;
|
|
1549
1549
|
}
|
|
1550
1550
|
/**
|
|
1551
1551
|
* @public
|
|
@@ -1572,7 +1572,7 @@ export interface ListResourcesAssociatedToCustomLineItemFilter {
|
|
|
1572
1572
|
* </p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
Relationship?: CustomLineItemRelationship;
|
|
1575
|
+
Relationship?: CustomLineItemRelationship | undefined;
|
|
1576
1576
|
}
|
|
1577
1577
|
/**
|
|
1578
1578
|
* @public
|
|
@@ -1584,7 +1584,7 @@ export interface ListResourcesAssociatedToCustomLineItemInput {
|
|
|
1584
1584
|
* </p>
|
|
1585
1585
|
* @public
|
|
1586
1586
|
*/
|
|
1587
|
-
BillingPeriod?: string;
|
|
1587
|
+
BillingPeriod?: string | undefined;
|
|
1588
1588
|
/**
|
|
1589
1589
|
* <p>
|
|
1590
1590
|
* The ARN of the custom line item for which the resource associations will be listed.
|
|
@@ -1598,19 +1598,19 @@ export interface ListResourcesAssociatedToCustomLineItemInput {
|
|
|
1598
1598
|
* </p>
|
|
1599
1599
|
* @public
|
|
1600
1600
|
*/
|
|
1601
|
-
MaxResults?: number;
|
|
1601
|
+
MaxResults?: number | undefined;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* <p> (Optional) The pagination token that's returned by a previous request. </p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
NextToken?: string;
|
|
1606
|
+
NextToken?: string | undefined;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* <p>
|
|
1609
1609
|
* (Optional) A <code>ListResourcesAssociatedToCustomLineItemFilter</code> that can specify the types of resources that should be retrieved.
|
|
1610
1610
|
* </p>
|
|
1611
1611
|
* @public
|
|
1612
1612
|
*/
|
|
1613
|
-
Filters?: ListResourcesAssociatedToCustomLineItemFilter;
|
|
1613
|
+
Filters?: ListResourcesAssociatedToCustomLineItemFilter | undefined;
|
|
1614
1614
|
}
|
|
1615
1615
|
/**
|
|
1616
1616
|
* <p>
|
|
@@ -1625,19 +1625,19 @@ export interface ListResourcesAssociatedToCustomLineItemResponseElement {
|
|
|
1625
1625
|
* </p>
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
Arn?: string;
|
|
1628
|
+
Arn?: string | undefined;
|
|
1629
1629
|
/**
|
|
1630
1630
|
* <p>
|
|
1631
1631
|
* The type of relationship between the custom line item and the associated resource.
|
|
1632
1632
|
* </p>
|
|
1633
1633
|
* @public
|
|
1634
1634
|
*/
|
|
1635
|
-
Relationship?: CustomLineItemRelationship;
|
|
1635
|
+
Relationship?: CustomLineItemRelationship | undefined;
|
|
1636
1636
|
/**
|
|
1637
1637
|
* <p>The end billing period of the associated resource.</p>
|
|
1638
1638
|
* @public
|
|
1639
1639
|
*/
|
|
1640
|
-
EndBillingPeriod?: string;
|
|
1640
|
+
EndBillingPeriod?: string | undefined;
|
|
1641
1641
|
}
|
|
1642
1642
|
/**
|
|
1643
1643
|
* @public
|
|
@@ -1649,21 +1649,21 @@ export interface ListResourcesAssociatedToCustomLineItemOutput {
|
|
|
1649
1649
|
* </p>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
Arn?: string;
|
|
1652
|
+
Arn?: string | undefined;
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>
|
|
1655
1655
|
* A list of <code>ListResourcesAssociatedToCustomLineItemResponseElement</code> for each resource association retrieved.
|
|
1656
1656
|
* </p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
|
-
AssociatedResources?: ListResourcesAssociatedToCustomLineItemResponseElement[];
|
|
1659
|
+
AssociatedResources?: ListResourcesAssociatedToCustomLineItemResponseElement[] | undefined;
|
|
1660
1660
|
/**
|
|
1661
1661
|
* <p>
|
|
1662
1662
|
* The pagination token to be used in subsequent requests to retrieve additional results.
|
|
1663
1663
|
* </p>
|
|
1664
1664
|
* @public
|
|
1665
1665
|
*/
|
|
1666
|
-
NextToken?: string;
|
|
1666
|
+
NextToken?: string | undefined;
|
|
1667
1667
|
}
|
|
1668
1668
|
/**
|
|
1669
1669
|
* <p>
|
|
@@ -1708,19 +1708,19 @@ export interface UpdateCustomLineItemChargeDetails {
|
|
|
1708
1708
|
* </p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
Flat?: UpdateCustomLineItemFlatChargeDetails;
|
|
1711
|
+
Flat?: UpdateCustomLineItemFlatChargeDetails | undefined;
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>
|
|
1714
1714
|
* An <code>UpdateCustomLineItemPercentageChargeDetails</code> that describes the new charge details of a percentage custom line item.
|
|
1715
1715
|
* </p>
|
|
1716
1716
|
* @public
|
|
1717
1717
|
*/
|
|
1718
|
-
Percentage?: UpdateCustomLineItemPercentageChargeDetails;
|
|
1718
|
+
Percentage?: UpdateCustomLineItemPercentageChargeDetails | undefined;
|
|
1719
1719
|
/**
|
|
1720
1720
|
* <p>A representation of the line item filter.</p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
LineItemFilters?: LineItemFilter[];
|
|
1723
|
+
LineItemFilters?: LineItemFilter[] | undefined;
|
|
1724
1724
|
}
|
|
1725
1725
|
/**
|
|
1726
1726
|
* @public
|
|
@@ -1739,26 +1739,26 @@ export interface UpdateCustomLineItemInput {
|
|
|
1739
1739
|
* </p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
Name?: string;
|
|
1742
|
+
Name?: string | undefined;
|
|
1743
1743
|
/**
|
|
1744
1744
|
* <p>
|
|
1745
1745
|
* The new line item description of the custom line item.
|
|
1746
1746
|
* </p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
Description?: string;
|
|
1749
|
+
Description?: string | undefined;
|
|
1750
1750
|
/**
|
|
1751
1751
|
* <p>
|
|
1752
1752
|
* A <code>ListCustomLineItemChargeDetails</code> containing the new charge details for the custom line item.
|
|
1753
1753
|
* </p>
|
|
1754
1754
|
* @public
|
|
1755
1755
|
*/
|
|
1756
|
-
ChargeDetails?: UpdateCustomLineItemChargeDetails;
|
|
1756
|
+
ChargeDetails?: UpdateCustomLineItemChargeDetails | undefined;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* <p>The billing period range in which the custom line item request will be applied.</p>
|
|
1759
1759
|
* @public
|
|
1760
1760
|
*/
|
|
1761
|
-
BillingPeriodRange?: CustomLineItemBillingPeriodRange;
|
|
1761
|
+
BillingPeriodRange?: CustomLineItemBillingPeriodRange | undefined;
|
|
1762
1762
|
}
|
|
1763
1763
|
/**
|
|
1764
1764
|
* @public
|
|
@@ -1770,47 +1770,47 @@ export interface UpdateCustomLineItemOutput {
|
|
|
1770
1770
|
* </p>
|
|
1771
1771
|
* @public
|
|
1772
1772
|
*/
|
|
1773
|
-
Arn?: string;
|
|
1773
|
+
Arn?: string | undefined;
|
|
1774
1774
|
/**
|
|
1775
1775
|
* <p>
|
|
1776
1776
|
* The ARN of the billing group that the custom line item is applied to.
|
|
1777
1777
|
* </p>
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
BillingGroupArn?: string;
|
|
1780
|
+
BillingGroupArn?: string | undefined;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* <p>
|
|
1783
1783
|
* The name of the successfully updated custom line item.
|
|
1784
1784
|
* </p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
Name?: string;
|
|
1787
|
+
Name?: string | undefined;
|
|
1788
1788
|
/**
|
|
1789
1789
|
* <p>
|
|
1790
1790
|
* The description of the successfully updated custom line item.
|
|
1791
1791
|
* </p>
|
|
1792
1792
|
* @public
|
|
1793
1793
|
*/
|
|
1794
|
-
Description?: string;
|
|
1794
|
+
Description?: string | undefined;
|
|
1795
1795
|
/**
|
|
1796
1796
|
* <p>
|
|
1797
1797
|
* A <code>ListCustomLineItemChargeDetails</code> containing the charge details of the successfully updated custom line item.
|
|
1798
1798
|
* </p>
|
|
1799
1799
|
* @public
|
|
1800
1800
|
*/
|
|
1801
|
-
ChargeDetails?: ListCustomLineItemChargeDetails;
|
|
1801
|
+
ChargeDetails?: ListCustomLineItemChargeDetails | undefined;
|
|
1802
1802
|
/**
|
|
1803
1803
|
* <p> The most recent time when the custom line item was modified. </p>
|
|
1804
1804
|
* @public
|
|
1805
1805
|
*/
|
|
1806
|
-
LastModifiedTime?: number;
|
|
1806
|
+
LastModifiedTime?: number | undefined;
|
|
1807
1807
|
/**
|
|
1808
1808
|
* <p>
|
|
1809
1809
|
* The number of resources that are associated to the custom line item.
|
|
1810
1810
|
* </p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
AssociationSize?: number;
|
|
1813
|
+
AssociationSize?: number | undefined;
|
|
1814
1814
|
}
|
|
1815
1815
|
/**
|
|
1816
1816
|
* <p>A time range for which the margin summary is effective. The time range can be up to 12 months.</p>
|
|
@@ -1853,24 +1853,24 @@ export interface GetBillingGroupCostReportInput {
|
|
|
1853
1853
|
* <p>A time range for which the margin summary is effective. You can specify up to 12 months.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
BillingPeriodRange?: BillingPeriodRange;
|
|
1856
|
+
BillingPeriodRange?: BillingPeriodRange | undefined;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>A list of strings that specify the attributes that are used to break down costs in the
|
|
1859
1859
|
* margin summary reports for the billing group. For example, you can view your costs by the
|
|
1860
1860
|
* Amazon Web Service name or the billing period.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
GroupBy?: GroupByAttributeName[];
|
|
1863
|
+
GroupBy?: GroupByAttributeName[] | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The maximum number of margin summary reports to retrieve.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
MaxResults?: number;
|
|
1868
|
+
MaxResults?: number | undefined;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* <p>The pagination token used on subsequent calls to get reports.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
NextToken?: string;
|
|
1873
|
+
NextToken?: string | undefined;
|
|
1874
1874
|
}
|
|
1875
1875
|
/**
|
|
1876
1876
|
* <p>A paginated call to retrieve a list of summary reports of actual Amazon Web Services charges and the
|
|
@@ -1882,32 +1882,32 @@ export interface BillingGroupCostReportResultElement {
|
|
|
1882
1882
|
* <p>The Amazon Resource Number (ARN) that uniquely identifies the billing group.</p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
Arn?: string;
|
|
1885
|
+
Arn?: string | undefined;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* <p>The actual Amazon Web Services charges for the billing group.</p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
AWSCost?: string;
|
|
1890
|
+
AWSCost?: string | undefined;
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>The hypothetical Amazon Web Services charges based on the associated pricing plan of a billing group.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
ProformaCost?: string;
|
|
1895
|
+
ProformaCost?: string | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>The billing group margin.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
Margin?: string;
|
|
1900
|
+
Margin?: string | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>The percentage of the billing group margin.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
MarginPercentage?: string;
|
|
1905
|
+
MarginPercentage?: string | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>The displayed currency.</p>
|
|
1908
1908
|
* @public
|
|
1909
1909
|
*/
|
|
1910
|
-
Currency?: string;
|
|
1910
|
+
Currency?: string | undefined;
|
|
1911
1911
|
/**
|
|
1912
1912
|
* <p>The list of key-value pairs that represent the attributes by which the
|
|
1913
1913
|
* <code>BillingGroupCostReportResults</code> are grouped. For example, if you want the
|
|
@@ -1917,7 +1917,7 @@ export interface BillingGroupCostReportResultElement {
|
|
|
1917
1917
|
* <code>"Nov 2023"</code>.</p>
|
|
1918
1918
|
* @public
|
|
1919
1919
|
*/
|
|
1920
|
-
Attributes?: Attribute[];
|
|
1920
|
+
Attributes?: Attribute[] | undefined;
|
|
1921
1921
|
}
|
|
1922
1922
|
/**
|
|
1923
1923
|
* @public
|
|
@@ -1927,12 +1927,12 @@ export interface GetBillingGroupCostReportOutput {
|
|
|
1927
1927
|
* <p>The list of margin summary reports.</p>
|
|
1928
1928
|
* @public
|
|
1929
1929
|
*/
|
|
1930
|
-
BillingGroupCostReportResults?: BillingGroupCostReportResultElement[];
|
|
1930
|
+
BillingGroupCostReportResults?: BillingGroupCostReportResultElement[] | undefined;
|
|
1931
1931
|
/**
|
|
1932
1932
|
* <p>The pagination token used on subsequent calls to get reports.</p>
|
|
1933
1933
|
* @public
|
|
1934
1934
|
*/
|
|
1935
|
-
NextToken?: string;
|
|
1935
|
+
NextToken?: string | undefined;
|
|
1936
1936
|
}
|
|
1937
1937
|
/**
|
|
1938
1938
|
* <p>The filter on the account ID of the linked account, or any of the following:</p>
|
|
@@ -1954,19 +1954,19 @@ export interface ListAccountAssociationsFilter {
|
|
|
1954
1954
|
* <code>Billing Group Arn</code>: linked accounts that are associated to the provided Billing Group Arn.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
Association?: string;
|
|
1957
|
+
Association?: string | undefined;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>The Amazon Web Services account ID to filter on.</p>
|
|
1960
1960
|
* @public
|
|
1961
1961
|
*/
|
|
1962
|
-
AccountId?: string;
|
|
1962
|
+
AccountId?: string | undefined;
|
|
1963
1963
|
/**
|
|
1964
1964
|
* <p>
|
|
1965
1965
|
* The list of Amazon Web Services IDs to retrieve their associated billing group for a given time range.
|
|
1966
1966
|
* </p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
AccountIds?: string[];
|
|
1969
|
+
AccountIds?: string[] | undefined;
|
|
1970
1970
|
}
|
|
1971
1971
|
/**
|
|
1972
1972
|
* @public
|
|
@@ -1978,7 +1978,7 @@ export interface ListAccountAssociationsInput {
|
|
|
1978
1978
|
* </p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
BillingPeriod?: string;
|
|
1981
|
+
BillingPeriod?: string | undefined;
|
|
1982
1982
|
/**
|
|
1983
1983
|
* <p>The filter on the account ID of the linked account, or any of the following:</p>
|
|
1984
1984
|
* <p>
|
|
@@ -1990,14 +1990,14 @@ export interface ListAccountAssociationsInput {
|
|
|
1990
1990
|
* billing group Arn. </p>
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
Filters?: ListAccountAssociationsFilter;
|
|
1993
|
+
Filters?: ListAccountAssociationsFilter | undefined;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* <p>
|
|
1996
1996
|
* The pagination token that's used on subsequent calls to retrieve accounts.
|
|
1997
1997
|
* </p>
|
|
1998
1998
|
* @public
|
|
1999
1999
|
*/
|
|
2000
|
-
NextToken?: string;
|
|
2000
|
+
NextToken?: string | undefined;
|
|
2001
2001
|
}
|
|
2002
2002
|
/**
|
|
2003
2003
|
* @public
|
|
@@ -2007,14 +2007,14 @@ export interface ListAccountAssociationsOutput {
|
|
|
2007
2007
|
* <p> The list of linked accounts in the payer account. </p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
LinkedAccounts?: AccountAssociationsListElement[];
|
|
2010
|
+
LinkedAccounts?: AccountAssociationsListElement[] | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p>
|
|
2013
2013
|
* The pagination token that's used on subsequent calls to get accounts.
|
|
2014
2014
|
* </p>
|
|
2015
2015
|
* @public
|
|
2016
2016
|
*/
|
|
2017
|
-
NextToken?: string;
|
|
2017
|
+
NextToken?: string | undefined;
|
|
2018
2018
|
}
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>The filter used to retrieve specific <code>BillingGroupCostReportElements</code>.</p>
|
|
@@ -2025,7 +2025,7 @@ export interface ListBillingGroupCostReportsFilter {
|
|
|
2025
2025
|
* <p>The list of Amazon Resource Names (ARNs) used to filter billing groups to retrieve reports. </p>
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
BillingGroupArns?: string[];
|
|
2028
|
+
BillingGroupArns?: string[] | undefined;
|
|
2029
2029
|
}
|
|
2030
2030
|
/**
|
|
2031
2031
|
* @public
|
|
@@ -2036,25 +2036,25 @@ export interface ListBillingGroupCostReportsInput {
|
|
|
2036
2036
|
* </p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
BillingPeriod?: string;
|
|
2039
|
+
BillingPeriod?: string | undefined;
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p>The maximum number of reports to retrieve.
|
|
2042
2042
|
* </p>
|
|
2043
2043
|
* @public
|
|
2044
2044
|
*/
|
|
2045
|
-
MaxResults?: number;
|
|
2045
|
+
MaxResults?: number | undefined;
|
|
2046
2046
|
/**
|
|
2047
2047
|
* <p>The pagination token that's used on subsequent calls to get reports.
|
|
2048
2048
|
* </p>
|
|
2049
2049
|
* @public
|
|
2050
2050
|
*/
|
|
2051
|
-
NextToken?: string;
|
|
2051
|
+
NextToken?: string | undefined;
|
|
2052
2052
|
/**
|
|
2053
2053
|
* <p>A <code>ListBillingGroupCostReportsFilter</code> to specify billing groups to retrieve reports from.
|
|
2054
2054
|
* </p>
|
|
2055
2055
|
* @public
|
|
2056
2056
|
*/
|
|
2057
|
-
Filters?: ListBillingGroupCostReportsFilter;
|
|
2057
|
+
Filters?: ListBillingGroupCostReportsFilter | undefined;
|
|
2058
2058
|
}
|
|
2059
2059
|
/**
|
|
2060
2060
|
* <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>
|
|
@@ -2065,32 +2065,32 @@ export interface BillingGroupCostReportElement {
|
|
|
2065
2065
|
* <p>The Amazon Resource Name (ARN) of a billing group.</p>
|
|
2066
2066
|
* @public
|
|
2067
2067
|
*/
|
|
2068
|
-
Arn?: string;
|
|
2068
|
+
Arn?: string | undefined;
|
|
2069
2069
|
/**
|
|
2070
2070
|
* <p>The actual Amazon Web Services charges for the billing group.</p>
|
|
2071
2071
|
* @public
|
|
2072
2072
|
*/
|
|
2073
|
-
AWSCost?: string;
|
|
2073
|
+
AWSCost?: string | undefined;
|
|
2074
2074
|
/**
|
|
2075
2075
|
* <p>The hypothetical Amazon Web Services charges based on the associated pricing plan of a billing group.</p>
|
|
2076
2076
|
* @public
|
|
2077
2077
|
*/
|
|
2078
|
-
ProformaCost?: string;
|
|
2078
|
+
ProformaCost?: string | undefined;
|
|
2079
2079
|
/**
|
|
2080
2080
|
* <p>The billing group margin.</p>
|
|
2081
2081
|
* @public
|
|
2082
2082
|
*/
|
|
2083
|
-
Margin?: string;
|
|
2083
|
+
Margin?: string | undefined;
|
|
2084
2084
|
/**
|
|
2085
2085
|
* <p>The percentage of billing group margin.</p>
|
|
2086
2086
|
* @public
|
|
2087
2087
|
*/
|
|
2088
|
-
MarginPercentage?: string;
|
|
2088
|
+
MarginPercentage?: string | undefined;
|
|
2089
2089
|
/**
|
|
2090
2090
|
* <p>The displayed currency.</p>
|
|
2091
2091
|
* @public
|
|
2092
2092
|
*/
|
|
2093
|
-
Currency?: string;
|
|
2093
|
+
Currency?: string | undefined;
|
|
2094
2094
|
}
|
|
2095
2095
|
/**
|
|
2096
2096
|
* @public
|
|
@@ -2101,13 +2101,13 @@ export interface ListBillingGroupCostReportsOutput {
|
|
|
2101
2101
|
* </p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
BillingGroupCostReports?: BillingGroupCostReportElement[];
|
|
2104
|
+
BillingGroupCostReports?: BillingGroupCostReportElement[] | undefined;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* <p>The pagination token that's used on subsequent calls to get reports.
|
|
2107
2107
|
* </p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
NextToken?: string;
|
|
2110
|
+
NextToken?: string | undefined;
|
|
2111
2111
|
}
|
|
2112
2112
|
/**
|
|
2113
2113
|
* @public
|
|
@@ -2131,7 +2131,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2131
2131
|
* </p>
|
|
2132
2132
|
* @public
|
|
2133
2133
|
*/
|
|
2134
|
-
Tags?: Record<string, string
|
|
2134
|
+
Tags?: Record<string, string> | undefined;
|
|
2135
2135
|
}
|
|
2136
2136
|
/**
|
|
2137
2137
|
* @public
|
|
@@ -2143,7 +2143,7 @@ export interface CreatePricingPlanInput {
|
|
|
2143
2143
|
* </p>
|
|
2144
2144
|
* @public
|
|
2145
2145
|
*/
|
|
2146
|
-
ClientToken?: string;
|
|
2146
|
+
ClientToken?: string | undefined;
|
|
2147
2147
|
/**
|
|
2148
2148
|
* <p>The name of the pricing plan. The names must be unique to each pricing plan. </p>
|
|
2149
2149
|
* @public
|
|
@@ -2153,19 +2153,19 @@ export interface CreatePricingPlanInput {
|
|
|
2153
2153
|
* <p>The description of the pricing plan. </p>
|
|
2154
2154
|
* @public
|
|
2155
2155
|
*/
|
|
2156
|
-
Description?: string;
|
|
2156
|
+
Description?: string | undefined;
|
|
2157
2157
|
/**
|
|
2158
2158
|
* <p> A list of Amazon Resource Names (ARNs) that define the pricing plan parameters. </p>
|
|
2159
2159
|
* @public
|
|
2160
2160
|
*/
|
|
2161
|
-
PricingRuleArns?: string[];
|
|
2161
|
+
PricingRuleArns?: string[] | undefined;
|
|
2162
2162
|
/**
|
|
2163
2163
|
* <p>
|
|
2164
2164
|
* A map that contains tag keys and tag values that are attached to a pricing plan.
|
|
2165
2165
|
* </p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
Tags?: Record<string, string
|
|
2168
|
+
Tags?: Record<string, string> | undefined;
|
|
2169
2169
|
}
|
|
2170
2170
|
/**
|
|
2171
2171
|
* @public
|
|
@@ -2175,7 +2175,7 @@ export interface CreatePricingPlanOutput {
|
|
|
2175
2175
|
* <p>The Amazon Resource Name (ARN) of the created pricing plan.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
Arn?: string;
|
|
2178
|
+
Arn?: string | undefined;
|
|
2179
2179
|
}
|
|
2180
2180
|
/**
|
|
2181
2181
|
* @public
|
|
@@ -2195,7 +2195,7 @@ export interface DeletePricingPlanOutput {
|
|
|
2195
2195
|
* <p> The Amazon Resource Name (ARN) of the deleted pricing plan. </p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
Arn?: string;
|
|
2198
|
+
Arn?: string | undefined;
|
|
2199
2199
|
}
|
|
2200
2200
|
/**
|
|
2201
2201
|
* @public
|
|
@@ -2222,7 +2222,7 @@ export interface DisassociatePricingRulesOutput {
|
|
|
2222
2222
|
* disassociated from. </p>
|
|
2223
2223
|
* @public
|
|
2224
2224
|
*/
|
|
2225
|
-
Arn?: string;
|
|
2225
|
+
Arn?: string | undefined;
|
|
2226
2226
|
}
|
|
2227
2227
|
/**
|
|
2228
2228
|
* <p>The filter that specifies the Amazon Resource Names (ARNs) of pricing plans, to retrieve
|
|
@@ -2234,7 +2234,7 @@ export interface ListPricingPlansFilter {
|
|
|
2234
2234
|
* <p>A list of pricing plan Amazon Resource Names (ARNs) to retrieve information.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
Arns?: string[];
|
|
2237
|
+
Arns?: string[] | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* @public
|
|
@@ -2245,24 +2245,24 @@ export interface ListPricingPlansInput {
|
|
|
2245
2245
|
* </p>
|
|
2246
2246
|
* @public
|
|
2247
2247
|
*/
|
|
2248
|
-
BillingPeriod?: string;
|
|
2248
|
+
BillingPeriod?: string | undefined;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* <p>A <code>ListPricingPlansFilter</code> that specifies the Amazon Resource Name (ARNs)
|
|
2251
2251
|
* of pricing plans to retrieve pricing plans information.</p>
|
|
2252
2252
|
* @public
|
|
2253
2253
|
*/
|
|
2254
|
-
Filters?: ListPricingPlansFilter;
|
|
2254
|
+
Filters?: ListPricingPlansFilter | undefined;
|
|
2255
2255
|
/**
|
|
2256
2256
|
* <p>The maximum number of pricing plans to retrieve.</p>
|
|
2257
2257
|
* @public
|
|
2258
2258
|
*/
|
|
2259
|
-
MaxResults?: number;
|
|
2259
|
+
MaxResults?: number | undefined;
|
|
2260
2260
|
/**
|
|
2261
2261
|
* <p>The pagination token that's used on subsequent call to get pricing plans.
|
|
2262
2262
|
* </p>
|
|
2263
2263
|
* @public
|
|
2264
2264
|
*/
|
|
2265
|
-
NextToken?: string;
|
|
2265
|
+
NextToken?: string | undefined;
|
|
2266
2266
|
}
|
|
2267
2267
|
/**
|
|
2268
2268
|
* <p>A representation of a pricing plan.</p>
|
|
@@ -2273,32 +2273,32 @@ export interface PricingPlanListElement {
|
|
|
2273
2273
|
* <p>The name of a pricing plan.</p>
|
|
2274
2274
|
* @public
|
|
2275
2275
|
*/
|
|
2276
|
-
Name?: string;
|
|
2276
|
+
Name?: string | undefined;
|
|
2277
2277
|
/**
|
|
2278
2278
|
* <p>The pricing plan Amazon Resource Names (ARN). This can be used to uniquely identify a pricing plan.</p>
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
Arn?: string;
|
|
2281
|
+
Arn?: string | undefined;
|
|
2282
2282
|
/**
|
|
2283
2283
|
* <p>The pricing plan description.</p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
Description?: string;
|
|
2286
|
+
Description?: string | undefined;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* <p>The pricing rules count that's currently associated with this pricing plan list element.</p>
|
|
2289
2289
|
* @public
|
|
2290
2290
|
*/
|
|
2291
|
-
Size?: number;
|
|
2291
|
+
Size?: number | undefined;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* <p>The time when the pricing plan was created.</p>
|
|
2294
2294
|
* @public
|
|
2295
2295
|
*/
|
|
2296
|
-
CreationTime?: number;
|
|
2296
|
+
CreationTime?: number | undefined;
|
|
2297
2297
|
/**
|
|
2298
2298
|
* <p>The most recent time when the pricing plan was modified.</p>
|
|
2299
2299
|
* @public
|
|
2300
2300
|
*/
|
|
2301
|
-
LastModifiedTime?: number;
|
|
2301
|
+
LastModifiedTime?: number | undefined;
|
|
2302
2302
|
}
|
|
2303
2303
|
/**
|
|
2304
2304
|
* @public
|
|
@@ -2310,19 +2310,19 @@ export interface ListPricingPlansOutput {
|
|
|
2310
2310
|
* </p>
|
|
2311
2311
|
* @public
|
|
2312
2312
|
*/
|
|
2313
|
-
BillingPeriod?: string;
|
|
2313
|
+
BillingPeriod?: string | undefined;
|
|
2314
2314
|
/**
|
|
2315
2315
|
* <p>A list of <code>PricingPlanListElement</code> retrieved.
|
|
2316
2316
|
* </p>
|
|
2317
2317
|
* @public
|
|
2318
2318
|
*/
|
|
2319
|
-
PricingPlans?: PricingPlanListElement[];
|
|
2319
|
+
PricingPlans?: PricingPlanListElement[] | undefined;
|
|
2320
2320
|
/**
|
|
2321
2321
|
* <p>The pagination token that's used on subsequent calls to get pricing plans.
|
|
2322
2322
|
* </p>
|
|
2323
2323
|
* @public
|
|
2324
2324
|
*/
|
|
2325
|
-
NextToken?: string;
|
|
2325
|
+
NextToken?: string | undefined;
|
|
2326
2326
|
}
|
|
2327
2327
|
/**
|
|
2328
2328
|
* @public
|
|
@@ -2334,7 +2334,7 @@ export interface ListPricingPlansAssociatedWithPricingRuleInput {
|
|
|
2334
2334
|
* </p>
|
|
2335
2335
|
* @public
|
|
2336
2336
|
*/
|
|
2337
|
-
BillingPeriod?: string;
|
|
2337
|
+
BillingPeriod?: string | undefined;
|
|
2338
2338
|
/**
|
|
2339
2339
|
* <p> The pricing rule Amazon Resource Name (ARN) for which associations will be listed. </p>
|
|
2340
2340
|
* @public
|
|
@@ -2346,14 +2346,14 @@ export interface ListPricingPlansAssociatedWithPricingRuleInput {
|
|
|
2346
2346
|
* </p>
|
|
2347
2347
|
* @public
|
|
2348
2348
|
*/
|
|
2349
|
-
MaxResults?: number;
|
|
2349
|
+
MaxResults?: number | undefined;
|
|
2350
2350
|
/**
|
|
2351
2351
|
* <p>
|
|
2352
2352
|
* The optional pagination token returned by a previous call.
|
|
2353
2353
|
* </p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
NextToken?: string;
|
|
2356
|
+
NextToken?: string | undefined;
|
|
2357
2357
|
}
|
|
2358
2358
|
/**
|
|
2359
2359
|
* @public
|
|
@@ -2365,26 +2365,26 @@ export interface ListPricingPlansAssociatedWithPricingRuleOutput {
|
|
|
2365
2365
|
* </p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
BillingPeriod?: string;
|
|
2368
|
+
BillingPeriod?: string | undefined;
|
|
2369
2369
|
/**
|
|
2370
2370
|
* <p> The pricing rule Amazon Resource Name (ARN) for which associations will be listed. </p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
PricingRuleArn?: string;
|
|
2373
|
+
PricingRuleArn?: string | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>
|
|
2376
2376
|
* The list containing pricing plans that are associated with the requested pricing rule.
|
|
2377
2377
|
* </p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
PricingPlanArns?: string[];
|
|
2380
|
+
PricingPlanArns?: string[] | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>
|
|
2383
2383
|
* The pagination token to be used on subsequent calls.
|
|
2384
2384
|
* </p>
|
|
2385
2385
|
* @public
|
|
2386
2386
|
*/
|
|
2387
|
-
NextToken?: string;
|
|
2387
|
+
NextToken?: string | undefined;
|
|
2388
2388
|
}
|
|
2389
2389
|
/**
|
|
2390
2390
|
* @public
|
|
@@ -2400,12 +2400,12 @@ export interface UpdatePricingPlanInput {
|
|
|
2400
2400
|
* </p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
Name?: string;
|
|
2403
|
+
Name?: string | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>The description of the pricing plan. </p>
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
Description?: string;
|
|
2408
|
+
Description?: string | undefined;
|
|
2409
2409
|
}
|
|
2410
2410
|
/**
|
|
2411
2411
|
* @public
|
|
@@ -2415,33 +2415,33 @@ export interface UpdatePricingPlanOutput {
|
|
|
2415
2415
|
* <p>The Amazon Resource Name (ARN) of the updated pricing plan. </p>
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
Arn?: string;
|
|
2418
|
+
Arn?: string | undefined;
|
|
2419
2419
|
/**
|
|
2420
2420
|
* <p>
|
|
2421
2421
|
* The name of the pricing plan. The name must be unique to each pricing plan.
|
|
2422
2422
|
* </p>
|
|
2423
2423
|
* @public
|
|
2424
2424
|
*/
|
|
2425
|
-
Name?: string;
|
|
2425
|
+
Name?: string | undefined;
|
|
2426
2426
|
/**
|
|
2427
2427
|
* <p>
|
|
2428
2428
|
* The new description for the pricing rule.
|
|
2429
2429
|
* </p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
Description?: string;
|
|
2432
|
+
Description?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>
|
|
2435
2435
|
* The pricing rules count that's currently associated with this pricing plan list.
|
|
2436
2436
|
* </p>
|
|
2437
2437
|
* @public
|
|
2438
2438
|
*/
|
|
2439
|
-
Size?: number;
|
|
2439
|
+
Size?: number | undefined;
|
|
2440
2440
|
/**
|
|
2441
2441
|
* <p> The most recent time when the pricing plan was modified. </p>
|
|
2442
2442
|
* @public
|
|
2443
2443
|
*/
|
|
2444
|
-
LastModifiedTime?: number;
|
|
2444
|
+
LastModifiedTime?: number | undefined;
|
|
2445
2445
|
}
|
|
2446
2446
|
/**
|
|
2447
2447
|
* @public
|
|
@@ -2509,7 +2509,7 @@ export interface CreatePricingRuleInput {
|
|
|
2509
2509
|
* but will be implemented in a future update. </p>
|
|
2510
2510
|
* @public
|
|
2511
2511
|
*/
|
|
2512
|
-
ClientToken?: string;
|
|
2512
|
+
ClientToken?: string | undefined;
|
|
2513
2513
|
/**
|
|
2514
2514
|
* <p>
|
|
2515
2515
|
* The pricing rule name. The names must be unique to each pricing rule.
|
|
@@ -2523,7 +2523,7 @@ export interface CreatePricingRuleInput {
|
|
|
2523
2523
|
* </p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
Description?: string;
|
|
2526
|
+
Description?: string | undefined;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* <p> The scope of pricing rule that indicates if it's globally applicable, or it's
|
|
2529
2529
|
* service-specific. </p>
|
|
@@ -2541,35 +2541,35 @@ export interface CreatePricingRuleInput {
|
|
|
2541
2541
|
* <p> A percentage modifier that's applied on the public pricing rates. </p>
|
|
2542
2542
|
* @public
|
|
2543
2543
|
*/
|
|
2544
|
-
ModifierPercentage?: number;
|
|
2544
|
+
ModifierPercentage?: number | undefined;
|
|
2545
2545
|
/**
|
|
2546
2546
|
* <p>
|
|
2547
2547
|
* If the <code>Scope</code> attribute is set to <code>SERVICE</code> or <code>SKU</code>, the attribute indicates which service the <code>PricingRule</code> is applicable for.
|
|
2548
2548
|
* </p>
|
|
2549
2549
|
* @public
|
|
2550
2550
|
*/
|
|
2551
|
-
Service?: string;
|
|
2551
|
+
Service?: string | undefined;
|
|
2552
2552
|
/**
|
|
2553
2553
|
* <p>
|
|
2554
2554
|
* A map that contains tag keys and tag values that are attached to a pricing rule.
|
|
2555
2555
|
* </p>
|
|
2556
2556
|
* @public
|
|
2557
2557
|
*/
|
|
2558
|
-
Tags?: Record<string, string
|
|
2558
|
+
Tags?: Record<string, string> | undefined;
|
|
2559
2559
|
/**
|
|
2560
2560
|
* <p>
|
|
2561
2561
|
* The seller of services provided by Amazon Web Services, their affiliates, or third-party providers selling services via Amazon Web Services Marketplace.
|
|
2562
2562
|
* </p>
|
|
2563
2563
|
* @public
|
|
2564
2564
|
*/
|
|
2565
|
-
BillingEntity?: string;
|
|
2565
|
+
BillingEntity?: string | undefined;
|
|
2566
2566
|
/**
|
|
2567
2567
|
* <p>
|
|
2568
2568
|
* The set of tiering configurations for the pricing rule.
|
|
2569
2569
|
* </p>
|
|
2570
2570
|
* @public
|
|
2571
2571
|
*/
|
|
2572
|
-
Tiering?: CreateTieringInput;
|
|
2572
|
+
Tiering?: CreateTieringInput | undefined;
|
|
2573
2573
|
/**
|
|
2574
2574
|
* <p>
|
|
2575
2575
|
* Usage type is the unit that each service uses to measure the usage of a specific type of resource.</p>
|
|
@@ -2578,7 +2578,7 @@ export interface CreatePricingRuleInput {
|
|
|
2578
2578
|
* </p>
|
|
2579
2579
|
* @public
|
|
2580
2580
|
*/
|
|
2581
|
-
UsageType?: string;
|
|
2581
|
+
UsageType?: string | undefined;
|
|
2582
2582
|
/**
|
|
2583
2583
|
* <p>
|
|
2584
2584
|
* Operation is the specific Amazon Web Services action covered by this line item. This describes the specific usage of the line item.</p>
|
|
@@ -2586,7 +2586,7 @@ export interface CreatePricingRuleInput {
|
|
|
2586
2586
|
* If the <code>Scope</code> attribute is set to <code>SKU</code>, this attribute indicates which operation the <code>PricingRule</code> is modifying. For example, a value of <code>RunInstances:0202</code> indicates the operation of running an Amazon EC2 instance.</p>
|
|
2587
2587
|
* @public
|
|
2588
2588
|
*/
|
|
2589
|
-
Operation?: string;
|
|
2589
|
+
Operation?: string | undefined;
|
|
2590
2590
|
}
|
|
2591
2591
|
/**
|
|
2592
2592
|
* @public
|
|
@@ -2596,7 +2596,7 @@ export interface CreatePricingRuleOutput {
|
|
|
2596
2596
|
* <p> The Amazon Resource Name (ARN) of the created pricing rule. </p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
Arn?: string;
|
|
2599
|
+
Arn?: string | undefined;
|
|
2600
2600
|
}
|
|
2601
2601
|
/**
|
|
2602
2602
|
* @public
|
|
@@ -2616,7 +2616,7 @@ export interface DeletePricingRuleOutput {
|
|
|
2616
2616
|
* <p> The Amazon Resource Name (ARN) of the deleted pricing rule. </p>
|
|
2617
2617
|
* @public
|
|
2618
2618
|
*/
|
|
2619
|
-
Arn?: string;
|
|
2619
|
+
Arn?: string | undefined;
|
|
2620
2620
|
}
|
|
2621
2621
|
/**
|
|
2622
2622
|
* <p> The filter that specifies criteria that the pricing rules returned by the <code>ListPricingRules</code> API will adhere to.</p>
|
|
@@ -2627,7 +2627,7 @@ export interface ListPricingRulesFilter {
|
|
|
2627
2627
|
* <p>A list containing the pricing rule Amazon Resource Names (ARNs) to include in the API response.</p>
|
|
2628
2628
|
* @public
|
|
2629
2629
|
*/
|
|
2630
|
-
Arns?: string[];
|
|
2630
|
+
Arns?: string[] | undefined;
|
|
2631
2631
|
}
|
|
2632
2632
|
/**
|
|
2633
2633
|
* @public
|
|
@@ -2639,27 +2639,27 @@ export interface ListPricingRulesInput {
|
|
|
2639
2639
|
* </p>
|
|
2640
2640
|
* @public
|
|
2641
2641
|
*/
|
|
2642
|
-
BillingPeriod?: string;
|
|
2642
|
+
BillingPeriod?: string | undefined;
|
|
2643
2643
|
/**
|
|
2644
2644
|
* <p> A <code>DescribePricingRuleFilter</code> that specifies the Amazon Resource Name (ARNs)
|
|
2645
2645
|
* of pricing rules to retrieve pricing rules information. </p>
|
|
2646
2646
|
* @public
|
|
2647
2647
|
*/
|
|
2648
|
-
Filters?: ListPricingRulesFilter;
|
|
2648
|
+
Filters?: ListPricingRulesFilter | undefined;
|
|
2649
2649
|
/**
|
|
2650
2650
|
* <p>
|
|
2651
2651
|
* The maximum number of pricing rules to retrieve.
|
|
2652
2652
|
* </p>
|
|
2653
2653
|
* @public
|
|
2654
2654
|
*/
|
|
2655
|
-
MaxResults?: number;
|
|
2655
|
+
MaxResults?: number | undefined;
|
|
2656
2656
|
/**
|
|
2657
2657
|
* <p>
|
|
2658
2658
|
* The pagination token that's used on subsequent call to get pricing rules.
|
|
2659
2659
|
* </p>
|
|
2660
2660
|
* @public
|
|
2661
2661
|
*/
|
|
2662
|
-
NextToken?: string;
|
|
2662
|
+
NextToken?: string | undefined;
|
|
2663
2663
|
}
|
|
2664
2664
|
/**
|
|
2665
2665
|
* <p>
|
|
@@ -2700,66 +2700,66 @@ export interface PricingRuleListElement {
|
|
|
2700
2700
|
* <p>The name of a pricing rule.</p>
|
|
2701
2701
|
* @public
|
|
2702
2702
|
*/
|
|
2703
|
-
Name?: string;
|
|
2703
|
+
Name?: string | undefined;
|
|
2704
2704
|
/**
|
|
2705
2705
|
* <p>The Amazon Resource Name (ARN) used to uniquely identify a pricing rule.</p>
|
|
2706
2706
|
* @public
|
|
2707
2707
|
*/
|
|
2708
|
-
Arn?: string;
|
|
2708
|
+
Arn?: string | undefined;
|
|
2709
2709
|
/**
|
|
2710
2710
|
* <p>The pricing rule description.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
Description?: string;
|
|
2713
|
+
Description?: string | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>The scope of pricing rule that indicates if it is globally applicable, or if it is service-specific.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
Scope?: PricingRuleScope;
|
|
2718
|
+
Scope?: PricingRuleScope | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* <p>The type of pricing rule.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
Type?: PricingRuleType;
|
|
2723
|
+
Type?: PricingRuleType | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>A percentage modifier applied on the public pricing rates.</p>
|
|
2726
2726
|
* @public
|
|
2727
2727
|
*/
|
|
2728
|
-
ModifierPercentage?: number;
|
|
2728
|
+
ModifierPercentage?: number | undefined;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* <p>If the <code>Scope</code> attribute is <code>SERVICE</code>, this attribute indicates which service the <code>PricingRule</code> is applicable for.</p>
|
|
2731
2731
|
* @public
|
|
2732
2732
|
*/
|
|
2733
|
-
Service?: string;
|
|
2733
|
+
Service?: string | undefined;
|
|
2734
2734
|
/**
|
|
2735
2735
|
* <p>The pricing plans count that this pricing rule is associated with.</p>
|
|
2736
2736
|
* @public
|
|
2737
2737
|
*/
|
|
2738
|
-
AssociatedPricingPlanCount?: number;
|
|
2738
|
+
AssociatedPricingPlanCount?: number | undefined;
|
|
2739
2739
|
/**
|
|
2740
2740
|
* <p>The time when the pricing rule was created.</p>
|
|
2741
2741
|
* @public
|
|
2742
2742
|
*/
|
|
2743
|
-
CreationTime?: number;
|
|
2743
|
+
CreationTime?: number | undefined;
|
|
2744
2744
|
/**
|
|
2745
2745
|
* <p> The most recent time when the pricing rule was modified.</p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
LastModifiedTime?: number;
|
|
2748
|
+
LastModifiedTime?: number | undefined;
|
|
2749
2749
|
/**
|
|
2750
2750
|
* <p>
|
|
2751
2751
|
* The seller of services provided by Amazon Web Services, their affiliates, or third-party providers selling services via Amazon Web Services Marketplace.
|
|
2752
2752
|
* </p>
|
|
2753
2753
|
* @public
|
|
2754
2754
|
*/
|
|
2755
|
-
BillingEntity?: string;
|
|
2755
|
+
BillingEntity?: string | undefined;
|
|
2756
2756
|
/**
|
|
2757
2757
|
* <p>
|
|
2758
2758
|
* The set of tiering configurations for the pricing rule.
|
|
2759
2759
|
* </p>
|
|
2760
2760
|
* @public
|
|
2761
2761
|
*/
|
|
2762
|
-
Tiering?: Tiering;
|
|
2762
|
+
Tiering?: Tiering | undefined;
|
|
2763
2763
|
/**
|
|
2764
2764
|
* <p>
|
|
2765
2765
|
* Usage type is the unit that each service uses to measure the usage of a specific type of resource.</p>
|
|
@@ -2768,7 +2768,7 @@ export interface PricingRuleListElement {
|
|
|
2768
2768
|
* </p>
|
|
2769
2769
|
* @public
|
|
2770
2770
|
*/
|
|
2771
|
-
UsageType?: string;
|
|
2771
|
+
UsageType?: string | undefined;
|
|
2772
2772
|
/**
|
|
2773
2773
|
* <p>
|
|
2774
2774
|
* Operation is the specific Amazon Web Services action covered by this line item. This describes the specific usage of the line item.</p>
|
|
@@ -2776,7 +2776,7 @@ export interface PricingRuleListElement {
|
|
|
2776
2776
|
* If the <code>Scope</code> attribute is set to <code>SKU</code>, this attribute indicates which operation the <code>PricingRule</code> is modifying. For example, a value of <code>RunInstances:0202</code> indicates the operation of running an Amazon EC2 instance.</p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
Operation?: string;
|
|
2779
|
+
Operation?: string | undefined;
|
|
2780
2780
|
}
|
|
2781
2781
|
/**
|
|
2782
2782
|
* @public
|
|
@@ -2788,21 +2788,21 @@ export interface ListPricingRulesOutput {
|
|
|
2788
2788
|
* </p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
BillingPeriod?: string;
|
|
2791
|
+
BillingPeriod?: string | undefined;
|
|
2792
2792
|
/**
|
|
2793
2793
|
* <p>
|
|
2794
2794
|
* A list containing the described pricing rules.
|
|
2795
2795
|
* </p>
|
|
2796
2796
|
* @public
|
|
2797
2797
|
*/
|
|
2798
|
-
PricingRules?: PricingRuleListElement[];
|
|
2798
|
+
PricingRules?: PricingRuleListElement[] | undefined;
|
|
2799
2799
|
/**
|
|
2800
2800
|
* <p>
|
|
2801
2801
|
* The pagination token that's used on subsequent calls to get pricing rules.
|
|
2802
2802
|
* </p>
|
|
2803
2803
|
* @public
|
|
2804
2804
|
*/
|
|
2805
|
-
NextToken?: string;
|
|
2805
|
+
NextToken?: string | undefined;
|
|
2806
2806
|
}
|
|
2807
2807
|
/**
|
|
2808
2808
|
* @public
|
|
@@ -2814,7 +2814,7 @@ export interface ListPricingRulesAssociatedToPricingPlanInput {
|
|
|
2814
2814
|
* </p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
BillingPeriod?: string;
|
|
2817
|
+
BillingPeriod?: string | undefined;
|
|
2818
2818
|
/**
|
|
2819
2819
|
* <p> The Amazon Resource Name (ARN) of the pricing plan for which associations are to be
|
|
2820
2820
|
* listed.</p>
|
|
@@ -2825,14 +2825,14 @@ export interface ListPricingRulesAssociatedToPricingPlanInput {
|
|
|
2825
2825
|
* <p>The optional maximum number of pricing rule associations to retrieve.</p>
|
|
2826
2826
|
* @public
|
|
2827
2827
|
*/
|
|
2828
|
-
MaxResults?: number;
|
|
2828
|
+
MaxResults?: number | undefined;
|
|
2829
2829
|
/**
|
|
2830
2830
|
* <p>
|
|
2831
2831
|
* The optional pagination token returned by a previous call.
|
|
2832
2832
|
* </p>
|
|
2833
2833
|
* @public
|
|
2834
2834
|
*/
|
|
2835
|
-
NextToken?: string;
|
|
2835
|
+
NextToken?: string | undefined;
|
|
2836
2836
|
}
|
|
2837
2837
|
/**
|
|
2838
2838
|
* @public
|
|
@@ -2844,27 +2844,27 @@ export interface ListPricingRulesAssociatedToPricingPlanOutput {
|
|
|
2844
2844
|
* </p>
|
|
2845
2845
|
* @public
|
|
2846
2846
|
*/
|
|
2847
|
-
BillingPeriod?: string;
|
|
2847
|
+
BillingPeriod?: string | undefined;
|
|
2848
2848
|
/**
|
|
2849
2849
|
* <p> The Amazon Resource Name (ARN) of the pricing plan for which associations are
|
|
2850
2850
|
* listed.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
PricingPlanArn?: string;
|
|
2853
|
+
PricingPlanArn?: string | undefined;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* <p>
|
|
2856
2856
|
* A list containing pricing rules that are associated with the requested pricing plan.
|
|
2857
2857
|
* </p>
|
|
2858
2858
|
* @public
|
|
2859
2859
|
*/
|
|
2860
|
-
PricingRuleArns?: string[];
|
|
2860
|
+
PricingRuleArns?: string[] | undefined;
|
|
2861
2861
|
/**
|
|
2862
2862
|
* <p>
|
|
2863
2863
|
* The pagination token to be used on subsequent calls.
|
|
2864
2864
|
* </p>
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
NextToken?: string;
|
|
2867
|
+
NextToken?: string | undefined;
|
|
2868
2868
|
}
|
|
2869
2869
|
/**
|
|
2870
2870
|
* <p>
|
|
@@ -2911,35 +2911,35 @@ export interface UpdatePricingRuleInput {
|
|
|
2911
2911
|
* </p>
|
|
2912
2912
|
* @public
|
|
2913
2913
|
*/
|
|
2914
|
-
Name?: string;
|
|
2914
|
+
Name?: string | undefined;
|
|
2915
2915
|
/**
|
|
2916
2916
|
* <p>
|
|
2917
2917
|
* The new description for the pricing rule.
|
|
2918
2918
|
* </p>
|
|
2919
2919
|
* @public
|
|
2920
2920
|
*/
|
|
2921
|
-
Description?: string;
|
|
2921
|
+
Description?: string | undefined;
|
|
2922
2922
|
/**
|
|
2923
2923
|
* <p>
|
|
2924
2924
|
* The new pricing rule type.
|
|
2925
2925
|
* </p>
|
|
2926
2926
|
* @public
|
|
2927
2927
|
*/
|
|
2928
|
-
Type?: PricingRuleType;
|
|
2928
|
+
Type?: PricingRuleType | undefined;
|
|
2929
2929
|
/**
|
|
2930
2930
|
* <p>
|
|
2931
2931
|
* The new modifier to show pricing plan rates as a percentage.
|
|
2932
2932
|
* </p>
|
|
2933
2933
|
* @public
|
|
2934
2934
|
*/
|
|
2935
|
-
ModifierPercentage?: number;
|
|
2935
|
+
ModifierPercentage?: number | undefined;
|
|
2936
2936
|
/**
|
|
2937
2937
|
* <p>
|
|
2938
2938
|
* The set of tiering configurations for the pricing rule.
|
|
2939
2939
|
* </p>
|
|
2940
2940
|
* @public
|
|
2941
2941
|
*/
|
|
2942
|
-
Tiering?: UpdateTieringInput;
|
|
2942
|
+
Tiering?: UpdateTieringInput | undefined;
|
|
2943
2943
|
}
|
|
2944
2944
|
/**
|
|
2945
2945
|
* @public
|
|
@@ -2949,90 +2949,90 @@ export interface UpdatePricingRuleOutput {
|
|
|
2949
2949
|
* <p> The Amazon Resource Name (ARN) of the successfully updated pricing rule. </p>
|
|
2950
2950
|
* @public
|
|
2951
2951
|
*/
|
|
2952
|
-
Arn?: string;
|
|
2952
|
+
Arn?: string | undefined;
|
|
2953
2953
|
/**
|
|
2954
2954
|
* <p>
|
|
2955
2955
|
* The new name of the pricing rule. The name must be unique to each pricing rule.
|
|
2956
2956
|
* </p>
|
|
2957
2957
|
* @public
|
|
2958
2958
|
*/
|
|
2959
|
-
Name?: string;
|
|
2959
|
+
Name?: string | undefined;
|
|
2960
2960
|
/**
|
|
2961
2961
|
* <p>
|
|
2962
2962
|
* The new description for the pricing rule.
|
|
2963
2963
|
* </p>
|
|
2964
2964
|
* @public
|
|
2965
2965
|
*/
|
|
2966
|
-
Description?: string;
|
|
2966
|
+
Description?: string | undefined;
|
|
2967
2967
|
/**
|
|
2968
2968
|
* <p> The scope of pricing rule that indicates if it's globally applicable, or it's
|
|
2969
2969
|
* service-specific. </p>
|
|
2970
2970
|
* @public
|
|
2971
2971
|
*/
|
|
2972
|
-
Scope?: PricingRuleScope;
|
|
2972
|
+
Scope?: PricingRuleScope | undefined;
|
|
2973
2973
|
/**
|
|
2974
2974
|
* <p>
|
|
2975
2975
|
* The new pricing rule type.
|
|
2976
2976
|
* </p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
Type?: PricingRuleType;
|
|
2979
|
+
Type?: PricingRuleType | undefined;
|
|
2980
2980
|
/**
|
|
2981
2981
|
* <p>
|
|
2982
2982
|
* The new modifier to show pricing plan rates as a percentage.
|
|
2983
2983
|
* </p>
|
|
2984
2984
|
* @public
|
|
2985
2985
|
*/
|
|
2986
|
-
ModifierPercentage?: number;
|
|
2986
|
+
ModifierPercentage?: number | undefined;
|
|
2987
2987
|
/**
|
|
2988
2988
|
* <p>
|
|
2989
2989
|
* If the <code>Scope</code> attribute is set to <code>SERVICE</code>, the attribute indicates which service the <code>PricingRule</code> is applicable for.
|
|
2990
2990
|
* </p>
|
|
2991
2991
|
* @public
|
|
2992
2992
|
*/
|
|
2993
|
-
Service?: string;
|
|
2993
|
+
Service?: string | undefined;
|
|
2994
2994
|
/**
|
|
2995
2995
|
* <p>
|
|
2996
2996
|
* The pricing plans count that this pricing rule is associated with.
|
|
2997
2997
|
* </p>
|
|
2998
2998
|
* @public
|
|
2999
2999
|
*/
|
|
3000
|
-
AssociatedPricingPlanCount?: number;
|
|
3000
|
+
AssociatedPricingPlanCount?: number | undefined;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* <p>
|
|
3003
3003
|
* The most recent time the pricing rule was modified.
|
|
3004
3004
|
* </p>
|
|
3005
3005
|
* @public
|
|
3006
3006
|
*/
|
|
3007
|
-
LastModifiedTime?: number;
|
|
3007
|
+
LastModifiedTime?: number | undefined;
|
|
3008
3008
|
/**
|
|
3009
3009
|
* <p>
|
|
3010
3010
|
* The seller of services provided by Amazon Web Services, their affiliates, or third-party providers selling services via Amazon Web Services Marketplace.
|
|
3011
3011
|
* </p>
|
|
3012
3012
|
* @public
|
|
3013
3013
|
*/
|
|
3014
|
-
BillingEntity?: string;
|
|
3014
|
+
BillingEntity?: string | undefined;
|
|
3015
3015
|
/**
|
|
3016
3016
|
* <p>
|
|
3017
3017
|
* The set of tiering configurations for the pricing rule.
|
|
3018
3018
|
* </p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
Tiering?: UpdateTieringInput;
|
|
3021
|
+
Tiering?: UpdateTieringInput | undefined;
|
|
3022
3022
|
/**
|
|
3023
3023
|
* <p>Usage type is the unit that each service uses to measure the usage of a specific type of resource.</p>
|
|
3024
3024
|
* <p>If the <code>Scope</code> attribute is set to <code>SKU</code>, this attribute indicates which usage type the <code>PricingRule</code> is modifying. For example, <code>USW2-BoxUsage:m2.2xlarge</code> describes an <code>M2 High Memory Double Extra Large</code> instance in the US West (Oregon) Region.
|
|
3025
3025
|
* </p>
|
|
3026
3026
|
* @public
|
|
3027
3027
|
*/
|
|
3028
|
-
UsageType?: string;
|
|
3028
|
+
UsageType?: string | undefined;
|
|
3029
3029
|
/**
|
|
3030
3030
|
* <p>Operation refers to the specific Amazon Web Services covered by this line item. This describes the specific usage of the line item.</p>
|
|
3031
3031
|
* <p>
|
|
3032
3032
|
* If the <code>Scope</code> attribute is set to <code>SKU</code>, this attribute indicates which operation the <code>PricingRule</code> is modifying. For example, a value of <code>RunInstances:0202</code> indicates the operation of running an Amazon EC2 instance.</p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
Operation?: string;
|
|
3035
|
+
Operation?: string | undefined;
|
|
3036
3036
|
}
|
|
3037
3037
|
/**
|
|
3038
3038
|
* @public
|