@aws-sdk/client-cost-explorer 3.687.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 +586 -586
- package/dist-types/ts3.4/models/models_0.d.ts +592 -586
- package/package.json +7 -7
|
@@ -56,19 +56,19 @@ export interface Impact {
|
|
|
56
56
|
* spend. It is calculated as <code>TotalActualSpend - TotalExpectedSpend</code>.</p>
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
TotalImpact?: number;
|
|
59
|
+
TotalImpact?: number | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* <p>The cumulative dollar amount that was actually spent during the anomaly.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
TotalActualSpend?: number;
|
|
64
|
+
TotalActualSpend?: number | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* <p>The cumulative dollar amount that was expected to be spent during the anomaly. It is
|
|
67
67
|
* calculated using advanced machine learning models to determine the typical spending
|
|
68
68
|
* pattern based on historical data for a customer.</p>
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
|
-
TotalExpectedSpend?: number;
|
|
71
|
+
TotalExpectedSpend?: number | undefined;
|
|
72
72
|
/**
|
|
73
73
|
* <p>The cumulative percentage difference between the total actual spend and total expected
|
|
74
74
|
* spend. It is calculated as <code>(TotalImpact / TotalExpectedSpend) * 100</code>. When
|
|
@@ -76,7 +76,7 @@ export interface Impact {
|
|
|
76
76
|
* be zero in situations such as when you start to use a service for the first time.</p>
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
TotalImpactPercentage?: number;
|
|
79
|
+
TotalImpactPercentage?: number | undefined;
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* <p>The combination of Amazon Web Servicesservice, linked account, linked account name,
|
|
@@ -89,27 +89,27 @@ export interface RootCause {
|
|
|
89
89
|
* <p>The Amazon Web Servicesservice name that's associated with the cost anomaly. </p>
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
Service?: string;
|
|
92
|
+
Service?: string | undefined;
|
|
93
93
|
/**
|
|
94
94
|
* <p>The Amazon Web Services Region that's associated with the cost anomaly. </p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
Region?: string;
|
|
97
|
+
Region?: string | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* <p>The member account value that's associated with the cost anomaly. </p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
LinkedAccount?: string;
|
|
102
|
+
LinkedAccount?: string | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* <p>The <code>UsageType</code> value that's associated with the cost anomaly. </p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
UsageType?: string;
|
|
107
|
+
UsageType?: string | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* <p>The member account name value that's associated with the cost anomaly.</p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
LinkedAccountName?: string;
|
|
112
|
+
LinkedAccountName?: string | undefined;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* <p>An unusual cost pattern. This consists of the detailed metadata and the current status
|
|
@@ -126,23 +126,23 @@ export interface Anomaly {
|
|
|
126
126
|
* <p>The first day the anomaly is detected. </p>
|
|
127
127
|
* @public
|
|
128
128
|
*/
|
|
129
|
-
AnomalyStartDate?: string;
|
|
129
|
+
AnomalyStartDate?: string | undefined;
|
|
130
130
|
/**
|
|
131
131
|
* <p>The last day the anomaly is detected. </p>
|
|
132
132
|
* @public
|
|
133
133
|
*/
|
|
134
|
-
AnomalyEndDate?: string;
|
|
134
|
+
AnomalyEndDate?: string | undefined;
|
|
135
135
|
/**
|
|
136
136
|
* <p>The dimension for the anomaly (for example, an Amazon Web Servicesservice in a service
|
|
137
137
|
* monitor). </p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
DimensionValue?: string;
|
|
140
|
+
DimensionValue?: string | undefined;
|
|
141
141
|
/**
|
|
142
142
|
* <p>The list of identified root causes for the anomaly. </p>
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
RootCauses?: RootCause[];
|
|
145
|
+
RootCauses?: RootCause[] | undefined;
|
|
146
146
|
/**
|
|
147
147
|
* <p>The latest and maximum score for the anomaly. </p>
|
|
148
148
|
* @public
|
|
@@ -163,7 +163,7 @@ export interface Anomaly {
|
|
|
163
163
|
* <p>The feedback value. </p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
Feedback?: AnomalyFeedbackType;
|
|
166
|
+
Feedback?: AnomalyFeedbackType | undefined;
|
|
167
167
|
}
|
|
168
168
|
/**
|
|
169
169
|
* <p>The time period for an anomaly. </p>
|
|
@@ -179,7 +179,7 @@ export interface AnomalyDateInterval {
|
|
|
179
179
|
* <p>The last date an anomaly was observed. </p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
EndDate?: string;
|
|
182
|
+
EndDate?: string | undefined;
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
185
|
* @public
|
|
@@ -226,12 +226,12 @@ export interface CostCategoryValues {
|
|
|
226
226
|
* <p>The unique name of the Cost Category.</p>
|
|
227
227
|
* @public
|
|
228
228
|
*/
|
|
229
|
-
Key?: string;
|
|
229
|
+
Key?: string | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* <p>The specific value of the Cost Category.</p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
Values?: string[];
|
|
234
|
+
Values?: string[] | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* <p>The match options that you can use to filter your results. MatchOptions is only
|
|
237
237
|
* applicable for actions related to cost category. The default values for
|
|
@@ -239,7 +239,7 @@ export interface CostCategoryValues {
|
|
|
239
239
|
* </p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
MatchOptions?: MatchOption[];
|
|
242
|
+
MatchOptions?: MatchOption[] | undefined;
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
245
|
* @public
|
|
@@ -304,13 +304,13 @@ export interface DimensionValues {
|
|
|
304
304
|
* <code>ANOMALY_TOTAL_IMPACT_PERCENTAGE</code> can only be used in <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AnomalySubscription.html">AnomalySubscriptions</a>.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
Key?: Dimension;
|
|
307
|
+
Key?: Dimension | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>The metadata values that you can use to filter and group your results. You can use
|
|
310
310
|
* <code>GetDimensionValues</code> to find specific values.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
Values?: string[];
|
|
313
|
+
Values?: string[] | undefined;
|
|
314
314
|
/**
|
|
315
315
|
* <p>The match options that you can use to filter your results.</p>
|
|
316
316
|
* <p>
|
|
@@ -321,7 +321,7 @@ export interface DimensionValues {
|
|
|
321
321
|
* <code>CASE_SENSITIVE</code>.</p>
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
324
|
-
MatchOptions?: MatchOption[];
|
|
324
|
+
MatchOptions?: MatchOption[] | undefined;
|
|
325
325
|
}
|
|
326
326
|
/**
|
|
327
327
|
* <p>The values that are available for a tag.</p>
|
|
@@ -339,12 +339,12 @@ export interface TagValues {
|
|
|
339
339
|
* <p>The key for the tag.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
Key?: string;
|
|
342
|
+
Key?: string | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>The specific value of the tag.</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
Values?: string[];
|
|
347
|
+
Values?: string[] | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* <p>The match options that you can use to filter your results. <code>MatchOptions</code>
|
|
350
350
|
* is only applicable for actions related to Cost Category. The default values for
|
|
@@ -352,7 +352,7 @@ export interface TagValues {
|
|
|
352
352
|
* <code>CASE_SENSITIVE</code>.</p>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
MatchOptions?: MatchOption[];
|
|
355
|
+
MatchOptions?: MatchOption[] | undefined;
|
|
356
356
|
}
|
|
357
357
|
/**
|
|
358
358
|
* @public
|
|
@@ -413,17 +413,17 @@ export interface Subscriber {
|
|
|
413
413
|
* <code>Type</code>. </p>
|
|
414
414
|
* @public
|
|
415
415
|
*/
|
|
416
|
-
Address?: string;
|
|
416
|
+
Address?: string | undefined;
|
|
417
417
|
/**
|
|
418
418
|
* <p>The notification delivery channel. </p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
Type?: SubscriberType;
|
|
421
|
+
Type?: SubscriberType | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>Indicates if the subscriber accepts the notifications. </p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
Status?: SubscriberStatus;
|
|
426
|
+
Status?: SubscriberStatus | undefined;
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
429
429
|
* @public
|
|
@@ -480,7 +480,7 @@ export interface CreateAnomalyMonitorResponse {
|
|
|
480
480
|
export declare class LimitExceededException extends __BaseException {
|
|
481
481
|
readonly name: "LimitExceededException";
|
|
482
482
|
readonly $fault: "client";
|
|
483
|
-
Message?: string;
|
|
483
|
+
Message?: string | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* @internal
|
|
486
486
|
*/
|
|
@@ -503,7 +503,7 @@ export interface CreateAnomalySubscriptionResponse {
|
|
|
503
503
|
export declare class UnknownMonitorException extends __BaseException {
|
|
504
504
|
readonly name: "UnknownMonitorException";
|
|
505
505
|
readonly $fault: "client";
|
|
506
|
-
Message?: string;
|
|
506
|
+
Message?: string | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* @internal
|
|
509
509
|
*/
|
|
@@ -540,12 +540,12 @@ export interface CostCategoryInheritedValueDimension {
|
|
|
540
540
|
* value of the specified tag key.</p>
|
|
541
541
|
* @public
|
|
542
542
|
*/
|
|
543
|
-
DimensionName?: CostCategoryInheritedValueDimensionName;
|
|
543
|
+
DimensionName?: CostCategoryInheritedValueDimensionName | undefined;
|
|
544
544
|
/**
|
|
545
545
|
* <p>The key to extract cost category values.</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
DimensionKey?: string;
|
|
548
|
+
DimensionKey?: string | undefined;
|
|
549
549
|
}
|
|
550
550
|
/**
|
|
551
551
|
* @public
|
|
@@ -646,7 +646,7 @@ export interface CostCategorySplitChargeRule {
|
|
|
646
646
|
* <code>FIXED</code> method. </p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
Parameters?: CostCategorySplitChargeRuleParameter[];
|
|
649
|
+
Parameters?: CostCategorySplitChargeRuleParameter[] | undefined;
|
|
650
650
|
}
|
|
651
651
|
/**
|
|
652
652
|
* @public
|
|
@@ -656,12 +656,12 @@ export interface CreateCostCategoryDefinitionResponse {
|
|
|
656
656
|
* <p>The unique identifier for your newly created Cost Category. </p>
|
|
657
657
|
* @public
|
|
658
658
|
*/
|
|
659
|
-
CostCategoryArn?: string;
|
|
659
|
+
CostCategoryArn?: string | undefined;
|
|
660
660
|
/**
|
|
661
661
|
* <p>The Cost Category's effective start date. It can only be a billing start date (first day of the month).</p>
|
|
662
662
|
* @public
|
|
663
663
|
*/
|
|
664
|
-
EffectiveStart?: string;
|
|
664
|
+
EffectiveStart?: string | undefined;
|
|
665
665
|
}
|
|
666
666
|
/**
|
|
667
667
|
* <p> You've reached the limit on the number of resources you can create, or exceeded the
|
|
@@ -671,7 +671,7 @@ export interface CreateCostCategoryDefinitionResponse {
|
|
|
671
671
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
672
672
|
readonly name: "ServiceQuotaExceededException";
|
|
673
673
|
readonly $fault: "client";
|
|
674
|
-
Message?: string;
|
|
674
|
+
Message?: string | undefined;
|
|
675
675
|
/**
|
|
676
676
|
* @internal
|
|
677
677
|
*/
|
|
@@ -714,7 +714,7 @@ export interface DeleteAnomalySubscriptionResponse {
|
|
|
714
714
|
export declare class UnknownSubscriptionException extends __BaseException {
|
|
715
715
|
readonly name: "UnknownSubscriptionException";
|
|
716
716
|
readonly $fault: "client";
|
|
717
|
-
Message?: string;
|
|
717
|
+
Message?: string | undefined;
|
|
718
718
|
/**
|
|
719
719
|
* @internal
|
|
720
720
|
*/
|
|
@@ -738,13 +738,13 @@ export interface DeleteCostCategoryDefinitionResponse {
|
|
|
738
738
|
* <p>The unique identifier for your Cost Category. </p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
CostCategoryArn?: string;
|
|
741
|
+
CostCategoryArn?: string | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* <p>The effective end date of the Cost Category as a result of deleting it. No costs after
|
|
744
744
|
* this date is categorized by the deleted Cost Category. </p>
|
|
745
745
|
* @public
|
|
746
746
|
*/
|
|
747
|
-
EffectiveEnd?: string;
|
|
747
|
+
EffectiveEnd?: string | undefined;
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* <p> The specified ARN in the request doesn't exist. </p>
|
|
@@ -753,8 +753,8 @@ export interface DeleteCostCategoryDefinitionResponse {
|
|
|
753
753
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
754
754
|
readonly name: "ResourceNotFoundException";
|
|
755
755
|
readonly $fault: "client";
|
|
756
|
-
Message?: string;
|
|
757
|
-
ResourceName?: string;
|
|
756
|
+
Message?: string | undefined;
|
|
757
|
+
ResourceName?: string | undefined;
|
|
758
758
|
/**
|
|
759
759
|
* @internal
|
|
760
760
|
*/
|
|
@@ -773,7 +773,7 @@ export interface DescribeCostCategoryDefinitionRequest {
|
|
|
773
773
|
* <p>The date when the Cost Category was effective. </p>
|
|
774
774
|
* @public
|
|
775
775
|
*/
|
|
776
|
-
EffectiveOn?: string;
|
|
776
|
+
EffectiveOn?: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
/**
|
|
779
779
|
* @public
|
|
@@ -808,12 +808,12 @@ export interface CostCategoryProcessingStatus {
|
|
|
808
808
|
* <p>The Cost Management product name of the applied status. </p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
Component?: CostCategoryStatusComponent;
|
|
811
|
+
Component?: CostCategoryStatusComponent | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* <p>The process status for a specific cost category. </p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
Status?: CostCategoryStatus;
|
|
816
|
+
Status?: CostCategoryStatus | undefined;
|
|
817
817
|
}
|
|
818
818
|
/**
|
|
819
819
|
* @public
|
|
@@ -850,7 +850,7 @@ export interface TotalImpactFilter {
|
|
|
850
850
|
* <p>The upper bound dollar value that's used in the filter. </p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
EndValue?: number;
|
|
853
|
+
EndValue?: number | undefined;
|
|
854
854
|
}
|
|
855
855
|
/**
|
|
856
856
|
* @public
|
|
@@ -861,7 +861,7 @@ export interface GetAnomaliesRequest {
|
|
|
861
861
|
* Resource Name (ARN). </p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
MonitorArn?: string;
|
|
864
|
+
MonitorArn?: string | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>Assigns the start and end dates for retrieving cost anomalies. The returned anomaly object
|
|
867
867
|
* will have an <code>AnomalyEndDate</code> in the specified time range. </p>
|
|
@@ -872,25 +872,25 @@ export interface GetAnomaliesRequest {
|
|
|
872
872
|
* <p>Filters anomaly results by the feedback field on the anomaly object. </p>
|
|
873
873
|
* @public
|
|
874
874
|
*/
|
|
875
|
-
Feedback?: AnomalyFeedbackType;
|
|
875
|
+
Feedback?: AnomalyFeedbackType | undefined;
|
|
876
876
|
/**
|
|
877
877
|
* <p>Filters anomaly results by the total impact field on the anomaly object. For example, you
|
|
878
878
|
* can filter anomalies <code>GREATER_THAN 200.00</code> to retrieve anomalies, with an estimated
|
|
879
879
|
* dollar impact greater than 200. </p>
|
|
880
880
|
* @public
|
|
881
881
|
*/
|
|
882
|
-
TotalImpact?: TotalImpactFilter;
|
|
882
|
+
TotalImpact?: TotalImpactFilter | undefined;
|
|
883
883
|
/**
|
|
884
884
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
885
885
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
886
886
|
* @public
|
|
887
887
|
*/
|
|
888
|
-
NextPageToken?: string;
|
|
888
|
+
NextPageToken?: string | undefined;
|
|
889
889
|
/**
|
|
890
890
|
* <p>The number of entries a paginated response contains. </p>
|
|
891
891
|
* @public
|
|
892
892
|
*/
|
|
893
|
-
MaxResults?: number;
|
|
893
|
+
MaxResults?: number | undefined;
|
|
894
894
|
}
|
|
895
895
|
/**
|
|
896
896
|
* @public
|
|
@@ -906,7 +906,7 @@ export interface GetAnomaliesResponse {
|
|
|
906
906
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
NextPageToken?: string;
|
|
909
|
+
NextPageToken?: string | undefined;
|
|
910
910
|
}
|
|
911
911
|
/**
|
|
912
912
|
* <p>The pagination token is invalid. Try again without a pagination token.</p>
|
|
@@ -915,7 +915,7 @@ export interface GetAnomaliesResponse {
|
|
|
915
915
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
916
916
|
readonly name: "InvalidNextTokenException";
|
|
917
917
|
readonly $fault: "client";
|
|
918
|
-
Message?: string;
|
|
918
|
+
Message?: string | undefined;
|
|
919
919
|
/**
|
|
920
920
|
* @internal
|
|
921
921
|
*/
|
|
@@ -929,18 +929,18 @@ export interface GetAnomalyMonitorsRequest {
|
|
|
929
929
|
* <p>A list of cost anomaly monitor ARNs. </p>
|
|
930
930
|
* @public
|
|
931
931
|
*/
|
|
932
|
-
MonitorArnList?: string[];
|
|
932
|
+
MonitorArnList?: string[] | undefined;
|
|
933
933
|
/**
|
|
934
934
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
935
935
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
|
-
NextPageToken?: string;
|
|
938
|
+
NextPageToken?: string | undefined;
|
|
939
939
|
/**
|
|
940
940
|
* <p>The number of entries that a paginated response contains. </p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
MaxResults?: number;
|
|
943
|
+
MaxResults?: number | undefined;
|
|
944
944
|
}
|
|
945
945
|
/**
|
|
946
946
|
* @public
|
|
@@ -950,23 +950,23 @@ export interface GetAnomalySubscriptionsRequest {
|
|
|
950
950
|
* <p>A list of cost anomaly subscription ARNs. </p>
|
|
951
951
|
* @public
|
|
952
952
|
*/
|
|
953
|
-
SubscriptionArnList?: string[];
|
|
953
|
+
SubscriptionArnList?: string[] | undefined;
|
|
954
954
|
/**
|
|
955
955
|
* <p>Cost anomaly monitor ARNs. </p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
MonitorArn?: string;
|
|
958
|
+
MonitorArn?: string | undefined;
|
|
959
959
|
/**
|
|
960
960
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
961
961
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
962
962
|
* @public
|
|
963
963
|
*/
|
|
964
|
-
NextPageToken?: string;
|
|
964
|
+
NextPageToken?: string | undefined;
|
|
965
965
|
/**
|
|
966
966
|
* <p>The number of entries a paginated response contains. </p>
|
|
967
967
|
* @public
|
|
968
968
|
*/
|
|
969
|
-
MaxResults?: number;
|
|
969
|
+
MaxResults?: number | undefined;
|
|
970
970
|
}
|
|
971
971
|
/**
|
|
972
972
|
* <p>The requested data is unavailable.</p>
|
|
@@ -975,7 +975,7 @@ export interface GetAnomalySubscriptionsRequest {
|
|
|
975
975
|
export declare class DataUnavailableException extends __BaseException {
|
|
976
976
|
readonly name: "DataUnavailableException";
|
|
977
977
|
readonly $fault: "client";
|
|
978
|
-
Message?: string;
|
|
978
|
+
Message?: string | undefined;
|
|
979
979
|
/**
|
|
980
980
|
* @internal
|
|
981
981
|
*/
|
|
@@ -1009,7 +1009,7 @@ export interface GetApproximateUsageRecordsRequest {
|
|
|
1009
1009
|
* elements are returned.</p>
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
Services?: string[];
|
|
1012
|
+
Services?: string[] | undefined;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* <p>The service to evaluate for the usage records. You can choose resource-level data at daily
|
|
1015
1015
|
* granularity, or hourly granularity with or without resource-level data.</p>
|
|
@@ -1046,17 +1046,17 @@ export interface GetApproximateUsageRecordsResponse {
|
|
|
1046
1046
|
* <p>The service metadata for the service or services in the response.</p>
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
Services?: Record<string, number
|
|
1049
|
+
Services?: Record<string, number> | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <p>The total number of usage records for all services in the services list.</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
TotalRecords?: number;
|
|
1054
|
+
TotalRecords?: number | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>The lookback period that's used for the estimation.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
LookbackPeriod?: DateInterval;
|
|
1059
|
+
LookbackPeriod?: DateInterval | undefined;
|
|
1060
1060
|
}
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>The requested report expired. Update the date interval and try again.</p>
|
|
@@ -1065,7 +1065,7 @@ export interface GetApproximateUsageRecordsResponse {
|
|
|
1065
1065
|
export declare class BillExpirationException extends __BaseException {
|
|
1066
1066
|
readonly name: "BillExpirationException";
|
|
1067
1067
|
readonly $fault: "client";
|
|
1068
|
-
Message?: string;
|
|
1068
|
+
Message?: string | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* @internal
|
|
1071
1071
|
*/
|
|
@@ -1094,12 +1094,12 @@ export interface GroupDefinition {
|
|
|
1094
1094
|
* <p>The string that represents the type of group.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
Type?: GroupDefinitionType;
|
|
1097
|
+
Type?: GroupDefinitionType | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>The string that represents a key for a specified group.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
Key?: string;
|
|
1102
|
+
Key?: string | undefined;
|
|
1103
1103
|
}
|
|
1104
1104
|
/**
|
|
1105
1105
|
* <p>The metadata of a specific type that you can use to filter and group your results. You
|
|
@@ -1111,12 +1111,12 @@ export interface DimensionValuesWithAttributes {
|
|
|
1111
1111
|
* <p>The value of a dimension with a specific attribute.</p>
|
|
1112
1112
|
* @public
|
|
1113
1113
|
*/
|
|
1114
|
-
Value?: string;
|
|
1114
|
+
Value?: string | undefined;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* <p>The attribute that applies to a specific <code>Dimension</code>.</p>
|
|
1117
1117
|
* @public
|
|
1118
1118
|
*/
|
|
1119
|
-
Attributes?: Record<string, string
|
|
1119
|
+
Attributes?: Record<string, string> | undefined;
|
|
1120
1120
|
}
|
|
1121
1121
|
/**
|
|
1122
1122
|
* <p>The aggregated value for a metric.</p>
|
|
@@ -1127,12 +1127,12 @@ export interface MetricValue {
|
|
|
1127
1127
|
* <p>The actual number that represents the metric.</p>
|
|
1128
1128
|
* @public
|
|
1129
1129
|
*/
|
|
1130
|
-
Amount?: string;
|
|
1130
|
+
Amount?: string | undefined;
|
|
1131
1131
|
/**
|
|
1132
1132
|
* <p>The unit that the metric is given in.</p>
|
|
1133
1133
|
* @public
|
|
1134
1134
|
*/
|
|
1135
|
-
Unit?: string;
|
|
1135
|
+
Unit?: string | undefined;
|
|
1136
1136
|
}
|
|
1137
1137
|
/**
|
|
1138
1138
|
* <p>One level of grouped data in the results.</p>
|
|
@@ -1143,12 +1143,12 @@ export interface Group {
|
|
|
1143
1143
|
* <p>The keys that are included in this group.</p>
|
|
1144
1144
|
* @public
|
|
1145
1145
|
*/
|
|
1146
|
-
Keys?: string[];
|
|
1146
|
+
Keys?: string[] | undefined;
|
|
1147
1147
|
/**
|
|
1148
1148
|
* <p>The metrics that are included in this group.</p>
|
|
1149
1149
|
* @public
|
|
1150
1150
|
*/
|
|
1151
|
-
Metrics?: Record<string, MetricValue
|
|
1151
|
+
Metrics?: Record<string, MetricValue> | undefined;
|
|
1152
1152
|
}
|
|
1153
1153
|
/**
|
|
1154
1154
|
* <p>The result that's associated with a time period.</p>
|
|
@@ -1159,22 +1159,22 @@ export interface ResultByTime {
|
|
|
1159
1159
|
* <p>The time period that the result covers.</p>
|
|
1160
1160
|
* @public
|
|
1161
1161
|
*/
|
|
1162
|
-
TimePeriod?: DateInterval;
|
|
1162
|
+
TimePeriod?: DateInterval | undefined;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* <p>The total amount of cost or usage accrued during the time period.</p>
|
|
1165
1165
|
* @public
|
|
1166
1166
|
*/
|
|
1167
|
-
Total?: Record<string, MetricValue
|
|
1167
|
+
Total?: Record<string, MetricValue> | undefined;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* <p>The groups that this time period includes.</p>
|
|
1170
1170
|
* @public
|
|
1171
1171
|
*/
|
|
1172
|
-
Groups?: Group[];
|
|
1172
|
+
Groups?: Group[] | undefined;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* <p>Determines whether the result is estimated.</p>
|
|
1175
1175
|
* @public
|
|
1176
1176
|
*/
|
|
1177
|
-
Estimated?: boolean;
|
|
1177
|
+
Estimated?: boolean | undefined;
|
|
1178
1178
|
}
|
|
1179
1179
|
/**
|
|
1180
1180
|
* @public
|
|
@@ -1185,24 +1185,24 @@ export interface GetCostAndUsageResponse {
|
|
|
1185
1185
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
NextPageToken?: string;
|
|
1188
|
+
NextPageToken?: string | undefined;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* <p>The groups that are specified by the <code>Filter</code> or <code>GroupBy</code>
|
|
1191
1191
|
* parameters in the request.</p>
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
GroupDefinitions?: GroupDefinition[];
|
|
1194
|
+
GroupDefinitions?: GroupDefinition[] | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* <p>The time period that's covered by the results in the response.</p>
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
ResultsByTime?: ResultByTime[];
|
|
1199
|
+
ResultsByTime?: ResultByTime[] | undefined;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* <p>The attributes that apply to a specific dimension value. For example, if the value is a
|
|
1202
1202
|
* linked account, the attribute is that account name.</p>
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
DimensionValueAttributes?: DimensionValuesWithAttributes[];
|
|
1205
|
+
DimensionValueAttributes?: DimensionValuesWithAttributes[] | undefined;
|
|
1206
1206
|
}
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>Your request parameters changed between pages. Try again with the old parameters or
|
|
@@ -1212,7 +1212,7 @@ export interface GetCostAndUsageResponse {
|
|
|
1212
1212
|
export declare class RequestChangedException extends __BaseException {
|
|
1213
1213
|
readonly name: "RequestChangedException";
|
|
1214
1214
|
readonly $fault: "client";
|
|
1215
|
-
Message?: string;
|
|
1215
|
+
Message?: string | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* @internal
|
|
1218
1218
|
*/
|
|
@@ -1227,24 +1227,24 @@ export interface GetCostAndUsageWithResourcesResponse {
|
|
|
1227
1227
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
NextPageToken?: string;
|
|
1230
|
+
NextPageToken?: string | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>The groups that are specified by the <code>Filter</code> or <code>GroupBy</code>
|
|
1233
1233
|
* parameters in the request.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
GroupDefinitions?: GroupDefinition[];
|
|
1236
|
+
GroupDefinitions?: GroupDefinition[] | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>The time period that's covered by the results in the response.</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
ResultsByTime?: ResultByTime[];
|
|
1241
|
+
ResultsByTime?: ResultByTime[] | undefined;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* <p>The attributes that apply to a specific dimension value. For example, if the value is a
|
|
1244
1244
|
* linked account, the attribute is that account name.</p>
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
DimensionValueAttributes?: DimensionValuesWithAttributes[];
|
|
1247
|
+
DimensionValueAttributes?: DimensionValuesWithAttributes[] | undefined;
|
|
1248
1248
|
}
|
|
1249
1249
|
/**
|
|
1250
1250
|
* @public
|
|
@@ -1272,7 +1272,7 @@ export interface SortDefinition {
|
|
|
1272
1272
|
* <p>The order that's used to sort the data.</p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
SortOrder?: SortOrder;
|
|
1275
|
+
SortOrder?: SortOrder | undefined;
|
|
1276
1276
|
}
|
|
1277
1277
|
/**
|
|
1278
1278
|
* @public
|
|
@@ -1283,19 +1283,19 @@ export interface GetCostCategoriesResponse {
|
|
|
1283
1283
|
* objects, provide the marker from the prior call in your next request.</p>
|
|
1284
1284
|
* @public
|
|
1285
1285
|
*/
|
|
1286
|
-
NextPageToken?: string;
|
|
1286
|
+
NextPageToken?: string | undefined;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* <p>The names of the Cost Categories.</p>
|
|
1289
1289
|
* @public
|
|
1290
1290
|
*/
|
|
1291
|
-
CostCategoryNames?: string[];
|
|
1291
|
+
CostCategoryNames?: string[] | undefined;
|
|
1292
1292
|
/**
|
|
1293
1293
|
* <p>The Cost Category values.</p>
|
|
1294
1294
|
* <p>If the <code>CostCategoryName</code> key isn't specified in the request, the
|
|
1295
1295
|
* <code>CostCategoryValues</code> fields aren't returned. </p>
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
CostCategoryValues?: string[];
|
|
1298
|
+
CostCategoryValues?: string[] | undefined;
|
|
1299
1299
|
/**
|
|
1300
1300
|
* <p>The number of objects that are returned.</p>
|
|
1301
1301
|
* @public
|
|
@@ -1333,22 +1333,22 @@ export interface ForecastResult {
|
|
|
1333
1333
|
* <p>The period of time that the forecast covers.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
TimePeriod?: DateInterval;
|
|
1336
|
+
TimePeriod?: DateInterval | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>The mean value of the forecast.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
MeanValue?: string;
|
|
1341
|
+
MeanValue?: string | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>The lower limit for the prediction interval. </p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
PredictionIntervalLowerBound?: string;
|
|
1346
|
+
PredictionIntervalLowerBound?: string | undefined;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* <p>The upper limit for the prediction interval. </p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
PredictionIntervalUpperBound?: string;
|
|
1351
|
+
PredictionIntervalUpperBound?: string | undefined;
|
|
1352
1352
|
}
|
|
1353
1353
|
/**
|
|
1354
1354
|
* @public
|
|
@@ -1358,13 +1358,13 @@ export interface GetCostForecastResponse {
|
|
|
1358
1358
|
* <p>How much you are forecasted to spend over the forecast period, in <code>USD</code>.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
Total?: MetricValue;
|
|
1361
|
+
Total?: MetricValue | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>The forecasts for your query, in order. For <code>DAILY</code> forecasts, this is a list
|
|
1364
1364
|
* of days. For <code>MONTHLY</code> forecasts, this is a list of months.</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
ForecastResultsByTime?: ForecastResult[];
|
|
1367
|
+
ForecastResultsByTime?: ForecastResult[] | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
/**
|
|
1370
1370
|
* @public
|
|
@@ -1532,7 +1532,7 @@ export interface GetDimensionValuesResponse {
|
|
|
1532
1532
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
1533
1533
|
* @public
|
|
1534
1534
|
*/
|
|
1535
|
-
NextPageToken?: string;
|
|
1535
|
+
NextPageToken?: string | undefined;
|
|
1536
1536
|
}
|
|
1537
1537
|
/**
|
|
1538
1538
|
* <p>How much it costs to run an instance.</p>
|
|
@@ -1543,7 +1543,7 @@ export interface CoverageCost {
|
|
|
1543
1543
|
* <p>How much an On-Demand Instance costs.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
OnDemandCost?: string;
|
|
1546
|
+
OnDemandCost?: string | undefined;
|
|
1547
1547
|
}
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>How long a running instance either used a reservation or was On-Demand.</p>
|
|
@@ -1554,22 +1554,22 @@ export interface CoverageHours {
|
|
|
1554
1554
|
* <p>The number of instance running hours that On-Demand Instances covered.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
OnDemandHours?: string;
|
|
1557
|
+
OnDemandHours?: string | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>The number of instance running hours that reservations covered.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
ReservedHours?: string;
|
|
1562
|
+
ReservedHours?: string | undefined;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* <p>The total instance usage, in hours.</p>
|
|
1565
1565
|
* @public
|
|
1566
1566
|
*/
|
|
1567
|
-
TotalRunningHours?: string;
|
|
1567
|
+
TotalRunningHours?: string | undefined;
|
|
1568
1568
|
/**
|
|
1569
1569
|
* <p>The percentage of instance hours that a reservation covered.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
CoverageHoursPercentage?: string;
|
|
1572
|
+
CoverageHoursPercentage?: string | undefined;
|
|
1573
1573
|
}
|
|
1574
1574
|
/**
|
|
1575
1575
|
* <p>The amount of instance usage, in normalized units. You can use normalized units to see
|
|
@@ -1590,23 +1590,23 @@ export interface CoverageNormalizedUnits {
|
|
|
1590
1590
|
* reservation.</p>
|
|
1591
1591
|
* @public
|
|
1592
1592
|
*/
|
|
1593
|
-
OnDemandNormalizedUnits?: string;
|
|
1593
|
+
OnDemandNormalizedUnits?: string | undefined;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* <p>The number of normalized units that a reservation covers.</p>
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
ReservedNormalizedUnits?: string;
|
|
1598
|
+
ReservedNormalizedUnits?: string | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* <p>The total number of normalized units that you used.</p>
|
|
1601
1601
|
* @public
|
|
1602
1602
|
*/
|
|
1603
|
-
TotalRunningNormalizedUnits?: string;
|
|
1603
|
+
TotalRunningNormalizedUnits?: string | undefined;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* <p>The percentage of your used instance normalized units that a reservation
|
|
1606
1606
|
* covers.</p>
|
|
1607
1607
|
* @public
|
|
1608
1608
|
*/
|
|
1609
|
-
CoverageNormalizedUnitsPercentage?: string;
|
|
1609
|
+
CoverageNormalizedUnitsPercentage?: string | undefined;
|
|
1610
1610
|
}
|
|
1611
1611
|
/**
|
|
1612
1612
|
* <p>The amount of instance usage that a reservation covered.</p>
|
|
@@ -1617,17 +1617,17 @@ export interface Coverage {
|
|
|
1617
1617
|
* <p>The amount of instance usage that the reservation covered, in hours.</p>
|
|
1618
1618
|
* @public
|
|
1619
1619
|
*/
|
|
1620
|
-
CoverageHours?: CoverageHours;
|
|
1620
|
+
CoverageHours?: CoverageHours | undefined;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>The amount of instance usage that the reservation covered, in normalized units.</p>
|
|
1623
1623
|
* @public
|
|
1624
1624
|
*/
|
|
1625
|
-
CoverageNormalizedUnits?: CoverageNormalizedUnits;
|
|
1625
|
+
CoverageNormalizedUnits?: CoverageNormalizedUnits | undefined;
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>The amount of cost that the reservation covered.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
CoverageCost?: CoverageCost;
|
|
1630
|
+
CoverageCost?: CoverageCost | undefined;
|
|
1631
1631
|
}
|
|
1632
1632
|
/**
|
|
1633
1633
|
* <p>A group of reservations that share a set of attributes.</p>
|
|
@@ -1638,12 +1638,12 @@ export interface ReservationCoverageGroup {
|
|
|
1638
1638
|
* <p>The attributes for this group of reservations.</p>
|
|
1639
1639
|
* @public
|
|
1640
1640
|
*/
|
|
1641
|
-
Attributes?: Record<string, string
|
|
1641
|
+
Attributes?: Record<string, string> | undefined;
|
|
1642
1642
|
/**
|
|
1643
1643
|
* <p>How much instance usage this group of reservations covered.</p>
|
|
1644
1644
|
* @public
|
|
1645
1645
|
*/
|
|
1646
|
-
Coverage?: Coverage;
|
|
1646
|
+
Coverage?: Coverage | undefined;
|
|
1647
1647
|
}
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <p>Reservation coverage for a specified period, in hours.</p>
|
|
@@ -1654,17 +1654,17 @@ export interface CoverageByTime {
|
|
|
1654
1654
|
* <p>The period that this coverage was used over.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
TimePeriod?: DateInterval;
|
|
1657
|
+
TimePeriod?: DateInterval | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The groups of instances that the reservation covered.</p>
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
Groups?: ReservationCoverageGroup[];
|
|
1662
|
+
Groups?: ReservationCoverageGroup[] | undefined;
|
|
1663
1663
|
/**
|
|
1664
1664
|
* <p>The total reservation coverage, in hours.</p>
|
|
1665
1665
|
* @public
|
|
1666
1666
|
*/
|
|
1667
|
-
Total?: Coverage;
|
|
1667
|
+
Total?: Coverage | undefined;
|
|
1668
1668
|
}
|
|
1669
1669
|
/**
|
|
1670
1670
|
* @public
|
|
@@ -1679,13 +1679,13 @@ export interface GetReservationCoverageResponse {
|
|
|
1679
1679
|
* <p>The total amount of instance usage that a reservation covered.</p>
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
Total?: Coverage;
|
|
1682
|
+
Total?: Coverage | undefined;
|
|
1683
1683
|
/**
|
|
1684
1684
|
* <p>The token for the next set of retrievable results. Amazon Web Services provides the token
|
|
1685
1685
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
NextPageToken?: string;
|
|
1688
|
+
NextPageToken?: string | undefined;
|
|
1689
1689
|
}
|
|
1690
1690
|
/**
|
|
1691
1691
|
* @public
|
|
@@ -1739,7 +1739,7 @@ export interface EC2Specification {
|
|
|
1739
1739
|
* reservations.</p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
OfferingClass?: OfferingClass;
|
|
1742
|
+
OfferingClass?: OfferingClass | undefined;
|
|
1743
1743
|
}
|
|
1744
1744
|
/**
|
|
1745
1745
|
* <p>Hardware specifications for the service that you want recommendations for.</p>
|
|
@@ -1751,7 +1751,7 @@ export interface ServiceSpecification {
|
|
|
1751
1751
|
* recommendations for.</p>
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
|
-
EC2Specification?: EC2Specification;
|
|
1754
|
+
EC2Specification?: EC2Specification | undefined;
|
|
1755
1755
|
}
|
|
1756
1756
|
/**
|
|
1757
1757
|
* @public
|
|
@@ -1775,17 +1775,17 @@ export interface ReservationPurchaseRecommendationMetadata {
|
|
|
1775
1775
|
* <p>The ID for the recommendation.</p>
|
|
1776
1776
|
* @public
|
|
1777
1777
|
*/
|
|
1778
|
-
RecommendationId?: string;
|
|
1778
|
+
RecommendationId?: string | undefined;
|
|
1779
1779
|
/**
|
|
1780
1780
|
* <p>The timestamp for when Amazon Web Services made the recommendation.</p>
|
|
1781
1781
|
* @public
|
|
1782
1782
|
*/
|
|
1783
|
-
GenerationTimestamp?: string;
|
|
1783
|
+
GenerationTimestamp?: string | undefined;
|
|
1784
1784
|
/**
|
|
1785
1785
|
* <p>Additional metadata that might be applicable to the recommendation.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
AdditionalMetadata?: string;
|
|
1788
|
+
AdditionalMetadata?: string | undefined;
|
|
1789
1789
|
}
|
|
1790
1790
|
/**
|
|
1791
1791
|
* <p>Details about the Amazon EC2 reservations that Amazon Web Services recommends that you
|
|
@@ -1797,43 +1797,43 @@ export interface EC2InstanceDetails {
|
|
|
1797
1797
|
* <p>The instance family of the recommended reservation.</p>
|
|
1798
1798
|
* @public
|
|
1799
1799
|
*/
|
|
1800
|
-
Family?: string;
|
|
1800
|
+
Family?: string | undefined;
|
|
1801
1801
|
/**
|
|
1802
1802
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
1803
1803
|
* @public
|
|
1804
1804
|
*/
|
|
1805
|
-
InstanceType?: string;
|
|
1805
|
+
InstanceType?: string | undefined;
|
|
1806
1806
|
/**
|
|
1807
1807
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
1808
1808
|
* @public
|
|
1809
1809
|
*/
|
|
1810
|
-
Region?: string;
|
|
1810
|
+
Region?: string | undefined;
|
|
1811
1811
|
/**
|
|
1812
1812
|
* <p>The Availability Zone of the recommended reservation.</p>
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
AvailabilityZone?: string;
|
|
1815
|
+
AvailabilityZone?: string | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p>The platform of the recommended reservation. The platform is the specific combination
|
|
1818
1818
|
* of operating system, license model, and software on an instance.</p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
Platform?: string;
|
|
1821
|
+
Platform?: string | undefined;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* <p>Determines whether the recommended reservation is dedicated or shared.</p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
Tenancy?: string;
|
|
1826
|
+
Tenancy?: string | undefined;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p>Determines whether the recommendation is for a current-generation instance. </p>
|
|
1829
1829
|
* @public
|
|
1830
1830
|
*/
|
|
1831
|
-
CurrentGeneration?: boolean;
|
|
1831
|
+
CurrentGeneration?: boolean | undefined;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
1834
1834
|
* @public
|
|
1835
1835
|
*/
|
|
1836
|
-
SizeFlexEligible?: boolean;
|
|
1836
|
+
SizeFlexEligible?: boolean | undefined;
|
|
1837
1837
|
}
|
|
1838
1838
|
/**
|
|
1839
1839
|
* <p>Details about the Amazon ElastiCache reservations that Amazon Web Services recommends
|
|
@@ -1845,32 +1845,32 @@ export interface ElastiCacheInstanceDetails {
|
|
|
1845
1845
|
* <p>The instance family of the recommended reservation.</p>
|
|
1846
1846
|
* @public
|
|
1847
1847
|
*/
|
|
1848
|
-
Family?: string;
|
|
1848
|
+
Family?: string | undefined;
|
|
1849
1849
|
/**
|
|
1850
1850
|
* <p>The type of node that Amazon Web Services recommends.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
NodeType?: string;
|
|
1853
|
+
NodeType?: string | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
Region?: string;
|
|
1858
|
+
Region?: string | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>The description of the recommended reservation.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
ProductDescription?: string;
|
|
1863
|
+
ProductDescription?: string | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
CurrentGeneration?: boolean;
|
|
1868
|
+
CurrentGeneration?: boolean | undefined;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
SizeFlexEligible?: boolean;
|
|
1873
|
+
SizeFlexEligible?: boolean | undefined;
|
|
1874
1874
|
}
|
|
1875
1875
|
/**
|
|
1876
1876
|
* <p>Details about the Amazon OpenSearch Service reservations that Amazon Web Services
|
|
@@ -1882,27 +1882,27 @@ export interface ESInstanceDetails {
|
|
|
1882
1882
|
* <p>The class of instance that Amazon Web Services recommends.</p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
InstanceClass?: string;
|
|
1885
|
+
InstanceClass?: string | undefined;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* <p>The size of instance that Amazon Web Services recommends.</p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
InstanceSize?: string;
|
|
1890
|
+
InstanceSize?: string | undefined;
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
Region?: string;
|
|
1895
|
+
Region?: string | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>Determines whether the recommendation is for a current-generation instance.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
CurrentGeneration?: boolean;
|
|
1900
|
+
CurrentGeneration?: boolean | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
SizeFlexEligible?: boolean;
|
|
1905
|
+
SizeFlexEligible?: boolean | undefined;
|
|
1906
1906
|
}
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p>Details about the MemoryDB reservations that Amazon Web Services recommends that you
|
|
@@ -1914,27 +1914,27 @@ export interface MemoryDBInstanceDetails {
|
|
|
1914
1914
|
* <p>The instance family of the recommended reservation.</p>
|
|
1915
1915
|
* @public
|
|
1916
1916
|
*/
|
|
1917
|
-
Family?: string;
|
|
1917
|
+
Family?: string | undefined;
|
|
1918
1918
|
/**
|
|
1919
1919
|
* <p>The node type of the recommended reservation.</p>
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
NodeType?: string;
|
|
1922
|
+
NodeType?: string | undefined;
|
|
1923
1923
|
/**
|
|
1924
1924
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
Region?: string;
|
|
1927
|
+
Region?: string | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
CurrentGeneration?: boolean;
|
|
1932
|
+
CurrentGeneration?: boolean | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
SizeFlexEligible?: boolean;
|
|
1937
|
+
SizeFlexEligible?: boolean | undefined;
|
|
1938
1938
|
}
|
|
1939
1939
|
/**
|
|
1940
1940
|
* <p>Details about the Amazon RDS reservations that Amazon Web Services recommends that you
|
|
@@ -1946,48 +1946,48 @@ export interface RDSInstanceDetails {
|
|
|
1946
1946
|
* <p>The instance family of the recommended reservation.</p>
|
|
1947
1947
|
* @public
|
|
1948
1948
|
*/
|
|
1949
|
-
Family?: string;
|
|
1949
|
+
Family?: string | undefined;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
InstanceType?: string;
|
|
1954
|
+
InstanceType?: string | undefined;
|
|
1955
1955
|
/**
|
|
1956
1956
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
Region?: string;
|
|
1959
|
+
Region?: string | undefined;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p>The database engine that the recommended reservation supports.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
DatabaseEngine?: string;
|
|
1964
|
+
DatabaseEngine?: string | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>The database edition that the recommended reservation supports.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
DatabaseEdition?: string;
|
|
1969
|
+
DatabaseEdition?: string | undefined;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* <p>Determines whether the recommendation is for a reservation in a single Availability
|
|
1972
1972
|
* Zone or a reservation with a backup in a second Availability Zone.</p>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
DeploymentOption?: string;
|
|
1975
|
+
DeploymentOption?: string | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>The license model that the recommended reservation supports.</p>
|
|
1978
1978
|
* @public
|
|
1979
1979
|
*/
|
|
1980
|
-
LicenseModel?: string;
|
|
1980
|
+
LicenseModel?: string | undefined;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* <p>Determines whether the recommendation is for a current-generation instance. </p>
|
|
1983
1983
|
* @public
|
|
1984
1984
|
*/
|
|
1985
|
-
CurrentGeneration?: boolean;
|
|
1985
|
+
CurrentGeneration?: boolean | undefined;
|
|
1986
1986
|
/**
|
|
1987
1987
|
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
1988
1988
|
* @public
|
|
1989
1989
|
*/
|
|
1990
|
-
SizeFlexEligible?: boolean;
|
|
1990
|
+
SizeFlexEligible?: boolean | undefined;
|
|
1991
1991
|
}
|
|
1992
1992
|
/**
|
|
1993
1993
|
* <p>Details about the Amazon Redshift reservations that Amazon Web Services recommends that
|
|
@@ -1999,27 +1999,27 @@ export interface RedshiftInstanceDetails {
|
|
|
1999
1999
|
* <p>The instance family of the recommended reservation.</p>
|
|
2000
2000
|
* @public
|
|
2001
2001
|
*/
|
|
2002
|
-
Family?: string;
|
|
2002
|
+
Family?: string | undefined;
|
|
2003
2003
|
/**
|
|
2004
2004
|
* <p>The type of node that Amazon Web Services recommends.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
NodeType?: string;
|
|
2007
|
+
NodeType?: string | undefined;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
Region?: string;
|
|
2012
|
+
Region?: string | undefined;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>Determines whether the recommendation is for a current-generation instance.</p>
|
|
2015
2015
|
* @public
|
|
2016
2016
|
*/
|
|
2017
|
-
CurrentGeneration?: boolean;
|
|
2017
|
+
CurrentGeneration?: boolean | undefined;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* <p>Determines whether the recommended reservation is size flexible.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
SizeFlexEligible?: boolean;
|
|
2022
|
+
SizeFlexEligible?: boolean | undefined;
|
|
2023
2023
|
}
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p>Details about the reservations that Amazon Web Services recommends that you
|
|
@@ -2032,36 +2032,36 @@ export interface InstanceDetails {
|
|
|
2032
2032
|
* purchase.</p>
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
EC2InstanceDetails?: EC2InstanceDetails;
|
|
2035
|
+
EC2InstanceDetails?: EC2InstanceDetails | undefined;
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>The Amazon RDS reservations that Amazon Web Services recommends that you
|
|
2038
2038
|
* purchase.</p>
|
|
2039
2039
|
* @public
|
|
2040
2040
|
*/
|
|
2041
|
-
RDSInstanceDetails?: RDSInstanceDetails;
|
|
2041
|
+
RDSInstanceDetails?: RDSInstanceDetails | undefined;
|
|
2042
2042
|
/**
|
|
2043
2043
|
* <p>The Amazon Redshift reservations that Amazon Web Services recommends that you
|
|
2044
2044
|
* purchase.</p>
|
|
2045
2045
|
* @public
|
|
2046
2046
|
*/
|
|
2047
|
-
RedshiftInstanceDetails?: RedshiftInstanceDetails;
|
|
2047
|
+
RedshiftInstanceDetails?: RedshiftInstanceDetails | undefined;
|
|
2048
2048
|
/**
|
|
2049
2049
|
* <p>The ElastiCache reservations that Amazon Web Services recommends that you
|
|
2050
2050
|
* purchase.</p>
|
|
2051
2051
|
* @public
|
|
2052
2052
|
*/
|
|
2053
|
-
ElastiCacheInstanceDetails?: ElastiCacheInstanceDetails;
|
|
2053
|
+
ElastiCacheInstanceDetails?: ElastiCacheInstanceDetails | undefined;
|
|
2054
2054
|
/**
|
|
2055
2055
|
* <p>The Amazon OpenSearch Service reservations that Amazon Web Services recommends that you
|
|
2056
2056
|
* purchase.</p>
|
|
2057
2057
|
* @public
|
|
2058
2058
|
*/
|
|
2059
|
-
ESInstanceDetails?: ESInstanceDetails;
|
|
2059
|
+
ESInstanceDetails?: ESInstanceDetails | undefined;
|
|
2060
2060
|
/**
|
|
2061
2061
|
* <p>The MemoryDB reservations that Amazon Web Services recommends that you purchase.</p>
|
|
2062
2062
|
* @public
|
|
2063
2063
|
*/
|
|
2064
|
-
MemoryDBInstanceDetails?: MemoryDBInstanceDetails;
|
|
2064
|
+
MemoryDBInstanceDetails?: MemoryDBInstanceDetails | undefined;
|
|
2065
2065
|
}
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>The DynamoDB reservations that Amazon Web Services recommends that you purchase.</p>
|
|
@@ -2072,12 +2072,12 @@ export interface DynamoDBCapacityDetails {
|
|
|
2072
2072
|
* <p>The capacity unit of the recommended reservation.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
CapacityUnits?: string;
|
|
2075
|
+
CapacityUnits?: string | undefined;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>The Amazon Web Services Region of the recommended reservation.</p>
|
|
2078
2078
|
* @public
|
|
2079
2079
|
*/
|
|
2080
|
-
Region?: string;
|
|
2080
|
+
Region?: string | undefined;
|
|
2081
2081
|
}
|
|
2082
2082
|
/**
|
|
2083
2083
|
* <p>Details about the reservations that Amazon Web Services recommends that you
|
|
@@ -2089,7 +2089,7 @@ export interface ReservedCapacityDetails {
|
|
|
2089
2089
|
* <p>The DynamoDB reservations that Amazon Web Services recommends that you purchase.</p>
|
|
2090
2090
|
* @public
|
|
2091
2091
|
*/
|
|
2092
|
-
DynamoDBCapacityDetails?: DynamoDBCapacityDetails;
|
|
2092
|
+
DynamoDBCapacityDetails?: DynamoDBCapacityDetails | undefined;
|
|
2093
2093
|
}
|
|
2094
2094
|
/**
|
|
2095
2095
|
* <p>Details about your recommended reservation purchase.</p>
|
|
@@ -2100,151 +2100,151 @@ export interface ReservationPurchaseRecommendationDetail {
|
|
|
2100
2100
|
* <p>The account that this Reserved Instance (RI) recommendation is for.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
AccountId?: string;
|
|
2103
|
+
AccountId?: string | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>Details about the reservations that Amazon Web Services recommends that you
|
|
2106
2106
|
* purchase.</p>
|
|
2107
2107
|
* @public
|
|
2108
2108
|
*/
|
|
2109
|
-
InstanceDetails?: InstanceDetails;
|
|
2109
|
+
InstanceDetails?: InstanceDetails | undefined;
|
|
2110
2110
|
/**
|
|
2111
2111
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
RecommendedNumberOfInstancesToPurchase?: string;
|
|
2114
|
+
RecommendedNumberOfInstancesToPurchase?: string | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
2117
2117
|
* purchase.</p>
|
|
2118
2118
|
* @public
|
|
2119
2119
|
*/
|
|
2120
|
-
RecommendedNormalizedUnitsToPurchase?: string;
|
|
2120
|
+
RecommendedNormalizedUnitsToPurchase?: string | undefined;
|
|
2121
2121
|
/**
|
|
2122
2122
|
* <p>The minimum number of instances that you used in an hour during the historical period.
|
|
2123
2123
|
* Amazon Web Services uses this to calculate your recommended reservation
|
|
2124
2124
|
* purchases.</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
MinimumNumberOfInstancesUsedPerHour?: string;
|
|
2127
|
+
MinimumNumberOfInstancesUsedPerHour?: string | undefined;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* <p>The minimum number of normalized units that you used in an hour during the historical
|
|
2130
2130
|
* period. Amazon Web Services uses this to calculate your recommended reservation
|
|
2131
2131
|
* purchases.</p>
|
|
2132
2132
|
* @public
|
|
2133
2133
|
*/
|
|
2134
|
-
MinimumNormalizedUnitsUsedPerHour?: string;
|
|
2134
|
+
MinimumNormalizedUnitsUsedPerHour?: string | undefined;
|
|
2135
2135
|
/**
|
|
2136
2136
|
* <p>The maximum number of instances that you used in an hour during the historical period.
|
|
2137
2137
|
* Amazon Web Services uses this to calculate your recommended reservation
|
|
2138
2138
|
* purchases.</p>
|
|
2139
2139
|
* @public
|
|
2140
2140
|
*/
|
|
2141
|
-
MaximumNumberOfInstancesUsedPerHour?: string;
|
|
2141
|
+
MaximumNumberOfInstancesUsedPerHour?: string | undefined;
|
|
2142
2142
|
/**
|
|
2143
2143
|
* <p>The maximum number of normalized units that you used in an hour during the historical
|
|
2144
2144
|
* period. Amazon Web Services uses this to calculate your recommended reservation
|
|
2145
2145
|
* purchases.</p>
|
|
2146
2146
|
* @public
|
|
2147
2147
|
*/
|
|
2148
|
-
MaximumNormalizedUnitsUsedPerHour?: string;
|
|
2148
|
+
MaximumNormalizedUnitsUsedPerHour?: string | undefined;
|
|
2149
2149
|
/**
|
|
2150
2150
|
* <p>The average number of instances that you used in an hour during the historical period.
|
|
2151
2151
|
* Amazon Web Services uses this to calculate your recommended reservation
|
|
2152
2152
|
* purchases.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
AverageNumberOfInstancesUsedPerHour?: string;
|
|
2155
|
+
AverageNumberOfInstancesUsedPerHour?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The average number of normalized units that you used in an hour during the historical
|
|
2158
2158
|
* period. Amazon Web Services uses this to calculate your recommended reservation
|
|
2159
2159
|
* purchases.</p>
|
|
2160
2160
|
* @public
|
|
2161
2161
|
*/
|
|
2162
|
-
AverageNormalizedUnitsUsedPerHour?: string;
|
|
2162
|
+
AverageNormalizedUnitsUsedPerHour?: string | undefined;
|
|
2163
2163
|
/**
|
|
2164
2164
|
* <p>The average utilization of your recommendations. Amazon Web Services uses this to
|
|
2165
2165
|
* calculate your recommended reservation purchases.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
AverageUtilization?: string;
|
|
2168
|
+
AverageUtilization?: string | undefined;
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>How long Amazon Web Services estimates that it takes for this recommendation to start
|
|
2171
2171
|
* saving you money, in months.</p>
|
|
2172
2172
|
* @public
|
|
2173
2173
|
*/
|
|
2174
|
-
EstimatedBreakEvenInMonths?: string;
|
|
2174
|
+
EstimatedBreakEvenInMonths?: string | undefined;
|
|
2175
2175
|
/**
|
|
2176
2176
|
* <p>The currency code that Amazon Web Services used to calculate the costs for this
|
|
2177
2177
|
* recommendation.</p>
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
CurrencyCode?: string;
|
|
2180
|
+
CurrencyCode?: string | undefined;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* <p>How much Amazon Web Services estimates that this specific recommendation might save you
|
|
2183
2183
|
* in a month.</p>
|
|
2184
2184
|
* @public
|
|
2185
2185
|
*/
|
|
2186
|
-
EstimatedMonthlySavingsAmount?: string;
|
|
2186
|
+
EstimatedMonthlySavingsAmount?: string | undefined;
|
|
2187
2187
|
/**
|
|
2188
2188
|
* <p>How much Amazon Web Services estimates that this specific recommendation might save you
|
|
2189
2189
|
* in a month, as a percentage of your overall costs.</p>
|
|
2190
2190
|
* @public
|
|
2191
2191
|
*/
|
|
2192
|
-
EstimatedMonthlySavingsPercentage?: string;
|
|
2192
|
+
EstimatedMonthlySavingsPercentage?: string | undefined;
|
|
2193
2193
|
/**
|
|
2194
2194
|
* <p>How much Amazon Web Services estimates that you spend on On-Demand Instances in a
|
|
2195
2195
|
* month.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
EstimatedMonthlyOnDemandCost?: string;
|
|
2198
|
+
EstimatedMonthlyOnDemandCost?: string | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>How much Amazon Web Services estimates that you might spend for all usage during the
|
|
2201
2201
|
* specified historical period if you had a reservation.</p>
|
|
2202
2202
|
* @public
|
|
2203
2203
|
*/
|
|
2204
|
-
EstimatedReservationCostForLookbackPeriod?: string;
|
|
2204
|
+
EstimatedReservationCostForLookbackPeriod?: string | undefined;
|
|
2205
2205
|
/**
|
|
2206
2206
|
* <p>How much purchasing this recommendation costs you upfront.</p>
|
|
2207
2207
|
* @public
|
|
2208
2208
|
*/
|
|
2209
|
-
UpfrontCost?: string;
|
|
2209
|
+
UpfrontCost?: string | undefined;
|
|
2210
2210
|
/**
|
|
2211
2211
|
* <p>How much purchasing this recommendation costs you on a monthly basis.</p>
|
|
2212
2212
|
* @public
|
|
2213
2213
|
*/
|
|
2214
|
-
RecurringStandardMonthlyCost?: string;
|
|
2214
|
+
RecurringStandardMonthlyCost?: string | undefined;
|
|
2215
2215
|
/**
|
|
2216
2216
|
* <p>Details about the reservations that Amazon Web Services recommends that you
|
|
2217
2217
|
* purchase.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
ReservedCapacityDetails?: ReservedCapacityDetails;
|
|
2220
|
+
ReservedCapacityDetails?: ReservedCapacityDetails | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* <p>The number of reserved capacity units that Amazon Web Services recommends that you
|
|
2223
2223
|
* purchase.</p>
|
|
2224
2224
|
* @public
|
|
2225
2225
|
*/
|
|
2226
|
-
RecommendedNumberOfCapacityUnitsToPurchase?: string;
|
|
2226
|
+
RecommendedNumberOfCapacityUnitsToPurchase?: string | undefined;
|
|
2227
2227
|
/**
|
|
2228
2228
|
* <p>The minimum number of provisioned capacity units that you used in an hour during the
|
|
2229
2229
|
* historical period. Amazon Web Services uses this to calculate your recommended
|
|
2230
2230
|
* reservation purchases.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
MinimumNumberOfCapacityUnitsUsedPerHour?: string;
|
|
2233
|
+
MinimumNumberOfCapacityUnitsUsedPerHour?: string | undefined;
|
|
2234
2234
|
/**
|
|
2235
2235
|
* <p>The maximum number of provisioned capacity units that you used in an hour during the
|
|
2236
2236
|
* historical period. Amazon Web Services uses this to calculate your recommended
|
|
2237
2237
|
* reservation purchases.</p>
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
MaximumNumberOfCapacityUnitsUsedPerHour?: string;
|
|
2240
|
+
MaximumNumberOfCapacityUnitsUsedPerHour?: string | undefined;
|
|
2241
2241
|
/**
|
|
2242
2242
|
* <p>The average number of provisioned capacity units that you used in an hour during the
|
|
2243
2243
|
* historical period. Amazon Web Services uses this to calculate your recommended
|
|
2244
2244
|
* reservation purchases.</p>
|
|
2245
2245
|
* @public
|
|
2246
2246
|
*/
|
|
2247
|
-
AverageNumberOfCapacityUnitsUsedPerHour?: string;
|
|
2247
|
+
AverageNumberOfCapacityUnitsUsedPerHour?: string | undefined;
|
|
2248
2248
|
}
|
|
2249
2249
|
/**
|
|
2250
2250
|
* <p>A summary about this recommendation, such as the currency code, the amount that
|
|
@@ -2258,18 +2258,18 @@ export interface ReservationPurchaseRecommendationSummary {
|
|
|
2258
2258
|
* you in a month.</p>
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
TotalEstimatedMonthlySavingsAmount?: string;
|
|
2261
|
+
TotalEstimatedMonthlySavingsAmount?: string | undefined;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* <p>The total amount that Amazon Web Services estimates that this recommendation could save
|
|
2264
2264
|
* you in a month, as a percentage of your costs.</p>
|
|
2265
2265
|
* @public
|
|
2266
2266
|
*/
|
|
2267
|
-
TotalEstimatedMonthlySavingsPercentage?: string;
|
|
2267
|
+
TotalEstimatedMonthlySavingsPercentage?: string | undefined;
|
|
2268
2268
|
/**
|
|
2269
2269
|
* <p>The currency code used for this recommendation.</p>
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
CurrencyCode?: string;
|
|
2272
|
+
CurrencyCode?: string | undefined;
|
|
2273
2273
|
}
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>A specific reservation that Amazon Web Services recommends for purchase.</p>
|
|
@@ -2282,39 +2282,39 @@ export interface ReservationPurchaseRecommendation {
|
|
|
2282
2282
|
* Amazon Web Services Organizations.</p>
|
|
2283
2283
|
* @public
|
|
2284
2284
|
*/
|
|
2285
|
-
AccountScope?: AccountScope;
|
|
2285
|
+
AccountScope?: AccountScope | undefined;
|
|
2286
2286
|
/**
|
|
2287
2287
|
* <p>How many days of previous usage that Amazon Web Services considers when making this
|
|
2288
2288
|
* recommendation.</p>
|
|
2289
2289
|
* @public
|
|
2290
2290
|
*/
|
|
2291
|
-
LookbackPeriodInDays?: LookbackPeriodInDays;
|
|
2291
|
+
LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* <p>The term of the reservation that you want recommendations for, in years.</p>
|
|
2294
2294
|
* @public
|
|
2295
2295
|
*/
|
|
2296
|
-
TermInYears?: TermInYears;
|
|
2296
|
+
TermInYears?: TermInYears | undefined;
|
|
2297
2297
|
/**
|
|
2298
2298
|
* <p>The payment option for the reservation (for example, <code>AllUpfront</code> or
|
|
2299
2299
|
* <code>NoUpfront</code>).</p>
|
|
2300
2300
|
* @public
|
|
2301
2301
|
*/
|
|
2302
|
-
PaymentOption?: PaymentOption;
|
|
2302
|
+
PaymentOption?: PaymentOption | undefined;
|
|
2303
2303
|
/**
|
|
2304
2304
|
* <p>Hardware specifications for the service that you want recommendations for.</p>
|
|
2305
2305
|
* @public
|
|
2306
2306
|
*/
|
|
2307
|
-
ServiceSpecification?: ServiceSpecification;
|
|
2307
|
+
ServiceSpecification?: ServiceSpecification | undefined;
|
|
2308
2308
|
/**
|
|
2309
2309
|
* <p>Details about the recommended purchases.</p>
|
|
2310
2310
|
* @public
|
|
2311
2311
|
*/
|
|
2312
|
-
RecommendationDetails?: ReservationPurchaseRecommendationDetail[];
|
|
2312
|
+
RecommendationDetails?: ReservationPurchaseRecommendationDetail[] | undefined;
|
|
2313
2313
|
/**
|
|
2314
2314
|
* <p>A summary about the recommended purchase.</p>
|
|
2315
2315
|
* @public
|
|
2316
2316
|
*/
|
|
2317
|
-
RecommendationSummary?: ReservationPurchaseRecommendationSummary;
|
|
2317
|
+
RecommendationSummary?: ReservationPurchaseRecommendationSummary | undefined;
|
|
2318
2318
|
}
|
|
2319
2319
|
/**
|
|
2320
2320
|
* @public
|
|
@@ -2325,17 +2325,17 @@ export interface GetReservationPurchaseRecommendationResponse {
|
|
|
2325
2325
|
* Cost Explorer generated this recommendation.</p>
|
|
2326
2326
|
* @public
|
|
2327
2327
|
*/
|
|
2328
|
-
Metadata?: ReservationPurchaseRecommendationMetadata;
|
|
2328
|
+
Metadata?: ReservationPurchaseRecommendationMetadata | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* <p>Recommendations for reservations to purchase.</p>
|
|
2331
2331
|
* @public
|
|
2332
2332
|
*/
|
|
2333
|
-
Recommendations?: ReservationPurchaseRecommendation[];
|
|
2333
|
+
Recommendations?: ReservationPurchaseRecommendation[] | undefined;
|
|
2334
2334
|
/**
|
|
2335
2335
|
* <p>The pagination token for the next set of retrievable results.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
NextPageToken?: string;
|
|
2338
|
+
NextPageToken?: string | undefined;
|
|
2339
2339
|
}
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>The aggregated numbers for your reservation usage.</p>
|
|
@@ -2346,99 +2346,99 @@ export interface ReservationAggregates {
|
|
|
2346
2346
|
* <p>The percentage of reservation time that you used.</p>
|
|
2347
2347
|
* @public
|
|
2348
2348
|
*/
|
|
2349
|
-
UtilizationPercentage?: string;
|
|
2349
|
+
UtilizationPercentage?: string | undefined;
|
|
2350
2350
|
/**
|
|
2351
2351
|
* <p>The percentage of Amazon EC2 reservation time that you used. It's converted to
|
|
2352
2352
|
* normalized units. Normalized units are available only for Amazon EC2 usage after
|
|
2353
2353
|
* November 11, 2017.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
UtilizationPercentageInUnits?: string;
|
|
2356
|
+
UtilizationPercentageInUnits?: string | undefined;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p>How many reservation hours that you purchased.</p>
|
|
2359
2359
|
* @public
|
|
2360
2360
|
*/
|
|
2361
|
-
PurchasedHours?: string;
|
|
2361
|
+
PurchasedHours?: string | undefined;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* <p>The number of Amazon EC2 reservation hours that you purchased. It's converted to
|
|
2364
2364
|
* normalized units. Normalized units are available only for Amazon EC2 usage after
|
|
2365
2365
|
* November 11, 2017.</p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
PurchasedUnits?: string;
|
|
2368
|
+
PurchasedUnits?: string | undefined;
|
|
2369
2369
|
/**
|
|
2370
2370
|
* <p>The total number of reservation hours that you used.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
TotalActualHours?: string;
|
|
2373
|
+
TotalActualHours?: string | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>The total number of Amazon EC2 reservation hours that you used. It's converted to
|
|
2376
2376
|
* normalized units. Normalized units are available only for Amazon EC2 usage after
|
|
2377
2377
|
* November 11, 2017.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
TotalActualUnits?: string;
|
|
2380
|
+
TotalActualUnits?: string | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>The number of reservation hours that you didn't use.</p>
|
|
2383
2383
|
* @public
|
|
2384
2384
|
*/
|
|
2385
|
-
UnusedHours?: string;
|
|
2385
|
+
UnusedHours?: string | undefined;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* <p>The number of Amazon EC2 reservation hours that you didn't use. It's converted to
|
|
2388
2388
|
* normalized units. Normalized units are available only for Amazon EC2 usage after
|
|
2389
2389
|
* November 11, 2017.</p>
|
|
2390
2390
|
* @public
|
|
2391
2391
|
*/
|
|
2392
|
-
UnusedUnits?: string;
|
|
2392
|
+
UnusedUnits?: string | undefined;
|
|
2393
2393
|
/**
|
|
2394
2394
|
* <p>How much your reservation costs if charged On-Demand rates.</p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
OnDemandCostOfRIHoursUsed?: string;
|
|
2397
|
+
OnDemandCostOfRIHoursUsed?: string | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>How much you saved due to purchasing and utilizing reservation. Amazon Web Services
|
|
2400
2400
|
* calculates this by subtracting <code>TotalAmortizedFee</code> from
|
|
2401
2401
|
* <code>OnDemandCostOfRIHoursUsed</code>.</p>
|
|
2402
2402
|
* @public
|
|
2403
2403
|
*/
|
|
2404
|
-
NetRISavings?: string;
|
|
2404
|
+
NetRISavings?: string | undefined;
|
|
2405
2405
|
/**
|
|
2406
2406
|
* <p>How much you might save if you use your entire reservation.</p>
|
|
2407
2407
|
* @public
|
|
2408
2408
|
*/
|
|
2409
|
-
TotalPotentialRISavings?: string;
|
|
2409
|
+
TotalPotentialRISavings?: string | undefined;
|
|
2410
2410
|
/**
|
|
2411
2411
|
* <p>The upfront cost of your reservation. It's amortized over the reservation
|
|
2412
2412
|
* period.</p>
|
|
2413
2413
|
* @public
|
|
2414
2414
|
*/
|
|
2415
|
-
AmortizedUpfrontFee?: string;
|
|
2415
|
+
AmortizedUpfrontFee?: string | undefined;
|
|
2416
2416
|
/**
|
|
2417
2417
|
* <p>The monthly cost of your reservation. It's amortized over the reservation
|
|
2418
2418
|
* period.</p>
|
|
2419
2419
|
* @public
|
|
2420
2420
|
*/
|
|
2421
|
-
AmortizedRecurringFee?: string;
|
|
2421
|
+
AmortizedRecurringFee?: string | undefined;
|
|
2422
2422
|
/**
|
|
2423
2423
|
* <p>The total cost of your reservation. It's amortized over the reservation period.</p>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
TotalAmortizedFee?: string;
|
|
2426
|
+
TotalAmortizedFee?: string | undefined;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* <p>The cost of unused hours for your reservation.</p>
|
|
2429
2429
|
* @public
|
|
2430
2430
|
*/
|
|
2431
|
-
RICostForUnusedHours?: string;
|
|
2431
|
+
RICostForUnusedHours?: string | undefined;
|
|
2432
2432
|
/**
|
|
2433
2433
|
* <p>The realized savings because of purchasing and using a reservation.</p>
|
|
2434
2434
|
* @public
|
|
2435
2435
|
*/
|
|
2436
|
-
RealizedSavings?: string;
|
|
2436
|
+
RealizedSavings?: string | undefined;
|
|
2437
2437
|
/**
|
|
2438
2438
|
* <p>The unrealized savings because of purchasing and using a reservation.</p>
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
UnrealizedSavings?: string;
|
|
2441
|
+
UnrealizedSavings?: string | undefined;
|
|
2442
2442
|
}
|
|
2443
2443
|
/**
|
|
2444
2444
|
* <p>A group of reservations that share a set of attributes.</p>
|
|
@@ -2449,22 +2449,22 @@ export interface ReservationUtilizationGroup {
|
|
|
2449
2449
|
* <p>The key for a specific reservation attribute.</p>
|
|
2450
2450
|
* @public
|
|
2451
2451
|
*/
|
|
2452
|
-
Key?: string;
|
|
2452
|
+
Key?: string | undefined;
|
|
2453
2453
|
/**
|
|
2454
2454
|
* <p>The value of a specific reservation attribute.</p>
|
|
2455
2455
|
* @public
|
|
2456
2456
|
*/
|
|
2457
|
-
Value?: string;
|
|
2457
|
+
Value?: string | undefined;
|
|
2458
2458
|
/**
|
|
2459
2459
|
* <p>The attributes for this group of reservations.</p>
|
|
2460
2460
|
* @public
|
|
2461
2461
|
*/
|
|
2462
|
-
Attributes?: Record<string, string
|
|
2462
|
+
Attributes?: Record<string, string> | undefined;
|
|
2463
2463
|
/**
|
|
2464
2464
|
* <p>How much you used this group of reservations.</p>
|
|
2465
2465
|
* @public
|
|
2466
2466
|
*/
|
|
2467
|
-
Utilization?: ReservationAggregates;
|
|
2467
|
+
Utilization?: ReservationAggregates | undefined;
|
|
2468
2468
|
}
|
|
2469
2469
|
/**
|
|
2470
2470
|
* <p>The amount of utilization, in hours.</p>
|
|
@@ -2475,17 +2475,17 @@ export interface UtilizationByTime {
|
|
|
2475
2475
|
* <p>The period of time that this utilization was used for.</p>
|
|
2476
2476
|
* @public
|
|
2477
2477
|
*/
|
|
2478
|
-
TimePeriod?: DateInterval;
|
|
2478
|
+
TimePeriod?: DateInterval | undefined;
|
|
2479
2479
|
/**
|
|
2480
2480
|
* <p>The groups that this utilization result uses.</p>
|
|
2481
2481
|
* @public
|
|
2482
2482
|
*/
|
|
2483
|
-
Groups?: ReservationUtilizationGroup[];
|
|
2483
|
+
Groups?: ReservationUtilizationGroup[] | undefined;
|
|
2484
2484
|
/**
|
|
2485
2485
|
* <p>The total number of reservation hours that were used.</p>
|
|
2486
2486
|
* @public
|
|
2487
2487
|
*/
|
|
2488
|
-
Total?: ReservationAggregates;
|
|
2488
|
+
Total?: ReservationAggregates | undefined;
|
|
2489
2489
|
}
|
|
2490
2490
|
/**
|
|
2491
2491
|
* @public
|
|
@@ -2500,13 +2500,13 @@ export interface GetReservationUtilizationResponse {
|
|
|
2500
2500
|
* <p>The total amount of time that you used your Reserved Instances (RIs).</p>
|
|
2501
2501
|
* @public
|
|
2502
2502
|
*/
|
|
2503
|
-
Total?: ReservationAggregates;
|
|
2503
|
+
Total?: ReservationAggregates | undefined;
|
|
2504
2504
|
/**
|
|
2505
2505
|
* <p>The token for the next set of retrievable results. Amazon Web Services provides the token
|
|
2506
2506
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
2507
2507
|
* @public
|
|
2508
2508
|
*/
|
|
2509
|
-
NextPageToken?: string;
|
|
2509
|
+
NextPageToken?: string | undefined;
|
|
2510
2510
|
}
|
|
2511
2511
|
/**
|
|
2512
2512
|
* @public
|
|
@@ -2553,23 +2553,23 @@ export interface RightsizingRecommendationMetadata {
|
|
|
2553
2553
|
* <p>The ID for the recommendation.</p>
|
|
2554
2554
|
* @public
|
|
2555
2555
|
*/
|
|
2556
|
-
RecommendationId?: string;
|
|
2556
|
+
RecommendationId?: string | undefined;
|
|
2557
2557
|
/**
|
|
2558
2558
|
* <p>The timestamp for when Amazon Web Services made the recommendation.</p>
|
|
2559
2559
|
* @public
|
|
2560
2560
|
*/
|
|
2561
|
-
GenerationTimestamp?: string;
|
|
2561
|
+
GenerationTimestamp?: string | undefined;
|
|
2562
2562
|
/**
|
|
2563
2563
|
* <p>The number of days of previous usage that Amazon Web Services considers when making the
|
|
2564
2564
|
* recommendation.</p>
|
|
2565
2565
|
* @public
|
|
2566
2566
|
*/
|
|
2567
|
-
LookbackPeriodInDays?: LookbackPeriodInDays;
|
|
2567
|
+
LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
|
|
2568
2568
|
/**
|
|
2569
2569
|
* <p>Additional metadata that might be applicable to the recommendation.</p>
|
|
2570
2570
|
* @public
|
|
2571
2571
|
*/
|
|
2572
|
-
AdditionalMetadata?: string;
|
|
2572
|
+
AdditionalMetadata?: string | undefined;
|
|
2573
2573
|
}
|
|
2574
2574
|
/**
|
|
2575
2575
|
* <p>Details on the Amazon EC2 Resource.</p>
|
|
@@ -2580,49 +2580,49 @@ export interface EC2ResourceDetails {
|
|
|
2580
2580
|
* <p>The hourly public On-Demand rate for the instance type.</p>
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
HourlyOnDemandRate?: string;
|
|
2583
|
+
HourlyOnDemandRate?: string | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* <p>The type of Amazon Web Services instance.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
InstanceType?: string;
|
|
2588
|
+
InstanceType?: string | undefined;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* <p>The platform of the Amazon Web Services instance. The platform is the specific
|
|
2591
2591
|
* combination of operating system, license model, and software on an instance.</p>
|
|
2592
2592
|
* @public
|
|
2593
2593
|
*/
|
|
2594
|
-
Platform?: string;
|
|
2594
|
+
Platform?: string | undefined;
|
|
2595
2595
|
/**
|
|
2596
2596
|
* <p>The Amazon Web Services Region of the instance.</p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
Region?: string;
|
|
2599
|
+
Region?: string | undefined;
|
|
2600
2600
|
/**
|
|
2601
2601
|
* <p>The SKU of the product.</p>
|
|
2602
2602
|
* @public
|
|
2603
2603
|
*/
|
|
2604
|
-
Sku?: string;
|
|
2604
|
+
Sku?: string | undefined;
|
|
2605
2605
|
/**
|
|
2606
2606
|
* <p>The memory capacity of the Amazon Web Services instance.</p>
|
|
2607
2607
|
* @public
|
|
2608
2608
|
*/
|
|
2609
|
-
Memory?: string;
|
|
2609
|
+
Memory?: string | undefined;
|
|
2610
2610
|
/**
|
|
2611
2611
|
* <p>The network performance capacity of the Amazon Web Services instance.</p>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
NetworkPerformance?: string;
|
|
2614
|
+
NetworkPerformance?: string | undefined;
|
|
2615
2615
|
/**
|
|
2616
2616
|
* <p>The disk storage of the Amazon Web Services instance. This doesn't include EBS
|
|
2617
2617
|
* storage.</p>
|
|
2618
2618
|
* @public
|
|
2619
2619
|
*/
|
|
2620
|
-
Storage?: string;
|
|
2620
|
+
Storage?: string | undefined;
|
|
2621
2621
|
/**
|
|
2622
2622
|
* <p>The number of VCPU cores in the Amazon Web Services instance type.</p>
|
|
2623
2623
|
* @public
|
|
2624
2624
|
*/
|
|
2625
|
-
Vcpu?: string;
|
|
2625
|
+
Vcpu?: string | undefined;
|
|
2626
2626
|
}
|
|
2627
2627
|
/**
|
|
2628
2628
|
* <p>Details for the resource.</p>
|
|
@@ -2633,7 +2633,7 @@ export interface ResourceDetails {
|
|
|
2633
2633
|
* <p>Details for the Amazon EC2 resource.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
EC2ResourceDetails?: EC2ResourceDetails;
|
|
2636
|
+
EC2ResourceDetails?: EC2ResourceDetails | undefined;
|
|
2637
2637
|
}
|
|
2638
2638
|
/**
|
|
2639
2639
|
* <p>The field that contains a list of disk (local storage) metrics that are associated
|
|
@@ -2645,22 +2645,22 @@ export interface DiskResourceUtilization {
|
|
|
2645
2645
|
* <p>The maximum number of read operations per second. </p>
|
|
2646
2646
|
* @public
|
|
2647
2647
|
*/
|
|
2648
|
-
DiskReadOpsPerSecond?: string;
|
|
2648
|
+
DiskReadOpsPerSecond?: string | undefined;
|
|
2649
2649
|
/**
|
|
2650
2650
|
* <p>The maximum number of write operations per second. </p>
|
|
2651
2651
|
* @public
|
|
2652
2652
|
*/
|
|
2653
|
-
DiskWriteOpsPerSecond?: string;
|
|
2653
|
+
DiskWriteOpsPerSecond?: string | undefined;
|
|
2654
2654
|
/**
|
|
2655
2655
|
* <p>The maximum read throughput operations per second. </p>
|
|
2656
2656
|
* @public
|
|
2657
2657
|
*/
|
|
2658
|
-
DiskReadBytesPerSecond?: string;
|
|
2658
|
+
DiskReadBytesPerSecond?: string | undefined;
|
|
2659
2659
|
/**
|
|
2660
2660
|
* <p>The maximum write throughput operations per second. </p>
|
|
2661
2661
|
* @public
|
|
2662
2662
|
*/
|
|
2663
|
-
DiskWriteBytesPerSecond?: string;
|
|
2663
|
+
DiskWriteBytesPerSecond?: string | undefined;
|
|
2664
2664
|
}
|
|
2665
2665
|
/**
|
|
2666
2666
|
* <p>The EBS field that contains a list of EBS metrics that are associated with the current
|
|
@@ -2672,22 +2672,22 @@ export interface EBSResourceUtilization {
|
|
|
2672
2672
|
* <p>The maximum number of read operations per second. </p>
|
|
2673
2673
|
* @public
|
|
2674
2674
|
*/
|
|
2675
|
-
EbsReadOpsPerSecond?: string;
|
|
2675
|
+
EbsReadOpsPerSecond?: string | undefined;
|
|
2676
2676
|
/**
|
|
2677
2677
|
* <p>The maximum number of write operations per second. </p>
|
|
2678
2678
|
* @public
|
|
2679
2679
|
*/
|
|
2680
|
-
EbsWriteOpsPerSecond?: string;
|
|
2680
|
+
EbsWriteOpsPerSecond?: string | undefined;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* <p>The maximum size of read operations per second </p>
|
|
2683
2683
|
* @public
|
|
2684
2684
|
*/
|
|
2685
|
-
EbsReadBytesPerSecond?: string;
|
|
2685
|
+
EbsReadBytesPerSecond?: string | undefined;
|
|
2686
2686
|
/**
|
|
2687
2687
|
* <p>The maximum size of write operations per second. </p>
|
|
2688
2688
|
* @public
|
|
2689
2689
|
*/
|
|
2690
|
-
EbsWriteBytesPerSecond?: string;
|
|
2690
|
+
EbsWriteBytesPerSecond?: string | undefined;
|
|
2691
2691
|
}
|
|
2692
2692
|
/**
|
|
2693
2693
|
* <p>The network field that contains a list of network metrics that are associated with the
|
|
@@ -2699,23 +2699,23 @@ export interface NetworkResourceUtilization {
|
|
|
2699
2699
|
* <p>The network inbound throughput utilization measured in Bytes per second (Bps). </p>
|
|
2700
2700
|
* @public
|
|
2701
2701
|
*/
|
|
2702
|
-
NetworkInBytesPerSecond?: string;
|
|
2702
|
+
NetworkInBytesPerSecond?: string | undefined;
|
|
2703
2703
|
/**
|
|
2704
2704
|
* <p>The network outbound throughput utilization measured in Bytes per second (Bps).
|
|
2705
2705
|
* </p>
|
|
2706
2706
|
* @public
|
|
2707
2707
|
*/
|
|
2708
|
-
NetworkOutBytesPerSecond?: string;
|
|
2708
|
+
NetworkOutBytesPerSecond?: string | undefined;
|
|
2709
2709
|
/**
|
|
2710
2710
|
* <p>The network inbound packets that are measured in packets per second. </p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
NetworkPacketsInPerSecond?: string;
|
|
2713
|
+
NetworkPacketsInPerSecond?: string | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>The network outbound packets that are measured in packets per second. </p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
NetworkPacketsOutPerSecond?: string;
|
|
2718
|
+
NetworkPacketsOutPerSecond?: string | undefined;
|
|
2719
2719
|
}
|
|
2720
2720
|
/**
|
|
2721
2721
|
* <p>Utilization metrics for the instance. </p>
|
|
@@ -2726,36 +2726,36 @@ export interface EC2ResourceUtilization {
|
|
|
2726
2726
|
* <p>The maximum observed or expected CPU utilization of the instance.</p>
|
|
2727
2727
|
* @public
|
|
2728
2728
|
*/
|
|
2729
|
-
MaxCpuUtilizationPercentage?: string;
|
|
2729
|
+
MaxCpuUtilizationPercentage?: string | undefined;
|
|
2730
2730
|
/**
|
|
2731
2731
|
* <p>The maximum observed or expected memory utilization of the instance.</p>
|
|
2732
2732
|
* @public
|
|
2733
2733
|
*/
|
|
2734
|
-
MaxMemoryUtilizationPercentage?: string;
|
|
2734
|
+
MaxMemoryUtilizationPercentage?: string | undefined;
|
|
2735
2735
|
/**
|
|
2736
2736
|
* <p>The maximum observed or expected storage utilization of the instance. This doesn't
|
|
2737
2737
|
* include EBS storage.</p>
|
|
2738
2738
|
* @public
|
|
2739
2739
|
*/
|
|
2740
|
-
MaxStorageUtilizationPercentage?: string;
|
|
2740
|
+
MaxStorageUtilizationPercentage?: string | undefined;
|
|
2741
2741
|
/**
|
|
2742
2742
|
* <p>The EBS field that contains a list of EBS metrics that are associated with the current
|
|
2743
2743
|
* instance. </p>
|
|
2744
2744
|
* @public
|
|
2745
2745
|
*/
|
|
2746
|
-
EBSResourceUtilization?: EBSResourceUtilization;
|
|
2746
|
+
EBSResourceUtilization?: EBSResourceUtilization | undefined;
|
|
2747
2747
|
/**
|
|
2748
2748
|
* <p>The field that contains a list of disk (local storage) metrics that are associated
|
|
2749
2749
|
* with the current instance. </p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
DiskResourceUtilization?: DiskResourceUtilization;
|
|
2752
|
+
DiskResourceUtilization?: DiskResourceUtilization | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>The network field that contains a list of network metrics that are associated with the
|
|
2755
2755
|
* current instance. </p>
|
|
2756
2756
|
* @public
|
|
2757
2757
|
*/
|
|
2758
|
-
NetworkResourceUtilization?: NetworkResourceUtilization;
|
|
2758
|
+
NetworkResourceUtilization?: NetworkResourceUtilization | undefined;
|
|
2759
2759
|
}
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>Resource utilization of current resource. </p>
|
|
@@ -2766,7 +2766,7 @@ export interface ResourceUtilization {
|
|
|
2766
2766
|
* <p>The utilization of current Amazon EC2 instance. </p>
|
|
2767
2767
|
* @public
|
|
2768
2768
|
*/
|
|
2769
|
-
EC2ResourceUtilization?: EC2ResourceUtilization;
|
|
2769
|
+
EC2ResourceUtilization?: EC2ResourceUtilization | undefined;
|
|
2770
2770
|
}
|
|
2771
2771
|
/**
|
|
2772
2772
|
* <p>Context about the current instance.</p>
|
|
@@ -2777,60 +2777,60 @@ export interface CurrentInstance {
|
|
|
2777
2777
|
* <p>Resource ID of the current instance.</p>
|
|
2778
2778
|
* @public
|
|
2779
2779
|
*/
|
|
2780
|
-
ResourceId?: string;
|
|
2780
|
+
ResourceId?: string | undefined;
|
|
2781
2781
|
/**
|
|
2782
2782
|
* <p>The name that you given an instance. This field shows as blank if you haven't given
|
|
2783
2783
|
* the instance a name.</p>
|
|
2784
2784
|
* @public
|
|
2785
2785
|
*/
|
|
2786
|
-
InstanceName?: string;
|
|
2786
|
+
InstanceName?: string | undefined;
|
|
2787
2787
|
/**
|
|
2788
2788
|
* <p>Cost allocation resource tags that are applied to the instance.</p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
Tags?: TagValues[];
|
|
2791
|
+
Tags?: TagValues[] | undefined;
|
|
2792
2792
|
/**
|
|
2793
2793
|
* <p>Details about the resource and utilization.</p>
|
|
2794
2794
|
* @public
|
|
2795
2795
|
*/
|
|
2796
|
-
ResourceDetails?: ResourceDetails;
|
|
2796
|
+
ResourceDetails?: ResourceDetails | undefined;
|
|
2797
2797
|
/**
|
|
2798
2798
|
* <p>Utilization information of the current instance during the lookback period.</p>
|
|
2799
2799
|
* @public
|
|
2800
2800
|
*/
|
|
2801
|
-
ResourceUtilization?: ResourceUtilization;
|
|
2801
|
+
ResourceUtilization?: ResourceUtilization | undefined;
|
|
2802
2802
|
/**
|
|
2803
2803
|
* <p>The number of hours during the lookback period that's covered by reservations.</p>
|
|
2804
2804
|
* @public
|
|
2805
2805
|
*/
|
|
2806
|
-
ReservationCoveredHoursInLookbackPeriod?: string;
|
|
2806
|
+
ReservationCoveredHoursInLookbackPeriod?: string | undefined;
|
|
2807
2807
|
/**
|
|
2808
2808
|
* <p>The number of hours during the lookback period that's covered by Savings Plans.</p>
|
|
2809
2809
|
* @public
|
|
2810
2810
|
*/
|
|
2811
|
-
SavingsPlansCoveredHoursInLookbackPeriod?: string;
|
|
2811
|
+
SavingsPlansCoveredHoursInLookbackPeriod?: string | undefined;
|
|
2812
2812
|
/**
|
|
2813
2813
|
* <p>The number of hours during the lookback period that's billed at On-Demand
|
|
2814
2814
|
* rates.</p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
OnDemandHoursInLookbackPeriod?: string;
|
|
2817
|
+
OnDemandHoursInLookbackPeriod?: string | undefined;
|
|
2818
2818
|
/**
|
|
2819
2819
|
* <p>The total number of hours that the instance ran during the lookback period.</p>
|
|
2820
2820
|
* @public
|
|
2821
2821
|
*/
|
|
2822
|
-
TotalRunningHoursInLookbackPeriod?: string;
|
|
2822
|
+
TotalRunningHoursInLookbackPeriod?: string | undefined;
|
|
2823
2823
|
/**
|
|
2824
2824
|
* <p>The current On-Demand cost of operating this instance on a monthly basis.</p>
|
|
2825
2825
|
* @public
|
|
2826
2826
|
*/
|
|
2827
|
-
MonthlyCost?: string;
|
|
2827
|
+
MonthlyCost?: string | undefined;
|
|
2828
2828
|
/**
|
|
2829
2829
|
* <p>The currency code that Amazon Web Services used to calculate the costs for this
|
|
2830
2830
|
* instance.</p>
|
|
2831
2831
|
* @public
|
|
2832
2832
|
*/
|
|
2833
|
-
CurrencyCode?: string;
|
|
2833
|
+
CurrencyCode?: string | undefined;
|
|
2834
2834
|
}
|
|
2835
2835
|
/**
|
|
2836
2836
|
* @public
|
|
@@ -2882,40 +2882,40 @@ export interface TargetInstance {
|
|
|
2882
2882
|
* <p>The expected cost to operate this instance type on a monthly basis.</p>
|
|
2883
2883
|
* @public
|
|
2884
2884
|
*/
|
|
2885
|
-
EstimatedMonthlyCost?: string;
|
|
2885
|
+
EstimatedMonthlyCost?: string | undefined;
|
|
2886
2886
|
/**
|
|
2887
2887
|
* <p>The estimated savings that result from modification, on a monthly basis.</p>
|
|
2888
2888
|
* @public
|
|
2889
2889
|
*/
|
|
2890
|
-
EstimatedMonthlySavings?: string;
|
|
2890
|
+
EstimatedMonthlySavings?: string | undefined;
|
|
2891
2891
|
/**
|
|
2892
2892
|
* <p>The currency code that Amazon Web Services used to calculate the costs for this
|
|
2893
2893
|
* instance.</p>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
CurrencyCode?: string;
|
|
2896
|
+
CurrencyCode?: string | undefined;
|
|
2897
2897
|
/**
|
|
2898
2898
|
* <p>Determines whether this recommendation is the defaulted Amazon Web Services
|
|
2899
2899
|
* recommendation.</p>
|
|
2900
2900
|
* @public
|
|
2901
2901
|
*/
|
|
2902
|
-
DefaultTargetInstance?: boolean;
|
|
2902
|
+
DefaultTargetInstance?: boolean | undefined;
|
|
2903
2903
|
/**
|
|
2904
2904
|
* <p>Details on the target instance type. </p>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
ResourceDetails?: ResourceDetails;
|
|
2907
|
+
ResourceDetails?: ResourceDetails | undefined;
|
|
2908
2908
|
/**
|
|
2909
2909
|
* <p>The expected utilization metrics for target instance type.</p>
|
|
2910
2910
|
* @public
|
|
2911
2911
|
*/
|
|
2912
|
-
ExpectedResourceUtilization?: ResourceUtilization;
|
|
2912
|
+
ExpectedResourceUtilization?: ResourceUtilization | undefined;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* <p>Explains the actions that you might need to take to successfully migrate your
|
|
2915
2915
|
* workloads from the current instance type to the recommended instance type. </p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
PlatformDifferences?: PlatformDifference[];
|
|
2918
|
+
PlatformDifferences?: PlatformDifference[] | undefined;
|
|
2919
2919
|
}
|
|
2920
2920
|
/**
|
|
2921
2921
|
* <p>Details for the modification recommendation.</p>
|
|
@@ -2927,7 +2927,7 @@ export interface ModifyRecommendationDetail {
|
|
|
2927
2927
|
* recommendation.</p>
|
|
2928
2928
|
* @public
|
|
2929
2929
|
*/
|
|
2930
|
-
TargetInstances?: TargetInstance[];
|
|
2930
|
+
TargetInstances?: TargetInstance[] | undefined;
|
|
2931
2931
|
}
|
|
2932
2932
|
/**
|
|
2933
2933
|
* @public
|
|
@@ -2950,13 +2950,13 @@ export interface TerminateRecommendationDetail {
|
|
|
2950
2950
|
* <p>The estimated savings that result from modification, on a monthly basis.</p>
|
|
2951
2951
|
* @public
|
|
2952
2952
|
*/
|
|
2953
|
-
EstimatedMonthlySavings?: string;
|
|
2953
|
+
EstimatedMonthlySavings?: string | undefined;
|
|
2954
2954
|
/**
|
|
2955
2955
|
* <p>The currency code that Amazon Web Services used to calculate the costs for this
|
|
2956
2956
|
* instance.</p>
|
|
2957
2957
|
* @public
|
|
2958
2958
|
*/
|
|
2959
|
-
CurrencyCode?: string;
|
|
2959
|
+
CurrencyCode?: string | undefined;
|
|
2960
2960
|
}
|
|
2961
2961
|
/**
|
|
2962
2962
|
* <p>Recommendations to rightsize resources.</p>
|
|
@@ -2967,34 +2967,34 @@ export interface RightsizingRecommendation {
|
|
|
2967
2967
|
* <p>The account that this recommendation is for.</p>
|
|
2968
2968
|
* @public
|
|
2969
2969
|
*/
|
|
2970
|
-
AccountId?: string;
|
|
2970
|
+
AccountId?: string | undefined;
|
|
2971
2971
|
/**
|
|
2972
2972
|
* <p>Context
|
|
2973
2973
|
* regarding the current instance.</p>
|
|
2974
2974
|
* @public
|
|
2975
2975
|
*/
|
|
2976
|
-
CurrentInstance?: CurrentInstance;
|
|
2976
|
+
CurrentInstance?: CurrentInstance | undefined;
|
|
2977
2977
|
/**
|
|
2978
2978
|
* <p>A recommendation to either terminate or modify the resource.</p>
|
|
2979
2979
|
* @public
|
|
2980
2980
|
*/
|
|
2981
|
-
RightsizingType?: RightsizingType;
|
|
2981
|
+
RightsizingType?: RightsizingType | undefined;
|
|
2982
2982
|
/**
|
|
2983
2983
|
* <p>The details for the modification recommendations. </p>
|
|
2984
2984
|
* @public
|
|
2985
2985
|
*/
|
|
2986
|
-
ModifyRecommendationDetail?: ModifyRecommendationDetail;
|
|
2986
|
+
ModifyRecommendationDetail?: ModifyRecommendationDetail | undefined;
|
|
2987
2987
|
/**
|
|
2988
2988
|
* <p>The details for termination recommendations.</p>
|
|
2989
2989
|
* @public
|
|
2990
2990
|
*/
|
|
2991
|
-
TerminateRecommendationDetail?: TerminateRecommendationDetail;
|
|
2991
|
+
TerminateRecommendationDetail?: TerminateRecommendationDetail | undefined;
|
|
2992
2992
|
/**
|
|
2993
2993
|
* <p>The list of possible reasons why the recommendation is generated, such as under- or
|
|
2994
2994
|
* over-utilization of specific metrics (for example, CPU, Memory, Network). </p>
|
|
2995
2995
|
* @public
|
|
2996
2996
|
*/
|
|
2997
|
-
FindingReasonCodes?: FindingReasonCode[];
|
|
2997
|
+
FindingReasonCodes?: FindingReasonCode[] | undefined;
|
|
2998
2998
|
}
|
|
2999
2999
|
/**
|
|
3000
3000
|
* <p>The summary of rightsizing recommendations </p>
|
|
@@ -3005,23 +3005,23 @@ export interface RightsizingRecommendationSummary {
|
|
|
3005
3005
|
* <p>The total number of instance recommendations.</p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
TotalRecommendationCount?: string;
|
|
3008
|
+
TotalRecommendationCount?: string | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p>The estimated total savings resulting from modifications, on a monthly basis.</p>
|
|
3011
3011
|
* @public
|
|
3012
3012
|
*/
|
|
3013
|
-
EstimatedTotalMonthlySavingsAmount?: string;
|
|
3013
|
+
EstimatedTotalMonthlySavingsAmount?: string | undefined;
|
|
3014
3014
|
/**
|
|
3015
3015
|
* <p>The currency code that Amazon Web Services used to calculate the savings.</p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
SavingsCurrencyCode?: string;
|
|
3018
|
+
SavingsCurrencyCode?: string | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p> The savings percentage based on the recommended modifications. It's relative to the
|
|
3021
3021
|
* total On-Demand costs that are associated with these instances.</p>
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
SavingsPercentage?: string;
|
|
3024
|
+
SavingsPercentage?: string | undefined;
|
|
3025
3025
|
}
|
|
3026
3026
|
/**
|
|
3027
3027
|
* @public
|
|
@@ -3031,22 +3031,22 @@ export interface GetRightsizingRecommendationResponse {
|
|
|
3031
3031
|
* <p>Information regarding this specific recommendation set.</p>
|
|
3032
3032
|
* @public
|
|
3033
3033
|
*/
|
|
3034
|
-
Metadata?: RightsizingRecommendationMetadata;
|
|
3034
|
+
Metadata?: RightsizingRecommendationMetadata | undefined;
|
|
3035
3035
|
/**
|
|
3036
3036
|
* <p>Summary of this recommendation set.</p>
|
|
3037
3037
|
* @public
|
|
3038
3038
|
*/
|
|
3039
|
-
Summary?: RightsizingRecommendationSummary;
|
|
3039
|
+
Summary?: RightsizingRecommendationSummary | undefined;
|
|
3040
3040
|
/**
|
|
3041
3041
|
* <p>Recommendations to rightsize resources.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
RightsizingRecommendations?: RightsizingRecommendation[];
|
|
3044
|
+
RightsizingRecommendations?: RightsizingRecommendation[] | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>The token to retrieve the next set of results.</p>
|
|
3047
3047
|
* @public
|
|
3048
3048
|
*/
|
|
3049
|
-
NextPageToken?: string;
|
|
3049
|
+
NextPageToken?: string | undefined;
|
|
3050
3050
|
/**
|
|
3051
3051
|
* <p>You can use Configuration to customize recommendations across two attributes. You can
|
|
3052
3052
|
* choose to view recommendations for instances within the same instance families or across
|
|
@@ -3055,7 +3055,7 @@ export interface GetRightsizingRecommendationResponse {
|
|
|
3055
3055
|
* or neither. </p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
Configuration?: RightsizingRecommendationConfiguration;
|
|
3058
|
+
Configuration?: RightsizingRecommendationConfiguration | undefined;
|
|
3059
3059
|
}
|
|
3060
3060
|
/**
|
|
3061
3061
|
* @public
|
|
@@ -3077,29 +3077,29 @@ export interface RecommendationDetailHourlyMetrics {
|
|
|
3077
3077
|
* <p>The period of time that you want the usage and costs for.</p>
|
|
3078
3078
|
* @public
|
|
3079
3079
|
*/
|
|
3080
|
-
StartTime?: string;
|
|
3080
|
+
StartTime?: string | undefined;
|
|
3081
3081
|
/**
|
|
3082
3082
|
* <p>The remaining On-Demand cost estimated to not be covered by the recommended Savings
|
|
3083
3083
|
* Plan, over the length of the lookback period.</p>
|
|
3084
3084
|
* @public
|
|
3085
3085
|
*/
|
|
3086
|
-
EstimatedOnDemandCost?: string;
|
|
3086
|
+
EstimatedOnDemandCost?: string | undefined;
|
|
3087
3087
|
/**
|
|
3088
3088
|
* <p>The current amount of Savings Plans eligible usage that the Savings Plan
|
|
3089
3089
|
* covered.</p>
|
|
3090
3090
|
* @public
|
|
3091
3091
|
*/
|
|
3092
|
-
CurrentCoverage?: string;
|
|
3092
|
+
CurrentCoverage?: string | undefined;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* <p>The estimated coverage amount based on the recommended Savings Plan.</p>
|
|
3095
3095
|
* @public
|
|
3096
3096
|
*/
|
|
3097
|
-
EstimatedCoverage?: string;
|
|
3097
|
+
EstimatedCoverage?: string | undefined;
|
|
3098
3098
|
/**
|
|
3099
3099
|
* <p>The estimated utilization for the recommended Savings Plan.</p>
|
|
3100
3100
|
* @public
|
|
3101
3101
|
*/
|
|
3102
|
-
EstimatedNewCommitmentUtilization?: string;
|
|
3102
|
+
EstimatedNewCommitmentUtilization?: string | undefined;
|
|
3103
3103
|
}
|
|
3104
3104
|
/**
|
|
3105
3105
|
* @public
|
|
@@ -3126,161 +3126,161 @@ export interface RecommendationDetailData {
|
|
|
3126
3126
|
* individual member accounts only.</p>
|
|
3127
3127
|
* @public
|
|
3128
3128
|
*/
|
|
3129
|
-
AccountScope?: AccountScope;
|
|
3129
|
+
AccountScope?: AccountScope | undefined;
|
|
3130
3130
|
/**
|
|
3131
3131
|
* <p>How many days of previous usage that Amazon Web Services considers when making this
|
|
3132
3132
|
* recommendation.</p>
|
|
3133
3133
|
* @public
|
|
3134
3134
|
*/
|
|
3135
|
-
LookbackPeriodInDays?: LookbackPeriodInDays;
|
|
3135
|
+
LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
|
|
3136
3136
|
/**
|
|
3137
3137
|
* <p>The requested Savings Plan recommendation type.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
SavingsPlansType?: SupportedSavingsPlansType;
|
|
3140
|
+
SavingsPlansType?: SupportedSavingsPlansType | undefined;
|
|
3141
3141
|
/**
|
|
3142
3142
|
* <p>The term of the commitment in years.</p>
|
|
3143
3143
|
* @public
|
|
3144
3144
|
*/
|
|
3145
|
-
TermInYears?: TermInYears;
|
|
3145
|
+
TermInYears?: TermInYears | undefined;
|
|
3146
3146
|
/**
|
|
3147
3147
|
* <p>The payment option for the commitment (for example, All Upfront or No Upfront).</p>
|
|
3148
3148
|
* @public
|
|
3149
3149
|
*/
|
|
3150
|
-
PaymentOption?: PaymentOption;
|
|
3150
|
+
PaymentOption?: PaymentOption | undefined;
|
|
3151
3151
|
/**
|
|
3152
3152
|
* <p>The AccountID that the recommendation is generated for.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
AccountId?: string;
|
|
3155
|
+
AccountId?: string | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* <p>The currency code that Amazon Web Services used to generate the recommendation and
|
|
3158
3158
|
* present potential savings.</p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
|
-
CurrencyCode?: string;
|
|
3161
|
+
CurrencyCode?: string | undefined;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>The instance family of the recommended Savings Plan.</p>
|
|
3164
3164
|
* @public
|
|
3165
3165
|
*/
|
|
3166
|
-
InstanceFamily?: string;
|
|
3166
|
+
InstanceFamily?: string | undefined;
|
|
3167
3167
|
/**
|
|
3168
3168
|
* <p>The region the recommendation is generated for.</p>
|
|
3169
3169
|
* @public
|
|
3170
3170
|
*/
|
|
3171
|
-
Region?: string;
|
|
3171
|
+
Region?: string | undefined;
|
|
3172
3172
|
/**
|
|
3173
3173
|
* <p>The unique ID that's used to distinguish Savings Plans from one another.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
OfferingId?: string;
|
|
3176
|
+
OfferingId?: string | undefined;
|
|
3177
3177
|
/**
|
|
3178
3178
|
* <p>The period of time that you want the usage and costs for.</p>
|
|
3179
3179
|
* @public
|
|
3180
3180
|
*/
|
|
3181
|
-
GenerationTimestamp?: string;
|
|
3181
|
+
GenerationTimestamp?: string | undefined;
|
|
3182
3182
|
/**
|
|
3183
3183
|
* <p>The period of time that you want the usage and costs for.</p>
|
|
3184
3184
|
* @public
|
|
3185
3185
|
*/
|
|
3186
|
-
LatestUsageTimestamp?: string;
|
|
3186
|
+
LatestUsageTimestamp?: string | undefined;
|
|
3187
3187
|
/**
|
|
3188
3188
|
* <p>The average value of hourly On-Demand spend over the lookback period of the applicable
|
|
3189
3189
|
* usage type.</p>
|
|
3190
3190
|
* @public
|
|
3191
3191
|
*/
|
|
3192
|
-
CurrentAverageHourlyOnDemandSpend?: string;
|
|
3192
|
+
CurrentAverageHourlyOnDemandSpend?: string | undefined;
|
|
3193
3193
|
/**
|
|
3194
3194
|
* <p>The highest value of hourly On-Demand spend over the lookback period of the applicable
|
|
3195
3195
|
* usage type.</p>
|
|
3196
3196
|
* @public
|
|
3197
3197
|
*/
|
|
3198
|
-
CurrentMaximumHourlyOnDemandSpend?: string;
|
|
3198
|
+
CurrentMaximumHourlyOnDemandSpend?: string | undefined;
|
|
3199
3199
|
/**
|
|
3200
3200
|
* <p>The lowest value of hourly On-Demand spend over the lookback period of the applicable
|
|
3201
3201
|
* usage type.</p>
|
|
3202
3202
|
* @public
|
|
3203
3203
|
*/
|
|
3204
|
-
CurrentMinimumHourlyOnDemandSpend?: string;
|
|
3204
|
+
CurrentMinimumHourlyOnDemandSpend?: string | undefined;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* <p>The estimated utilization of the recommended Savings Plan.</p>
|
|
3207
3207
|
* @public
|
|
3208
3208
|
*/
|
|
3209
|
-
EstimatedAverageUtilization?: string;
|
|
3209
|
+
EstimatedAverageUtilization?: string | undefined;
|
|
3210
3210
|
/**
|
|
3211
3211
|
* <p>The estimated monthly savings amount based on the recommended Savings Plan.</p>
|
|
3212
3212
|
* @public
|
|
3213
3213
|
*/
|
|
3214
|
-
EstimatedMonthlySavingsAmount?: string;
|
|
3214
|
+
EstimatedMonthlySavingsAmount?: string | undefined;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* <p>The remaining On-Demand cost estimated to not be covered by the recommended Savings
|
|
3217
3217
|
* Plan, over the length of the lookback period.</p>
|
|
3218
3218
|
* @public
|
|
3219
3219
|
*/
|
|
3220
|
-
EstimatedOnDemandCost?: string;
|
|
3220
|
+
EstimatedOnDemandCost?: string | undefined;
|
|
3221
3221
|
/**
|
|
3222
3222
|
* <p>The estimated On-Demand costs you expect with no additional commitment, based on your
|
|
3223
3223
|
* usage of the selected time period and the Savings Plan you own.</p>
|
|
3224
3224
|
* @public
|
|
3225
3225
|
*/
|
|
3226
|
-
EstimatedOnDemandCostWithCurrentCommitment?: string;
|
|
3226
|
+
EstimatedOnDemandCostWithCurrentCommitment?: string | undefined;
|
|
3227
3227
|
/**
|
|
3228
3228
|
* <p>The estimated return on investment that's based on the recommended Savings Plan that
|
|
3229
3229
|
* you purchased. This is calculated as estimatedSavingsAmount/estimatedSPCost*100.</p>
|
|
3230
3230
|
* @public
|
|
3231
3231
|
*/
|
|
3232
|
-
EstimatedROI?: string;
|
|
3232
|
+
EstimatedROI?: string | undefined;
|
|
3233
3233
|
/**
|
|
3234
3234
|
* <p>The cost of the recommended Savings Plan over the length of the lookback
|
|
3235
3235
|
* period.</p>
|
|
3236
3236
|
* @public
|
|
3237
3237
|
*/
|
|
3238
|
-
EstimatedSPCost?: string;
|
|
3238
|
+
EstimatedSPCost?: string | undefined;
|
|
3239
3239
|
/**
|
|
3240
3240
|
* <p>The estimated savings amount that's based on the recommended Savings Plan over the
|
|
3241
3241
|
* length of the lookback period.</p>
|
|
3242
3242
|
* @public
|
|
3243
3243
|
*/
|
|
3244
|
-
EstimatedSavingsAmount?: string;
|
|
3244
|
+
EstimatedSavingsAmount?: string | undefined;
|
|
3245
3245
|
/**
|
|
3246
3246
|
* <p>The estimated savings percentage relative to the total cost of applicable On-Demand
|
|
3247
3247
|
* usage over the lookback period.</p>
|
|
3248
3248
|
* @public
|
|
3249
3249
|
*/
|
|
3250
|
-
EstimatedSavingsPercentage?: string;
|
|
3250
|
+
EstimatedSavingsPercentage?: string | undefined;
|
|
3251
3251
|
/**
|
|
3252
3252
|
* <p>The existing hourly commitment for the Savings Plan type.</p>
|
|
3253
3253
|
* @public
|
|
3254
3254
|
*/
|
|
3255
|
-
ExistingHourlyCommitment?: string;
|
|
3255
|
+
ExistingHourlyCommitment?: string | undefined;
|
|
3256
3256
|
/**
|
|
3257
3257
|
* <p>The recommended hourly commitment level for the Savings Plan type and the
|
|
3258
3258
|
* configuration that's based on the usage during the lookback period.</p>
|
|
3259
3259
|
* @public
|
|
3260
3260
|
*/
|
|
3261
|
-
HourlyCommitmentToPurchase?: string;
|
|
3261
|
+
HourlyCommitmentToPurchase?: string | undefined;
|
|
3262
3262
|
/**
|
|
3263
3263
|
* <p>The upfront cost of the recommended Savings Plan, based on the selected payment
|
|
3264
3264
|
* option.</p>
|
|
3265
3265
|
* @public
|
|
3266
3266
|
*/
|
|
3267
|
-
UpfrontCost?: string;
|
|
3267
|
+
UpfrontCost?: string | undefined;
|
|
3268
3268
|
/**
|
|
3269
3269
|
* <p>The average value of hourly coverage over the lookback period.</p>
|
|
3270
3270
|
* @public
|
|
3271
3271
|
*/
|
|
3272
|
-
CurrentAverageCoverage?: string;
|
|
3272
|
+
CurrentAverageCoverage?: string | undefined;
|
|
3273
3273
|
/**
|
|
3274
3274
|
* <p>The estimated coverage of the recommended Savings Plan.</p>
|
|
3275
3275
|
* @public
|
|
3276
3276
|
*/
|
|
3277
|
-
EstimatedAverageCoverage?: string;
|
|
3277
|
+
EstimatedAverageCoverage?: string | undefined;
|
|
3278
3278
|
/**
|
|
3279
3279
|
* <p>The related hourly cost, coverage, and utilization metrics over the lookback
|
|
3280
3280
|
* period.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
MetricsOverLookbackPeriod?: RecommendationDetailHourlyMetrics[];
|
|
3283
|
+
MetricsOverLookbackPeriod?: RecommendationDetailHourlyMetrics[] | undefined;
|
|
3284
3284
|
}
|
|
3285
3285
|
/**
|
|
3286
3286
|
* @public
|
|
@@ -3290,12 +3290,12 @@ export interface GetSavingsPlanPurchaseRecommendationDetailsResponse {
|
|
|
3290
3290
|
* <p>The ID that is associated with the Savings Plan recommendation.</p>
|
|
3291
3291
|
* @public
|
|
3292
3292
|
*/
|
|
3293
|
-
RecommendationDetailId?: string;
|
|
3293
|
+
RecommendationDetailId?: string | undefined;
|
|
3294
3294
|
/**
|
|
3295
3295
|
* <p>Contains detailed information about a specific Savings Plan recommendation.</p>
|
|
3296
3296
|
* @public
|
|
3297
3297
|
*/
|
|
3298
|
-
RecommendationDetailData?: RecommendationDetailData;
|
|
3298
|
+
RecommendationDetailData?: RecommendationDetailData | undefined;
|
|
3299
3299
|
}
|
|
3300
3300
|
/**
|
|
3301
3301
|
* <p>Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and
|
|
@@ -3307,24 +3307,24 @@ export interface SavingsPlansCoverageData {
|
|
|
3307
3307
|
* <p>The amount of your Amazon Web Services usage that's covered by a Savings Plans.</p>
|
|
3308
3308
|
* @public
|
|
3309
3309
|
*/
|
|
3310
|
-
SpendCoveredBySavingsPlans?: string;
|
|
3310
|
+
SpendCoveredBySavingsPlans?: string | undefined;
|
|
3311
3311
|
/**
|
|
3312
3312
|
* <p>The cost of your Amazon Web Services usage at the public On-Demand rate.</p>
|
|
3313
3313
|
* @public
|
|
3314
3314
|
*/
|
|
3315
|
-
OnDemandCost?: string;
|
|
3315
|
+
OnDemandCost?: string | undefined;
|
|
3316
3316
|
/**
|
|
3317
3317
|
* <p>The total cost of your Amazon Web Services usage, regardless of your purchase
|
|
3318
3318
|
* option.</p>
|
|
3319
3319
|
* @public
|
|
3320
3320
|
*/
|
|
3321
|
-
TotalCost?: string;
|
|
3321
|
+
TotalCost?: string | undefined;
|
|
3322
3322
|
/**
|
|
3323
3323
|
* <p>The percentage of your existing Savings Plans covered usage, divided by all of your
|
|
3324
3324
|
* eligible Savings Plans usage in an account (or set of accounts).</p>
|
|
3325
3325
|
* @public
|
|
3326
3326
|
*/
|
|
3327
|
-
CoveragePercentage?: string;
|
|
3327
|
+
CoveragePercentage?: string | undefined;
|
|
3328
3328
|
}
|
|
3329
3329
|
/**
|
|
3330
3330
|
* <p>The amount of Savings Plans eligible usage that's covered by Savings Plans. All
|
|
@@ -3336,17 +3336,17 @@ export interface SavingsPlansCoverage {
|
|
|
3336
3336
|
* <p>The attribute that applies to a specific <code>Dimension</code>.</p>
|
|
3337
3337
|
* @public
|
|
3338
3338
|
*/
|
|
3339
|
-
Attributes?: Record<string, string
|
|
3339
|
+
Attributes?: Record<string, string> | undefined;
|
|
3340
3340
|
/**
|
|
3341
3341
|
* <p>The amount of Savings Plans eligible usage that the Savings Plans covered.</p>
|
|
3342
3342
|
* @public
|
|
3343
3343
|
*/
|
|
3344
|
-
Coverage?: SavingsPlansCoverageData;
|
|
3344
|
+
Coverage?: SavingsPlansCoverageData | undefined;
|
|
3345
3345
|
/**
|
|
3346
3346
|
* <p>The time period of the request. </p>
|
|
3347
3347
|
* @public
|
|
3348
3348
|
*/
|
|
3349
|
-
TimePeriod?: DateInterval;
|
|
3349
|
+
TimePeriod?: DateInterval | undefined;
|
|
3350
3350
|
}
|
|
3351
3351
|
/**
|
|
3352
3352
|
* @public
|
|
@@ -3362,7 +3362,7 @@ export interface GetSavingsPlansCoverageResponse {
|
|
|
3362
3362
|
* the response from a previous call has more results than the maximum page size.</p>
|
|
3363
3363
|
* @public
|
|
3364
3364
|
*/
|
|
3365
|
-
NextToken?: string;
|
|
3365
|
+
NextToken?: string | undefined;
|
|
3366
3366
|
}
|
|
3367
3367
|
/**
|
|
3368
3368
|
* <p>Metadata about your Savings Plans Purchase Recommendations.</p>
|
|
@@ -3373,17 +3373,17 @@ export interface SavingsPlansPurchaseRecommendationMetadata {
|
|
|
3373
3373
|
* <p>The unique identifier for the recommendation set.</p>
|
|
3374
3374
|
* @public
|
|
3375
3375
|
*/
|
|
3376
|
-
RecommendationId?: string;
|
|
3376
|
+
RecommendationId?: string | undefined;
|
|
3377
3377
|
/**
|
|
3378
3378
|
* <p>The timestamp that shows when the recommendations were generated.</p>
|
|
3379
3379
|
* @public
|
|
3380
3380
|
*/
|
|
3381
|
-
GenerationTimestamp?: string;
|
|
3381
|
+
GenerationTimestamp?: string | undefined;
|
|
3382
3382
|
/**
|
|
3383
3383
|
* <p>Additional metadata that might be applicable to the recommendation.</p>
|
|
3384
3384
|
* @public
|
|
3385
3385
|
*/
|
|
3386
|
-
AdditionalMetadata?: string;
|
|
3386
|
+
AdditionalMetadata?: string | undefined;
|
|
3387
3387
|
}
|
|
3388
3388
|
/**
|
|
3389
3389
|
* <p>The attribute details on a specific Savings Plan.</p>
|
|
@@ -3394,17 +3394,17 @@ export interface SavingsPlansDetails {
|
|
|
3394
3394
|
* <p>A collection of Amazon Web Services resources in a geographic area. Each Amazon Web Services Region is isolated and independent of the other Regions.</p>
|
|
3395
3395
|
* @public
|
|
3396
3396
|
*/
|
|
3397
|
-
Region?: string;
|
|
3397
|
+
Region?: string | undefined;
|
|
3398
3398
|
/**
|
|
3399
3399
|
* <p>A group of instance types that Savings Plans applies to.</p>
|
|
3400
3400
|
* @public
|
|
3401
3401
|
*/
|
|
3402
|
-
InstanceFamily?: string;
|
|
3402
|
+
InstanceFamily?: string | undefined;
|
|
3403
3403
|
/**
|
|
3404
3404
|
* <p>The unique ID that's used to distinguish Savings Plans from one another.</p>
|
|
3405
3405
|
* @public
|
|
3406
3406
|
*/
|
|
3407
|
-
OfferingId?: string;
|
|
3407
|
+
OfferingId?: string | undefined;
|
|
3408
3408
|
}
|
|
3409
3409
|
/**
|
|
3410
3410
|
* <p>Details for your recommended Savings Plans.</p>
|
|
@@ -3415,100 +3415,100 @@ export interface SavingsPlansPurchaseRecommendationDetail {
|
|
|
3415
3415
|
* <p>Details for your recommended Savings Plans.</p>
|
|
3416
3416
|
* @public
|
|
3417
3417
|
*/
|
|
3418
|
-
SavingsPlansDetails?: SavingsPlansDetails;
|
|
3418
|
+
SavingsPlansDetails?: SavingsPlansDetails | undefined;
|
|
3419
3419
|
/**
|
|
3420
3420
|
* <p>The <code>AccountID</code> the recommendation is generated for.</p>
|
|
3421
3421
|
* @public
|
|
3422
3422
|
*/
|
|
3423
|
-
AccountId?: string;
|
|
3423
|
+
AccountId?: string | undefined;
|
|
3424
3424
|
/**
|
|
3425
3425
|
* <p>The upfront cost of the recommended Savings Plans, based on the selected payment
|
|
3426
3426
|
* option.</p>
|
|
3427
3427
|
* @public
|
|
3428
3428
|
*/
|
|
3429
|
-
UpfrontCost?: string;
|
|
3429
|
+
UpfrontCost?: string | undefined;
|
|
3430
3430
|
/**
|
|
3431
3431
|
* <p>The estimated return on investment that's based on the recommended Savings Plans that
|
|
3432
3432
|
* you purchased. This is calculated as <code>estimatedSavingsAmount</code>/
|
|
3433
3433
|
* <code>estimatedSPCost</code>*100.</p>
|
|
3434
3434
|
* @public
|
|
3435
3435
|
*/
|
|
3436
|
-
EstimatedROI?: string;
|
|
3436
|
+
EstimatedROI?: string | undefined;
|
|
3437
3437
|
/**
|
|
3438
3438
|
* <p>The currency code that Amazon Web Services used to generate the recommendations and
|
|
3439
3439
|
* present potential savings.</p>
|
|
3440
3440
|
* @public
|
|
3441
3441
|
*/
|
|
3442
|
-
CurrencyCode?: string;
|
|
3442
|
+
CurrencyCode?: string | undefined;
|
|
3443
3443
|
/**
|
|
3444
3444
|
* <p>The cost of the recommended Savings Plans over the length of the lookback
|
|
3445
3445
|
* period.</p>
|
|
3446
3446
|
* @public
|
|
3447
3447
|
*/
|
|
3448
|
-
EstimatedSPCost?: string;
|
|
3448
|
+
EstimatedSPCost?: string | undefined;
|
|
3449
3449
|
/**
|
|
3450
3450
|
* <p>The remaining On-Demand cost estimated to not be covered by the recommended Savings
|
|
3451
3451
|
* Plans, over the length of the lookback period.</p>
|
|
3452
3452
|
* @public
|
|
3453
3453
|
*/
|
|
3454
|
-
EstimatedOnDemandCost?: string;
|
|
3454
|
+
EstimatedOnDemandCost?: string | undefined;
|
|
3455
3455
|
/**
|
|
3456
3456
|
* <p> The estimated On-Demand costs you expect with no additional commitment, based on your
|
|
3457
3457
|
* usage of the selected time period and the Savings Plans you own. </p>
|
|
3458
3458
|
* @public
|
|
3459
3459
|
*/
|
|
3460
|
-
EstimatedOnDemandCostWithCurrentCommitment?: string;
|
|
3460
|
+
EstimatedOnDemandCostWithCurrentCommitment?: string | undefined;
|
|
3461
3461
|
/**
|
|
3462
3462
|
* <p>The estimated savings amount that's based on the recommended Savings Plans over the
|
|
3463
3463
|
* length of the lookback period.</p>
|
|
3464
3464
|
* @public
|
|
3465
3465
|
*/
|
|
3466
|
-
EstimatedSavingsAmount?: string;
|
|
3466
|
+
EstimatedSavingsAmount?: string | undefined;
|
|
3467
3467
|
/**
|
|
3468
3468
|
* <p>The estimated savings percentage relative to the total cost of applicable On-Demand
|
|
3469
3469
|
* usage over the lookback period.</p>
|
|
3470
3470
|
* @public
|
|
3471
3471
|
*/
|
|
3472
|
-
EstimatedSavingsPercentage?: string;
|
|
3472
|
+
EstimatedSavingsPercentage?: string | undefined;
|
|
3473
3473
|
/**
|
|
3474
3474
|
* <p>The recommended hourly commitment level for the Savings Plans type and the
|
|
3475
3475
|
* configuration that's based on the usage during the lookback period.</p>
|
|
3476
3476
|
* @public
|
|
3477
3477
|
*/
|
|
3478
|
-
HourlyCommitmentToPurchase?: string;
|
|
3478
|
+
HourlyCommitmentToPurchase?: string | undefined;
|
|
3479
3479
|
/**
|
|
3480
3480
|
* <p>The estimated utilization of the recommended Savings Plans.</p>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
EstimatedAverageUtilization?: string;
|
|
3483
|
+
EstimatedAverageUtilization?: string | undefined;
|
|
3484
3484
|
/**
|
|
3485
3485
|
* <p>The estimated monthly savings amount based on the recommended Savings Plans.</p>
|
|
3486
3486
|
* @public
|
|
3487
3487
|
*/
|
|
3488
|
-
EstimatedMonthlySavingsAmount?: string;
|
|
3488
|
+
EstimatedMonthlySavingsAmount?: string | undefined;
|
|
3489
3489
|
/**
|
|
3490
3490
|
* <p>The lowest value of hourly On-Demand spend over the lookback period of the applicable
|
|
3491
3491
|
* usage type.</p>
|
|
3492
3492
|
* @public
|
|
3493
3493
|
*/
|
|
3494
|
-
CurrentMinimumHourlyOnDemandSpend?: string;
|
|
3494
|
+
CurrentMinimumHourlyOnDemandSpend?: string | undefined;
|
|
3495
3495
|
/**
|
|
3496
3496
|
* <p>The highest value of hourly On-Demand spend over the lookback period of the applicable
|
|
3497
3497
|
* usage type.</p>
|
|
3498
3498
|
* @public
|
|
3499
3499
|
*/
|
|
3500
|
-
CurrentMaximumHourlyOnDemandSpend?: string;
|
|
3500
|
+
CurrentMaximumHourlyOnDemandSpend?: string | undefined;
|
|
3501
3501
|
/**
|
|
3502
3502
|
* <p>The average value of hourly On-Demand spend over the lookback period of the applicable
|
|
3503
3503
|
* usage type.</p>
|
|
3504
3504
|
* @public
|
|
3505
3505
|
*/
|
|
3506
|
-
CurrentAverageHourlyOnDemandSpend?: string;
|
|
3506
|
+
CurrentAverageHourlyOnDemandSpend?: string | undefined;
|
|
3507
3507
|
/**
|
|
3508
3508
|
* <p>Contains detailed information about a specific Savings Plan recommendation.</p>
|
|
3509
3509
|
* @public
|
|
3510
3510
|
*/
|
|
3511
|
-
RecommendationDetailId?: string;
|
|
3511
|
+
RecommendationDetailId?: string | undefined;
|
|
3512
3512
|
}
|
|
3513
3513
|
/**
|
|
3514
3514
|
* <p>Summary metrics for your Savings Plans Purchase Recommendations.</p>
|
|
@@ -3520,68 +3520,68 @@ export interface SavingsPlansPurchaseRecommendationSummary {
|
|
|
3520
3520
|
* estimated savings.</p>
|
|
3521
3521
|
* @public
|
|
3522
3522
|
*/
|
|
3523
|
-
EstimatedROI?: string;
|
|
3523
|
+
EstimatedROI?: string | undefined;
|
|
3524
3524
|
/**
|
|
3525
3525
|
* <p>The currency code that Amazon Web Services used to generate the recommendations and
|
|
3526
3526
|
* present potential savings.</p>
|
|
3527
3527
|
* @public
|
|
3528
3528
|
*/
|
|
3529
|
-
CurrencyCode?: string;
|
|
3529
|
+
CurrencyCode?: string | undefined;
|
|
3530
3530
|
/**
|
|
3531
3531
|
* <p>The estimated total cost of the usage after purchasing the recommended Savings Plans.
|
|
3532
3532
|
* This is a sum of the cost of Savings Plans during this term, and the remaining On-Demand
|
|
3533
3533
|
* usage.</p>
|
|
3534
3534
|
* @public
|
|
3535
3535
|
*/
|
|
3536
|
-
EstimatedTotalCost?: string;
|
|
3536
|
+
EstimatedTotalCost?: string | undefined;
|
|
3537
3537
|
/**
|
|
3538
3538
|
* <p>The current total on demand spend of the applicable usage types over the lookback
|
|
3539
3539
|
* period.</p>
|
|
3540
3540
|
* @public
|
|
3541
3541
|
*/
|
|
3542
|
-
CurrentOnDemandSpend?: string;
|
|
3542
|
+
CurrentOnDemandSpend?: string | undefined;
|
|
3543
3543
|
/**
|
|
3544
3544
|
* <p>The estimated total savings over the lookback period, based on the purchase of the
|
|
3545
3545
|
* recommended Savings Plans.</p>
|
|
3546
3546
|
* @public
|
|
3547
3547
|
*/
|
|
3548
|
-
EstimatedSavingsAmount?: string;
|
|
3548
|
+
EstimatedSavingsAmount?: string | undefined;
|
|
3549
3549
|
/**
|
|
3550
3550
|
* <p>The aggregate number of Savings Plans recommendations that exist for your
|
|
3551
3551
|
* account.</p>
|
|
3552
3552
|
* @public
|
|
3553
3553
|
*/
|
|
3554
|
-
TotalRecommendationCount?: string;
|
|
3554
|
+
TotalRecommendationCount?: string | undefined;
|
|
3555
3555
|
/**
|
|
3556
3556
|
* <p>The recommended Savings Plans cost on a daily (24 hourly) basis.</p>
|
|
3557
3557
|
* @public
|
|
3558
3558
|
*/
|
|
3559
|
-
DailyCommitmentToPurchase?: string;
|
|
3559
|
+
DailyCommitmentToPurchase?: string | undefined;
|
|
3560
3560
|
/**
|
|
3561
3561
|
* <p>The recommended hourly commitment that's based on the recommendation
|
|
3562
3562
|
* parameters.</p>
|
|
3563
3563
|
* @public
|
|
3564
3564
|
*/
|
|
3565
|
-
HourlyCommitmentToPurchase?: string;
|
|
3565
|
+
HourlyCommitmentToPurchase?: string | undefined;
|
|
3566
3566
|
/**
|
|
3567
3567
|
* <p>The estimated savings relative to the total cost of On-Demand usage, over the lookback
|
|
3568
3568
|
* period. This is calculated as <code>estimatedSavingsAmount</code>/
|
|
3569
3569
|
* <code>CurrentOnDemandSpend</code>*100.</p>
|
|
3570
3570
|
* @public
|
|
3571
3571
|
*/
|
|
3572
|
-
EstimatedSavingsPercentage?: string;
|
|
3572
|
+
EstimatedSavingsPercentage?: string | undefined;
|
|
3573
3573
|
/**
|
|
3574
3574
|
* <p>The estimated monthly savings amount that's based on the recommended Savings Plans
|
|
3575
3575
|
* purchase.</p>
|
|
3576
3576
|
* @public
|
|
3577
3577
|
*/
|
|
3578
|
-
EstimatedMonthlySavingsAmount?: string;
|
|
3578
|
+
EstimatedMonthlySavingsAmount?: string | undefined;
|
|
3579
3579
|
/**
|
|
3580
3580
|
* <p>The estimated On-Demand costs you expect with no additional commitment. It's based on
|
|
3581
3581
|
* your usage of the selected time period and the Savings Plans you own. </p>
|
|
3582
3582
|
* @public
|
|
3583
3583
|
*/
|
|
3584
|
-
EstimatedOnDemandCostWithCurrentCommitment?: string;
|
|
3584
|
+
EstimatedOnDemandCostWithCurrentCommitment?: string | undefined;
|
|
3585
3585
|
}
|
|
3586
3586
|
/**
|
|
3587
3587
|
* <p>Contains your request parameters, Savings Plan Recommendations Summary, and
|
|
@@ -3596,39 +3596,39 @@ export interface SavingsPlansPurchaseRecommendation {
|
|
|
3596
3596
|
* recommendations are calculated for individual member accounts only.</p>
|
|
3597
3597
|
* @public
|
|
3598
3598
|
*/
|
|
3599
|
-
AccountScope?: AccountScope;
|
|
3599
|
+
AccountScope?: AccountScope | undefined;
|
|
3600
3600
|
/**
|
|
3601
3601
|
* <p>The requested Savings Plans recommendation type.</p>
|
|
3602
3602
|
* @public
|
|
3603
3603
|
*/
|
|
3604
|
-
SavingsPlansType?: SupportedSavingsPlansType;
|
|
3604
|
+
SavingsPlansType?: SupportedSavingsPlansType | undefined;
|
|
3605
3605
|
/**
|
|
3606
3606
|
* <p>The Savings Plans recommendation term in years. It's used to generate the
|
|
3607
3607
|
* recommendation.</p>
|
|
3608
3608
|
* @public
|
|
3609
3609
|
*/
|
|
3610
|
-
TermInYears?: TermInYears;
|
|
3610
|
+
TermInYears?: TermInYears | undefined;
|
|
3611
3611
|
/**
|
|
3612
3612
|
* <p>The payment option that's used to generate the recommendation.</p>
|
|
3613
3613
|
* @public
|
|
3614
3614
|
*/
|
|
3615
|
-
PaymentOption?: PaymentOption;
|
|
3615
|
+
PaymentOption?: PaymentOption | undefined;
|
|
3616
3616
|
/**
|
|
3617
3617
|
* <p>The lookback period in days that's used to generate the recommendation.</p>
|
|
3618
3618
|
* @public
|
|
3619
3619
|
*/
|
|
3620
|
-
LookbackPeriodInDays?: LookbackPeriodInDays;
|
|
3620
|
+
LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
|
|
3621
3621
|
/**
|
|
3622
3622
|
* <p>Details for the Savings Plans that we recommend that you purchase to cover existing
|
|
3623
3623
|
* Savings Plans eligible workloads.</p>
|
|
3624
3624
|
* @public
|
|
3625
3625
|
*/
|
|
3626
|
-
SavingsPlansPurchaseRecommendationDetails?: SavingsPlansPurchaseRecommendationDetail[];
|
|
3626
|
+
SavingsPlansPurchaseRecommendationDetails?: SavingsPlansPurchaseRecommendationDetail[] | undefined;
|
|
3627
3627
|
/**
|
|
3628
3628
|
* <p>Summary metrics for your Savings Plans Recommendations. </p>
|
|
3629
3629
|
* @public
|
|
3630
3630
|
*/
|
|
3631
|
-
SavingsPlansPurchaseRecommendationSummary?: SavingsPlansPurchaseRecommendationSummary;
|
|
3631
|
+
SavingsPlansPurchaseRecommendationSummary?: SavingsPlansPurchaseRecommendationSummary | undefined;
|
|
3632
3632
|
}
|
|
3633
3633
|
/**
|
|
3634
3634
|
* @public
|
|
@@ -3638,19 +3638,19 @@ export interface GetSavingsPlansPurchaseRecommendationResponse {
|
|
|
3638
3638
|
* <p>Information that regards this specific recommendation set.</p>
|
|
3639
3639
|
* @public
|
|
3640
3640
|
*/
|
|
3641
|
-
Metadata?: SavingsPlansPurchaseRecommendationMetadata;
|
|
3641
|
+
Metadata?: SavingsPlansPurchaseRecommendationMetadata | undefined;
|
|
3642
3642
|
/**
|
|
3643
3643
|
* <p>Contains your request parameters, Savings Plan Recommendations Summary, and
|
|
3644
3644
|
* Details.</p>
|
|
3645
3645
|
* @public
|
|
3646
3646
|
*/
|
|
3647
|
-
SavingsPlansPurchaseRecommendation?: SavingsPlansPurchaseRecommendation;
|
|
3647
|
+
SavingsPlansPurchaseRecommendation?: SavingsPlansPurchaseRecommendation | undefined;
|
|
3648
3648
|
/**
|
|
3649
3649
|
* <p>The token for the next set of retrievable results. Amazon Web Services provides the token
|
|
3650
3650
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
3651
3651
|
* @public
|
|
3652
3652
|
*/
|
|
3653
|
-
NextPageToken?: string;
|
|
3653
|
+
NextPageToken?: string | undefined;
|
|
3654
3654
|
}
|
|
3655
3655
|
/**
|
|
3656
3656
|
* <p>The amortized amount of Savings Plans purchased in a specific account during a
|
|
@@ -3663,19 +3663,19 @@ export interface SavingsPlansAmortizedCommitment {
|
|
|
3663
3663
|
* <code>Partial</code> or a <code>NoUpfront</code>.</p>
|
|
3664
3664
|
* @public
|
|
3665
3665
|
*/
|
|
3666
|
-
AmortizedRecurringCommitment?: string;
|
|
3666
|
+
AmortizedRecurringCommitment?: string | undefined;
|
|
3667
3667
|
/**
|
|
3668
3668
|
* <p>The amortized amount of your Savings Plans commitment that was purchased with an
|
|
3669
3669
|
* <code>Upfront</code> or <code>PartialUpfront</code> Savings Plans.</p>
|
|
3670
3670
|
* @public
|
|
3671
3671
|
*/
|
|
3672
|
-
AmortizedUpfrontCommitment?: string;
|
|
3672
|
+
AmortizedUpfrontCommitment?: string | undefined;
|
|
3673
3673
|
/**
|
|
3674
3674
|
* <p>The total amortized amount of your Savings Plans commitment, regardless of your
|
|
3675
3675
|
* Savings Plans purchase method. </p>
|
|
3676
3676
|
* @public
|
|
3677
3677
|
*/
|
|
3678
|
-
TotalAmortizedCommitment?: string;
|
|
3678
|
+
TotalAmortizedCommitment?: string | undefined;
|
|
3679
3679
|
}
|
|
3680
3680
|
/**
|
|
3681
3681
|
* <p>The amount of savings that you're accumulating, against the public On-Demand rate of
|
|
@@ -3688,13 +3688,13 @@ export interface SavingsPlansSavings {
|
|
|
3688
3688
|
* Plans, when compared to the On-Demand equivalent of the same usage.</p>
|
|
3689
3689
|
* @public
|
|
3690
3690
|
*/
|
|
3691
|
-
NetSavings?: string;
|
|
3691
|
+
NetSavings?: string | undefined;
|
|
3692
3692
|
/**
|
|
3693
3693
|
* <p>How much the amount that the usage would have cost if it was accrued at the On-Demand
|
|
3694
3694
|
* rate.</p>
|
|
3695
3695
|
* @public
|
|
3696
3696
|
*/
|
|
3697
|
-
OnDemandCostEquivalent?: string;
|
|
3697
|
+
OnDemandCostEquivalent?: string | undefined;
|
|
3698
3698
|
}
|
|
3699
3699
|
/**
|
|
3700
3700
|
* <p>The measurement of how well you're using your existing Savings Plans.</p>
|
|
@@ -3706,25 +3706,25 @@ export interface SavingsPlansUtilization {
|
|
|
3706
3706
|
* set of accounts).</p>
|
|
3707
3707
|
* @public
|
|
3708
3708
|
*/
|
|
3709
|
-
TotalCommitment?: string;
|
|
3709
|
+
TotalCommitment?: string | undefined;
|
|
3710
3710
|
/**
|
|
3711
3711
|
* <p>The amount of your Savings Plans commitment that was consumed from Savings Plans
|
|
3712
3712
|
* eligible usage in a specific period.</p>
|
|
3713
3713
|
* @public
|
|
3714
3714
|
*/
|
|
3715
|
-
UsedCommitment?: string;
|
|
3715
|
+
UsedCommitment?: string | undefined;
|
|
3716
3716
|
/**
|
|
3717
3717
|
* <p>The amount of your Savings Plans commitment that wasn't consumed from Savings Plans
|
|
3718
3718
|
* eligible usage in a specific period.</p>
|
|
3719
3719
|
* @public
|
|
3720
3720
|
*/
|
|
3721
|
-
UnusedCommitment?: string;
|
|
3721
|
+
UnusedCommitment?: string | undefined;
|
|
3722
3722
|
/**
|
|
3723
3723
|
* <p>The amount of <code>UsedCommitment</code> divided by the <code>TotalCommitment</code>
|
|
3724
3724
|
* for your Savings Plans.</p>
|
|
3725
3725
|
* @public
|
|
3726
3726
|
*/
|
|
3727
|
-
UtilizationPercentage?: string;
|
|
3727
|
+
UtilizationPercentage?: string | undefined;
|
|
3728
3728
|
}
|
|
3729
3729
|
/**
|
|
3730
3730
|
* <p>The amount of Savings Plans utilization (in hours).</p>
|
|
@@ -3748,13 +3748,13 @@ export interface SavingsPlansUtilizationByTime {
|
|
|
3748
3748
|
* Savings Plans when considering the utilization rate.</p>
|
|
3749
3749
|
* @public
|
|
3750
3750
|
*/
|
|
3751
|
-
Savings?: SavingsPlansSavings;
|
|
3751
|
+
Savings?: SavingsPlansSavings | undefined;
|
|
3752
3752
|
/**
|
|
3753
3753
|
* <p>The total amortized commitment for a Savings Plans. This includes the sum of the
|
|
3754
3754
|
* upfront and recurring Savings Plans fees.</p>
|
|
3755
3755
|
* @public
|
|
3756
3756
|
*/
|
|
3757
|
-
AmortizedCommitment?: SavingsPlansAmortizedCommitment;
|
|
3757
|
+
AmortizedCommitment?: SavingsPlansAmortizedCommitment | undefined;
|
|
3758
3758
|
}
|
|
3759
3759
|
/**
|
|
3760
3760
|
* <p>The aggregated utilization metrics for your Savings Plans usage.</p>
|
|
@@ -3773,13 +3773,13 @@ export interface SavingsPlansUtilizationAggregates {
|
|
|
3773
3773
|
* Savings Plans when considering the utilization rate.</p>
|
|
3774
3774
|
* @public
|
|
3775
3775
|
*/
|
|
3776
|
-
Savings?: SavingsPlansSavings;
|
|
3776
|
+
Savings?: SavingsPlansSavings | undefined;
|
|
3777
3777
|
/**
|
|
3778
3778
|
* <p>The total amortized commitment for a Savings Plans. This includes the sum of the
|
|
3779
3779
|
* upfront and recurring Savings Plans fees.</p>
|
|
3780
3780
|
* @public
|
|
3781
3781
|
*/
|
|
3782
|
-
AmortizedCommitment?: SavingsPlansAmortizedCommitment;
|
|
3782
|
+
AmortizedCommitment?: SavingsPlansAmortizedCommitment | undefined;
|
|
3783
3783
|
}
|
|
3784
3784
|
/**
|
|
3785
3785
|
* @public
|
|
@@ -3790,7 +3790,7 @@ export interface GetSavingsPlansUtilizationResponse {
|
|
|
3790
3790
|
* date ranges.</p>
|
|
3791
3791
|
* @public
|
|
3792
3792
|
*/
|
|
3793
|
-
SavingsPlansUtilizationsByTime?: SavingsPlansUtilizationByTime[];
|
|
3793
|
+
SavingsPlansUtilizationsByTime?: SavingsPlansUtilizationByTime[] | undefined;
|
|
3794
3794
|
/**
|
|
3795
3795
|
* <p>The total amount of cost/commitment that you used your Savings Plans, regardless of date
|
|
3796
3796
|
* ranges.</p>
|
|
@@ -3823,31 +3823,31 @@ export interface SavingsPlansUtilizationDetail {
|
|
|
3823
3823
|
* <p>The unique Amazon Resource Name (ARN) for a particular Savings Plan.</p>
|
|
3824
3824
|
* @public
|
|
3825
3825
|
*/
|
|
3826
|
-
SavingsPlanArn?: string;
|
|
3826
|
+
SavingsPlanArn?: string | undefined;
|
|
3827
3827
|
/**
|
|
3828
3828
|
* <p>The attribute that applies to a specific <code>Dimension</code>.</p>
|
|
3829
3829
|
* @public
|
|
3830
3830
|
*/
|
|
3831
|
-
Attributes?: Record<string, string
|
|
3831
|
+
Attributes?: Record<string, string> | undefined;
|
|
3832
3832
|
/**
|
|
3833
3833
|
* <p>A ratio of your effectiveness of using existing Savings Plans to apply to workloads
|
|
3834
3834
|
* that are Savings Plans eligible.</p>
|
|
3835
3835
|
* @public
|
|
3836
3836
|
*/
|
|
3837
|
-
Utilization?: SavingsPlansUtilization;
|
|
3837
|
+
Utilization?: SavingsPlansUtilization | undefined;
|
|
3838
3838
|
/**
|
|
3839
3839
|
* <p>The amount saved by using existing Savings Plans. Savings returns both net savings
|
|
3840
3840
|
* from savings plans and also the <code>onDemandCostEquivalent</code> of the Savings Plans
|
|
3841
3841
|
* when considering the utilization rate.</p>
|
|
3842
3842
|
* @public
|
|
3843
3843
|
*/
|
|
3844
|
-
Savings?: SavingsPlansSavings;
|
|
3844
|
+
Savings?: SavingsPlansSavings | undefined;
|
|
3845
3845
|
/**
|
|
3846
3846
|
* <p>The total amortized commitment for a Savings Plans. Includes the sum of the upfront
|
|
3847
3847
|
* and recurring Savings Plans fees.</p>
|
|
3848
3848
|
* @public
|
|
3849
3849
|
*/
|
|
3850
|
-
AmortizedCommitment?: SavingsPlansAmortizedCommitment;
|
|
3850
|
+
AmortizedCommitment?: SavingsPlansAmortizedCommitment | undefined;
|
|
3851
3851
|
}
|
|
3852
3852
|
/**
|
|
3853
3853
|
* @public
|
|
@@ -3863,7 +3863,7 @@ export interface GetSavingsPlansUtilizationDetailsResponse {
|
|
|
3863
3863
|
* <p>The total Savings Plans utilization, regardless of time period.</p>
|
|
3864
3864
|
* @public
|
|
3865
3865
|
*/
|
|
3866
|
-
Total?: SavingsPlansUtilizationAggregates;
|
|
3866
|
+
Total?: SavingsPlansUtilizationAggregates | undefined;
|
|
3867
3867
|
/**
|
|
3868
3868
|
* <p>The time period of the request. </p>
|
|
3869
3869
|
* @public
|
|
@@ -3874,7 +3874,7 @@ export interface GetSavingsPlansUtilizationDetailsResponse {
|
|
|
3874
3874
|
* the response from a previous call has more results than the maximum page size.</p>
|
|
3875
3875
|
* @public
|
|
3876
3876
|
*/
|
|
3877
|
-
NextToken?: string;
|
|
3877
|
+
NextToken?: string | undefined;
|
|
3878
3878
|
}
|
|
3879
3879
|
/**
|
|
3880
3880
|
* @public
|
|
@@ -3885,7 +3885,7 @@ export interface GetTagsResponse {
|
|
|
3885
3885
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
3886
3886
|
* @public
|
|
3887
3887
|
*/
|
|
3888
|
-
NextPageToken?: string;
|
|
3888
|
+
NextPageToken?: string | undefined;
|
|
3889
3889
|
/**
|
|
3890
3890
|
* <p>The tags that match your request.</p>
|
|
3891
3891
|
* @public
|
|
@@ -3910,13 +3910,13 @@ export interface GetUsageForecastResponse {
|
|
|
3910
3910
|
* <p>How much you're forecasted to use over the forecast period.</p>
|
|
3911
3911
|
* @public
|
|
3912
3912
|
*/
|
|
3913
|
-
Total?: MetricValue;
|
|
3913
|
+
Total?: MetricValue | undefined;
|
|
3914
3914
|
/**
|
|
3915
3915
|
* <p>The forecasts for your query, in order. For <code>DAILY</code> forecasts, this is a
|
|
3916
3916
|
* list of days. For <code>MONTHLY</code> forecasts, this is a list of months.</p>
|
|
3917
3917
|
* @public
|
|
3918
3918
|
*/
|
|
3919
|
-
ForecastResultsByTime?: ForecastResult[];
|
|
3919
|
+
ForecastResultsByTime?: ForecastResult[] | undefined;
|
|
3920
3920
|
}
|
|
3921
3921
|
/**
|
|
3922
3922
|
* <p>Cost Explorer was unable to identify the usage unit. Provide
|
|
@@ -3927,7 +3927,7 @@ export interface GetUsageForecastResponse {
|
|
|
3927
3927
|
export declare class UnresolvableUsageUnitException extends __BaseException {
|
|
3928
3928
|
readonly name: "UnresolvableUsageUnitException";
|
|
3929
3929
|
readonly $fault: "client";
|
|
3930
|
-
Message?: string;
|
|
3930
|
+
Message?: string | undefined;
|
|
3931
3931
|
/**
|
|
3932
3932
|
* @internal
|
|
3933
3933
|
*/
|
|
@@ -3943,14 +3943,14 @@ export interface ListCostAllocationTagBackfillHistoryRequest {
|
|
|
3943
3943
|
* </p>
|
|
3944
3944
|
* @public
|
|
3945
3945
|
*/
|
|
3946
|
-
NextToken?: string;
|
|
3946
|
+
NextToken?: string | undefined;
|
|
3947
3947
|
/**
|
|
3948
3948
|
* <p>
|
|
3949
3949
|
* The maximum number of objects that are returned for this request.
|
|
3950
3950
|
* </p>
|
|
3951
3951
|
* @public
|
|
3952
3952
|
*/
|
|
3953
|
-
MaxResults?: number;
|
|
3953
|
+
MaxResults?: number | undefined;
|
|
3954
3954
|
}
|
|
3955
3955
|
/**
|
|
3956
3956
|
* @public
|
|
@@ -3977,35 +3977,35 @@ export interface CostAllocationTagBackfillRequest {
|
|
|
3977
3977
|
* </p>
|
|
3978
3978
|
* @public
|
|
3979
3979
|
*/
|
|
3980
|
-
BackfillFrom?: string;
|
|
3980
|
+
BackfillFrom?: string | undefined;
|
|
3981
3981
|
/**
|
|
3982
3982
|
* <p>
|
|
3983
3983
|
* The time when the backfill was requested.
|
|
3984
3984
|
* </p>
|
|
3985
3985
|
* @public
|
|
3986
3986
|
*/
|
|
3987
|
-
RequestedAt?: string;
|
|
3987
|
+
RequestedAt?: string | undefined;
|
|
3988
3988
|
/**
|
|
3989
3989
|
* <p>
|
|
3990
3990
|
* The backfill completion time.
|
|
3991
3991
|
* </p>
|
|
3992
3992
|
* @public
|
|
3993
3993
|
*/
|
|
3994
|
-
CompletedAt?: string;
|
|
3994
|
+
CompletedAt?: string | undefined;
|
|
3995
3995
|
/**
|
|
3996
3996
|
* <p>
|
|
3997
3997
|
* The status of the cost allocation tag backfill request.
|
|
3998
3998
|
* </p>
|
|
3999
3999
|
* @public
|
|
4000
4000
|
*/
|
|
4001
|
-
BackfillStatus?: CostAllocationTagBackfillStatus;
|
|
4001
|
+
BackfillStatus?: CostAllocationTagBackfillStatus | undefined;
|
|
4002
4002
|
/**
|
|
4003
4003
|
* <p>
|
|
4004
4004
|
* The time when the backfill status was last updated.
|
|
4005
4005
|
* </p>
|
|
4006
4006
|
* @public
|
|
4007
4007
|
*/
|
|
4008
|
-
LastUpdatedAt?: string;
|
|
4008
|
+
LastUpdatedAt?: string | undefined;
|
|
4009
4009
|
}
|
|
4010
4010
|
/**
|
|
4011
4011
|
* @public
|
|
@@ -4017,14 +4017,14 @@ export interface ListCostAllocationTagBackfillHistoryResponse {
|
|
|
4017
4017
|
* </p>
|
|
4018
4018
|
* @public
|
|
4019
4019
|
*/
|
|
4020
|
-
BackfillRequests?: CostAllocationTagBackfillRequest[];
|
|
4020
|
+
BackfillRequests?: CostAllocationTagBackfillRequest[] | undefined;
|
|
4021
4021
|
/**
|
|
4022
4022
|
* <p>
|
|
4023
4023
|
* The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.
|
|
4024
4024
|
* </p>
|
|
4025
4025
|
* @public
|
|
4026
4026
|
*/
|
|
4027
|
-
NextToken?: string;
|
|
4027
|
+
NextToken?: string | undefined;
|
|
4028
4028
|
}
|
|
4029
4029
|
/**
|
|
4030
4030
|
* @public
|
|
@@ -4058,12 +4058,12 @@ export interface ListCostAllocationTagsRequest {
|
|
|
4058
4058
|
* <p>The status of cost allocation tag keys that are returned for this request. </p>
|
|
4059
4059
|
* @public
|
|
4060
4060
|
*/
|
|
4061
|
-
Status?: CostAllocationTagStatus;
|
|
4061
|
+
Status?: CostAllocationTagStatus | undefined;
|
|
4062
4062
|
/**
|
|
4063
4063
|
* <p>The list of cost allocation tag keys that are returned for this request. </p>
|
|
4064
4064
|
* @public
|
|
4065
4065
|
*/
|
|
4066
|
-
TagKeys?: string[];
|
|
4066
|
+
TagKeys?: string[] | undefined;
|
|
4067
4067
|
/**
|
|
4068
4068
|
* <p>The type of <code>CostAllocationTag</code> object that are returned for this request. The
|
|
4069
4069
|
* <code>AWSGenerated</code> type tags are tags that Amazon Web Services defines and applies to
|
|
@@ -4072,19 +4072,19 @@ export interface ListCostAllocationTagsRequest {
|
|
|
4072
4072
|
* </p>
|
|
4073
4073
|
* @public
|
|
4074
4074
|
*/
|
|
4075
|
-
Type?: CostAllocationTagType;
|
|
4075
|
+
Type?: CostAllocationTagType | undefined;
|
|
4076
4076
|
/**
|
|
4077
4077
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
4078
4078
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
4079
4079
|
* @public
|
|
4080
4080
|
*/
|
|
4081
|
-
NextToken?: string;
|
|
4081
|
+
NextToken?: string | undefined;
|
|
4082
4082
|
/**
|
|
4083
4083
|
* <p>The maximum number of objects that are returned for this request. By default, the request
|
|
4084
4084
|
* returns 100 results. </p>
|
|
4085
4085
|
* @public
|
|
4086
4086
|
*/
|
|
4087
|
-
MaxResults?: number;
|
|
4087
|
+
MaxResults?: number | undefined;
|
|
4088
4088
|
}
|
|
4089
4089
|
/**
|
|
4090
4090
|
* <p>The cost allocation tag structure. This includes detailed metadata for the
|
|
@@ -4115,12 +4115,12 @@ export interface CostAllocationTag {
|
|
|
4115
4115
|
* <p>The last date that the tag was either activated or deactivated.</p>
|
|
4116
4116
|
* @public
|
|
4117
4117
|
*/
|
|
4118
|
-
LastUpdatedDate?: string;
|
|
4118
|
+
LastUpdatedDate?: string | undefined;
|
|
4119
4119
|
/**
|
|
4120
4120
|
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
|
|
4121
4121
|
* @public
|
|
4122
4122
|
*/
|
|
4123
|
-
LastUsedDate?: string;
|
|
4123
|
+
LastUsedDate?: string | undefined;
|
|
4124
4124
|
}
|
|
4125
4125
|
/**
|
|
4126
4126
|
* @public
|
|
@@ -4130,13 +4130,13 @@ export interface ListCostAllocationTagsResponse {
|
|
|
4130
4130
|
* <p>A list of cost allocation tags that includes the detailed metadata for each one. </p>
|
|
4131
4131
|
* @public
|
|
4132
4132
|
*/
|
|
4133
|
-
CostAllocationTags?: CostAllocationTag[];
|
|
4133
|
+
CostAllocationTags?: CostAllocationTag[] | undefined;
|
|
4134
4134
|
/**
|
|
4135
4135
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
4136
4136
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
4137
4137
|
* @public
|
|
4138
4138
|
*/
|
|
4139
|
-
NextToken?: string;
|
|
4139
|
+
NextToken?: string | undefined;
|
|
4140
4140
|
}
|
|
4141
4141
|
/**
|
|
4142
4142
|
* @public
|
|
@@ -4146,18 +4146,18 @@ export interface ListCostCategoryDefinitionsRequest {
|
|
|
4146
4146
|
* <p>The date when the Cost Category was effective. </p>
|
|
4147
4147
|
* @public
|
|
4148
4148
|
*/
|
|
4149
|
-
EffectiveOn?: string;
|
|
4149
|
+
EffectiveOn?: string | undefined;
|
|
4150
4150
|
/**
|
|
4151
4151
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
4152
4152
|
* when the response from a previous call has more results than the maximum page size. </p>
|
|
4153
4153
|
* @public
|
|
4154
4154
|
*/
|
|
4155
|
-
NextToken?: string;
|
|
4155
|
+
NextToken?: string | undefined;
|
|
4156
4156
|
/**
|
|
4157
4157
|
* <p>The number of entries a paginated response contains. </p>
|
|
4158
4158
|
* @public
|
|
4159
4159
|
*/
|
|
4160
|
-
MaxResults?: number;
|
|
4160
|
+
MaxResults?: number | undefined;
|
|
4161
4161
|
}
|
|
4162
4162
|
/**
|
|
4163
4163
|
* <p>A reference to a Cost Category containing only enough information to identify the Cost
|
|
@@ -4171,44 +4171,44 @@ export interface CostCategoryReference {
|
|
|
4171
4171
|
* <p>The unique identifier for your Cost Category. </p>
|
|
4172
4172
|
* @public
|
|
4173
4173
|
*/
|
|
4174
|
-
CostCategoryArn?: string;
|
|
4174
|
+
CostCategoryArn?: string | undefined;
|
|
4175
4175
|
/**
|
|
4176
4176
|
* <p>The unique name of the Cost Category.</p>
|
|
4177
4177
|
* @public
|
|
4178
4178
|
*/
|
|
4179
|
-
Name?: string;
|
|
4179
|
+
Name?: string | undefined;
|
|
4180
4180
|
/**
|
|
4181
4181
|
* <p>The Cost Category's effective start date.</p>
|
|
4182
4182
|
* @public
|
|
4183
4183
|
*/
|
|
4184
|
-
EffectiveStart?: string;
|
|
4184
|
+
EffectiveStart?: string | undefined;
|
|
4185
4185
|
/**
|
|
4186
4186
|
* <p>The Cost Category's effective end date.</p>
|
|
4187
4187
|
* @public
|
|
4188
4188
|
*/
|
|
4189
|
-
EffectiveEnd?: string;
|
|
4189
|
+
EffectiveEnd?: string | undefined;
|
|
4190
4190
|
/**
|
|
4191
4191
|
* <p>The number of rules that are associated with a specific Cost Category. </p>
|
|
4192
4192
|
* @public
|
|
4193
4193
|
*/
|
|
4194
|
-
NumberOfRules?: number;
|
|
4194
|
+
NumberOfRules?: number | undefined;
|
|
4195
4195
|
/**
|
|
4196
4196
|
* <p>The list of processing statuses for Cost Management products for a specific cost
|
|
4197
4197
|
* category. </p>
|
|
4198
4198
|
* @public
|
|
4199
4199
|
*/
|
|
4200
|
-
ProcessingStatus?: CostCategoryProcessingStatus[];
|
|
4200
|
+
ProcessingStatus?: CostCategoryProcessingStatus[] | undefined;
|
|
4201
4201
|
/**
|
|
4202
4202
|
* <p>A list of unique cost category values in a specific cost category. </p>
|
|
4203
4203
|
* @public
|
|
4204
4204
|
*/
|
|
4205
|
-
Values?: string[];
|
|
4205
|
+
Values?: string[] | undefined;
|
|
4206
4206
|
/**
|
|
4207
4207
|
* <p>The
|
|
4208
4208
|
* default value for the cost category.</p>
|
|
4209
4209
|
* @public
|
|
4210
4210
|
*/
|
|
4211
|
-
DefaultValue?: string;
|
|
4211
|
+
DefaultValue?: string | undefined;
|
|
4212
4212
|
}
|
|
4213
4213
|
/**
|
|
4214
4214
|
* @public
|
|
@@ -4219,13 +4219,13 @@ export interface ListCostCategoryDefinitionsResponse {
|
|
|
4219
4219
|
* Category. </p>
|
|
4220
4220
|
* @public
|
|
4221
4221
|
*/
|
|
4222
|
-
CostCategoryReferences?: CostCategoryReference[];
|
|
4222
|
+
CostCategoryReferences?: CostCategoryReference[] | undefined;
|
|
4223
4223
|
/**
|
|
4224
4224
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
4225
4225
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
4226
4226
|
* @public
|
|
4227
4227
|
*/
|
|
4228
|
-
NextToken?: string;
|
|
4228
|
+
NextToken?: string | undefined;
|
|
4229
4229
|
}
|
|
4230
4230
|
/**
|
|
4231
4231
|
* @public
|
|
@@ -4248,22 +4248,22 @@ export interface ListSavingsPlansPurchaseRecommendationGenerationRequest {
|
|
|
4248
4248
|
* <p>The status of the recommendation generation.</p>
|
|
4249
4249
|
* @public
|
|
4250
4250
|
*/
|
|
4251
|
-
GenerationStatus?: GenerationStatus;
|
|
4251
|
+
GenerationStatus?: GenerationStatus | undefined;
|
|
4252
4252
|
/**
|
|
4253
4253
|
* <p>The IDs for each specific recommendation.</p>
|
|
4254
4254
|
* @public
|
|
4255
4255
|
*/
|
|
4256
|
-
RecommendationIds?: string[];
|
|
4256
|
+
RecommendationIds?: string[] | undefined;
|
|
4257
4257
|
/**
|
|
4258
4258
|
* <p>The number of recommendations that you want returned in a single response object.</p>
|
|
4259
4259
|
* @public
|
|
4260
4260
|
*/
|
|
4261
|
-
PageSize?: number;
|
|
4261
|
+
PageSize?: number | undefined;
|
|
4262
4262
|
/**
|
|
4263
4263
|
* <p>The token to retrieve the next set of results.</p>
|
|
4264
4264
|
* @public
|
|
4265
4265
|
*/
|
|
4266
|
-
NextPageToken?: string;
|
|
4266
|
+
NextPageToken?: string | undefined;
|
|
4267
4267
|
}
|
|
4268
4268
|
/**
|
|
4269
4269
|
* <p>The summary of the Savings Plans recommendation generation.</p>
|
|
@@ -4274,29 +4274,29 @@ export interface GenerationSummary {
|
|
|
4274
4274
|
* <p>Indicates the ID for this specific recommendation.</p>
|
|
4275
4275
|
* @public
|
|
4276
4276
|
*/
|
|
4277
|
-
RecommendationId?: string;
|
|
4277
|
+
RecommendationId?: string | undefined;
|
|
4278
4278
|
/**
|
|
4279
4279
|
* <p>Indicates whether the recommendation generation succeeded, is processing, or
|
|
4280
4280
|
* failed.</p>
|
|
4281
4281
|
* @public
|
|
4282
4282
|
*/
|
|
4283
|
-
GenerationStatus?: GenerationStatus;
|
|
4283
|
+
GenerationStatus?: GenerationStatus | undefined;
|
|
4284
4284
|
/**
|
|
4285
4285
|
* <p>Indicates the start time of the recommendation generation.</p>
|
|
4286
4286
|
* @public
|
|
4287
4287
|
*/
|
|
4288
|
-
GenerationStartedTime?: string;
|
|
4288
|
+
GenerationStartedTime?: string | undefined;
|
|
4289
4289
|
/**
|
|
4290
4290
|
* <p>Indicates the completion time of the recommendation generation.</p>
|
|
4291
4291
|
* @public
|
|
4292
4292
|
*/
|
|
4293
|
-
GenerationCompletionTime?: string;
|
|
4293
|
+
GenerationCompletionTime?: string | undefined;
|
|
4294
4294
|
/**
|
|
4295
4295
|
* <p>Indicates the estimated time for when the recommendation generation will
|
|
4296
4296
|
* complete.</p>
|
|
4297
4297
|
* @public
|
|
4298
4298
|
*/
|
|
4299
|
-
EstimatedCompletionTime?: string;
|
|
4299
|
+
EstimatedCompletionTime?: string | undefined;
|
|
4300
4300
|
}
|
|
4301
4301
|
/**
|
|
4302
4302
|
* @public
|
|
@@ -4306,12 +4306,12 @@ export interface ListSavingsPlansPurchaseRecommendationGenerationResponse {
|
|
|
4306
4306
|
* <p>The list of historical recommendation generations.</p>
|
|
4307
4307
|
* @public
|
|
4308
4308
|
*/
|
|
4309
|
-
GenerationSummaryList?: GenerationSummary[];
|
|
4309
|
+
GenerationSummaryList?: GenerationSummary[] | undefined;
|
|
4310
4310
|
/**
|
|
4311
4311
|
* <p>The token to retrieve the next set of results.</p>
|
|
4312
4312
|
* @public
|
|
4313
4313
|
*/
|
|
4314
|
-
NextPageToken?: string;
|
|
4314
|
+
NextPageToken?: string | undefined;
|
|
4315
4315
|
}
|
|
4316
4316
|
/**
|
|
4317
4317
|
* @public
|
|
@@ -4332,7 +4332,7 @@ export interface ListTagsForResourceResponse {
|
|
|
4332
4332
|
* <p>A list of tag key value pairs that are associated with the resource. </p>
|
|
4333
4333
|
* @public
|
|
4334
4334
|
*/
|
|
4335
|
-
ResourceTags?: ResourceTag[];
|
|
4335
|
+
ResourceTags?: ResourceTag[] | undefined;
|
|
4336
4336
|
}
|
|
4337
4337
|
/**
|
|
4338
4338
|
* @public
|
|
@@ -4369,7 +4369,7 @@ export interface ProvideAnomalyFeedbackResponse {
|
|
|
4369
4369
|
export declare class BackfillLimitExceededException extends __BaseException {
|
|
4370
4370
|
readonly name: "BackfillLimitExceededException";
|
|
4371
4371
|
readonly $fault: "client";
|
|
4372
|
-
Message?: string;
|
|
4372
|
+
Message?: string | undefined;
|
|
4373
4373
|
/**
|
|
4374
4374
|
* @internal
|
|
4375
4375
|
*/
|
|
@@ -4396,7 +4396,7 @@ export interface StartCostAllocationTagBackfillResponse {
|
|
|
4396
4396
|
* </p>
|
|
4397
4397
|
* @public
|
|
4398
4398
|
*/
|
|
4399
|
-
BackfillRequest?: CostAllocationTagBackfillRequest;
|
|
4399
|
+
BackfillRequest?: CostAllocationTagBackfillRequest | undefined;
|
|
4400
4400
|
}
|
|
4401
4401
|
/**
|
|
4402
4402
|
* <p>A request to generate a recommendation is already in progress.</p>
|
|
@@ -4405,7 +4405,7 @@ export interface StartCostAllocationTagBackfillResponse {
|
|
|
4405
4405
|
export declare class GenerationExistsException extends __BaseException {
|
|
4406
4406
|
readonly name: "GenerationExistsException";
|
|
4407
4407
|
readonly $fault: "client";
|
|
4408
|
-
Message?: string;
|
|
4408
|
+
Message?: string | undefined;
|
|
4409
4409
|
/**
|
|
4410
4410
|
* @internal
|
|
4411
4411
|
*/
|
|
@@ -4424,17 +4424,17 @@ export interface StartSavingsPlansPurchaseRecommendationGenerationResponse {
|
|
|
4424
4424
|
* <p>The ID for this specific recommendation.</p>
|
|
4425
4425
|
* @public
|
|
4426
4426
|
*/
|
|
4427
|
-
RecommendationId?: string;
|
|
4427
|
+
RecommendationId?: string | undefined;
|
|
4428
4428
|
/**
|
|
4429
4429
|
* <p>The start time of the recommendation generation.</p>
|
|
4430
4430
|
* @public
|
|
4431
4431
|
*/
|
|
4432
|
-
GenerationStartedTime?: string;
|
|
4432
|
+
GenerationStartedTime?: string | undefined;
|
|
4433
4433
|
/**
|
|
4434
4434
|
* <p>The estimated time for when the recommendation generation will complete.</p>
|
|
4435
4435
|
* @public
|
|
4436
4436
|
*/
|
|
4437
|
-
EstimatedCompletionTime?: string;
|
|
4437
|
+
EstimatedCompletionTime?: string | undefined;
|
|
4438
4438
|
}
|
|
4439
4439
|
/**
|
|
4440
4440
|
* @public
|
|
@@ -4495,8 +4495,8 @@ export interface TagResourceResponse {
|
|
|
4495
4495
|
export declare class TooManyTagsException extends __BaseException {
|
|
4496
4496
|
readonly name: "TooManyTagsException";
|
|
4497
4497
|
readonly $fault: "client";
|
|
4498
|
-
Message?: string;
|
|
4499
|
-
ResourceName?: string;
|
|
4498
|
+
Message?: string | undefined;
|
|
4499
|
+
ResourceName?: string | undefined;
|
|
4500
4500
|
/**
|
|
4501
4501
|
* @internal
|
|
4502
4502
|
*/
|
|
@@ -4540,7 +4540,7 @@ export interface UpdateAnomalyMonitorRequest {
|
|
|
4540
4540
|
* <p>The new name for the cost anomaly monitor. </p>
|
|
4541
4541
|
* @public
|
|
4542
4542
|
*/
|
|
4543
|
-
MonitorName?: string;
|
|
4543
|
+
MonitorName?: string | undefined;
|
|
4544
4544
|
}
|
|
4545
4545
|
/**
|
|
4546
4546
|
* @public
|
|
@@ -4600,17 +4600,17 @@ export interface UpdateCostAllocationTagsStatusError {
|
|
|
4600
4600
|
* <p>The key for the cost allocation tag. </p>
|
|
4601
4601
|
* @public
|
|
4602
4602
|
*/
|
|
4603
|
-
TagKey?: string;
|
|
4603
|
+
TagKey?: string | undefined;
|
|
4604
4604
|
/**
|
|
4605
4605
|
* <p>An error code representing why the action failed on this entry. </p>
|
|
4606
4606
|
* @public
|
|
4607
4607
|
*/
|
|
4608
|
-
Code?: string;
|
|
4608
|
+
Code?: string | undefined;
|
|
4609
4609
|
/**
|
|
4610
4610
|
* <p>A message explaining why the action failed on this entry. </p>
|
|
4611
4611
|
* @public
|
|
4612
4612
|
*/
|
|
4613
|
-
Message?: string;
|
|
4613
|
+
Message?: string | undefined;
|
|
4614
4614
|
}
|
|
4615
4615
|
/**
|
|
4616
4616
|
* @public
|
|
@@ -4622,7 +4622,7 @@ export interface UpdateCostAllocationTagsStatusResponse {
|
|
|
4622
4622
|
* returns. </p>
|
|
4623
4623
|
* @public
|
|
4624
4624
|
*/
|
|
4625
|
-
Errors?: UpdateCostAllocationTagsStatusError[];
|
|
4625
|
+
Errors?: UpdateCostAllocationTagsStatusError[] | undefined;
|
|
4626
4626
|
}
|
|
4627
4627
|
/**
|
|
4628
4628
|
* @public
|
|
@@ -4632,12 +4632,12 @@ export interface UpdateCostCategoryDefinitionResponse {
|
|
|
4632
4632
|
* <p>The unique identifier for your Cost Category. </p>
|
|
4633
4633
|
* @public
|
|
4634
4634
|
*/
|
|
4635
|
-
CostCategoryArn?: string;
|
|
4635
|
+
CostCategoryArn?: string | undefined;
|
|
4636
4636
|
/**
|
|
4637
4637
|
* <p>The Cost Category's effective start date. It can only be a billing start date (first day of the month).</p>
|
|
4638
4638
|
* @public
|
|
4639
4639
|
*/
|
|
4640
|
-
EffectiveStart?: string;
|
|
4640
|
+
EffectiveStart?: string | undefined;
|
|
4641
4641
|
}
|
|
4642
4642
|
/**
|
|
4643
4643
|
* <p>Use <code>Expression</code> to filter in various Cost Explorer APIs.</p>
|
|
@@ -4769,32 +4769,32 @@ export interface Expression {
|
|
|
4769
4769
|
* <p>Return results that match either <code>Dimension</code> object.</p>
|
|
4770
4770
|
* @public
|
|
4771
4771
|
*/
|
|
4772
|
-
Or?: Expression[];
|
|
4772
|
+
Or?: Expression[] | undefined;
|
|
4773
4773
|
/**
|
|
4774
4774
|
* <p>Return results that match both <code>Dimension</code> objects.</p>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
And?: Expression[];
|
|
4777
|
+
And?: Expression[] | undefined;
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p>Return results that don't match a <code>Dimension</code> object.</p>
|
|
4780
4780
|
* @public
|
|
4781
4781
|
*/
|
|
4782
|
-
Not?: Expression;
|
|
4782
|
+
Not?: Expression | undefined;
|
|
4783
4783
|
/**
|
|
4784
4784
|
* <p>The specific <code>Dimension</code> to use for <code>Expression</code>.</p>
|
|
4785
4785
|
* @public
|
|
4786
4786
|
*/
|
|
4787
|
-
Dimensions?: DimensionValues;
|
|
4787
|
+
Dimensions?: DimensionValues | undefined;
|
|
4788
4788
|
/**
|
|
4789
4789
|
* <p>The specific <code>Tag</code> to use for <code>Expression</code>.</p>
|
|
4790
4790
|
* @public
|
|
4791
4791
|
*/
|
|
4792
|
-
Tags?: TagValues;
|
|
4792
|
+
Tags?: TagValues | undefined;
|
|
4793
4793
|
/**
|
|
4794
4794
|
* <p>The filter that's based on <code>CostCategory</code> values.</p>
|
|
4795
4795
|
* @public
|
|
4796
4796
|
*/
|
|
4797
|
-
CostCategories?: CostCategoryValues;
|
|
4797
|
+
CostCategories?: CostCategoryValues | undefined;
|
|
4798
4798
|
}
|
|
4799
4799
|
/**
|
|
4800
4800
|
* <p>This object continuously inspects your account's cost data for anomalies. It's based
|
|
@@ -4807,7 +4807,7 @@ export interface AnomalyMonitor {
|
|
|
4807
4807
|
* <p>The Amazon Resource Name (ARN) value. </p>
|
|
4808
4808
|
* @public
|
|
4809
4809
|
*/
|
|
4810
|
-
MonitorArn?: string;
|
|
4810
|
+
MonitorArn?: string | undefined;
|
|
4811
4811
|
/**
|
|
4812
4812
|
* <p>The name of the monitor. </p>
|
|
4813
4813
|
* @public
|
|
@@ -4817,17 +4817,17 @@ export interface AnomalyMonitor {
|
|
|
4817
4817
|
* <p>The date when the monitor was created. </p>
|
|
4818
4818
|
* @public
|
|
4819
4819
|
*/
|
|
4820
|
-
CreationDate?: string;
|
|
4820
|
+
CreationDate?: string | undefined;
|
|
4821
4821
|
/**
|
|
4822
4822
|
* <p>The date when the monitor was last updated. </p>
|
|
4823
4823
|
* @public
|
|
4824
4824
|
*/
|
|
4825
|
-
LastUpdatedDate?: string;
|
|
4825
|
+
LastUpdatedDate?: string | undefined;
|
|
4826
4826
|
/**
|
|
4827
4827
|
* <p>The date when the monitor last evaluated for anomalies. </p>
|
|
4828
4828
|
* @public
|
|
4829
4829
|
*/
|
|
4830
|
-
LastEvaluatedDate?: string;
|
|
4830
|
+
LastEvaluatedDate?: string | undefined;
|
|
4831
4831
|
/**
|
|
4832
4832
|
* <p>The possible type values. </p>
|
|
4833
4833
|
* @public
|
|
@@ -4837,7 +4837,7 @@ export interface AnomalyMonitor {
|
|
|
4837
4837
|
* <p>The dimensions to evaluate. </p>
|
|
4838
4838
|
* @public
|
|
4839
4839
|
*/
|
|
4840
|
-
MonitorDimension?: MonitorDimension;
|
|
4840
|
+
MonitorDimension?: MonitorDimension | undefined;
|
|
4841
4841
|
/**
|
|
4842
4842
|
* <p>Use <code>Expression</code> to filter in various Cost Explorer APIs.</p>
|
|
4843
4843
|
* <p>Not all <code>Expression</code> types are supported in each API. Refer to the
|
|
@@ -4963,12 +4963,12 @@ export interface AnomalyMonitor {
|
|
|
4963
4963
|
* </note>
|
|
4964
4964
|
* @public
|
|
4965
4965
|
*/
|
|
4966
|
-
MonitorSpecification?: Expression;
|
|
4966
|
+
MonitorSpecification?: Expression | undefined;
|
|
4967
4967
|
/**
|
|
4968
4968
|
* <p>The value for evaluated dimensions. </p>
|
|
4969
4969
|
* @public
|
|
4970
4970
|
*/
|
|
4971
|
-
DimensionalValueCount?: number;
|
|
4971
|
+
DimensionalValueCount?: number | undefined;
|
|
4972
4972
|
}
|
|
4973
4973
|
/**
|
|
4974
4974
|
* <p>An <code>AnomalySubscription</code> resource (also referred to as an alert
|
|
@@ -4993,12 +4993,12 @@ export interface AnomalySubscription {
|
|
|
4993
4993
|
* <p>The <code>AnomalySubscription</code> Amazon Resource Name (ARN). </p>
|
|
4994
4994
|
* @public
|
|
4995
4995
|
*/
|
|
4996
|
-
SubscriptionArn?: string;
|
|
4996
|
+
SubscriptionArn?: string | undefined;
|
|
4997
4997
|
/**
|
|
4998
4998
|
* <p>Your unique account identifier. </p>
|
|
4999
4999
|
* @public
|
|
5000
5000
|
*/
|
|
5001
|
-
AccountId?: string;
|
|
5001
|
+
AccountId?: string | undefined;
|
|
5002
5002
|
/**
|
|
5003
5003
|
* <p>A list of cost anomaly monitors. </p>
|
|
5004
5004
|
* @public
|
|
@@ -5023,7 +5023,7 @@ export interface AnomalySubscription {
|
|
|
5023
5023
|
* specify both.</p>
|
|
5024
5024
|
* @public
|
|
5025
5025
|
*/
|
|
5026
|
-
Threshold?: number;
|
|
5026
|
+
Threshold?: number | undefined;
|
|
5027
5027
|
/**
|
|
5028
5028
|
* <p>The frequency that anomaly notifications are sent. Notifications are sent either over
|
|
5029
5029
|
* email (for DAILY and WEEKLY frequencies) or SNS (for IMMEDIATE frequency). For more
|
|
@@ -5084,7 +5084,7 @@ export interface AnomalySubscription {
|
|
|
5084
5084
|
* </ul>
|
|
5085
5085
|
* @public
|
|
5086
5086
|
*/
|
|
5087
|
-
ThresholdExpression?: Expression;
|
|
5087
|
+
ThresholdExpression?: Expression | undefined;
|
|
5088
5088
|
}
|
|
5089
5089
|
/**
|
|
5090
5090
|
* <p>Rules are processed in order. If there are multiple rules that match the line item,
|
|
@@ -5097,7 +5097,7 @@ export interface CostCategoryRule {
|
|
|
5097
5097
|
* default value for the cost category.</p>
|
|
5098
5098
|
* @public
|
|
5099
5099
|
*/
|
|
5100
|
-
Value?: string;
|
|
5100
|
+
Value?: string | undefined;
|
|
5101
5101
|
/**
|
|
5102
5102
|
* <p>An <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html">Expression</a>
|
|
5103
5103
|
* object used to categorize costs. This supports dimensions, tags, and nested expressions.
|
|
@@ -5112,13 +5112,13 @@ export interface CostCategoryRule {
|
|
|
5112
5112
|
* Guide</i>.</p>
|
|
5113
5113
|
* @public
|
|
5114
5114
|
*/
|
|
5115
|
-
Rule?: Expression;
|
|
5115
|
+
Rule?: Expression | undefined;
|
|
5116
5116
|
/**
|
|
5117
5117
|
* <p>The value the line item is categorized as if the line item contains the matched
|
|
5118
5118
|
* dimension.</p>
|
|
5119
5119
|
* @public
|
|
5120
5120
|
*/
|
|
5121
|
-
InheritedValue?: CostCategoryInheritedValueDimension;
|
|
5121
|
+
InheritedValue?: CostCategoryInheritedValueDimension | undefined;
|
|
5122
5122
|
/**
|
|
5123
5123
|
* <p>You can define the <code>CostCategoryRule</code> rule type as either
|
|
5124
5124
|
* <code>REGULAR</code> or <code>INHERITED_VALUE</code>. The
|
|
@@ -5130,7 +5130,7 @@ export interface CostCategoryRule {
|
|
|
5130
5130
|
* specify the tag key to use.</p>
|
|
5131
5131
|
* @public
|
|
5132
5132
|
*/
|
|
5133
|
-
Type?: CostCategoryRuleType;
|
|
5133
|
+
Type?: CostCategoryRuleType | undefined;
|
|
5134
5134
|
}
|
|
5135
5135
|
/**
|
|
5136
5136
|
* @public
|
|
@@ -5166,7 +5166,7 @@ export interface GetCostAndUsageRequest {
|
|
|
5166
5166
|
* <code>CASE_SENSITIVE</code>.</p>
|
|
5167
5167
|
* @public
|
|
5168
5168
|
*/
|
|
5169
|
-
Filter?: Expression;
|
|
5169
|
+
Filter?: Expression | undefined;
|
|
5170
5170
|
/**
|
|
5171
5171
|
* <p>Which metrics are returned in the query. For more information about blended and
|
|
5172
5172
|
* unblended rates, see <a href="http://aws.amazon.com/premiumsupport/knowledge-center/blended-rates-intro/">Why does the "blended" annotation
|
|
@@ -5200,13 +5200,13 @@ export interface GetCostAndUsageRequest {
|
|
|
5200
5200
|
* tag values, including empty strings.</p>
|
|
5201
5201
|
* @public
|
|
5202
5202
|
*/
|
|
5203
|
-
GroupBy?: GroupDefinition[];
|
|
5203
|
+
GroupBy?: GroupDefinition[] | undefined;
|
|
5204
5204
|
/**
|
|
5205
5205
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
5206
5206
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
5207
5207
|
* @public
|
|
5208
5208
|
*/
|
|
5209
|
-
NextPageToken?: string;
|
|
5209
|
+
NextPageToken?: string | undefined;
|
|
5210
5210
|
}
|
|
5211
5211
|
/**
|
|
5212
5212
|
* @public
|
|
@@ -5268,19 +5268,19 @@ export interface GetCostAndUsageWithResourcesRequest {
|
|
|
5268
5268
|
* requests.</p>
|
|
5269
5269
|
* @public
|
|
5270
5270
|
*/
|
|
5271
|
-
Metrics?: string[];
|
|
5271
|
+
Metrics?: string[] | undefined;
|
|
5272
5272
|
/**
|
|
5273
5273
|
* <p>You can group Amazon Web Services costs using up to two different groups:
|
|
5274
5274
|
* <code>DIMENSION</code>, <code>TAG</code>, <code>COST_CATEGORY</code>.</p>
|
|
5275
5275
|
* @public
|
|
5276
5276
|
*/
|
|
5277
|
-
GroupBy?: GroupDefinition[];
|
|
5277
|
+
GroupBy?: GroupDefinition[] | undefined;
|
|
5278
5278
|
/**
|
|
5279
5279
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
5280
5280
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
5281
5281
|
* @public
|
|
5282
5282
|
*/
|
|
5283
|
-
NextPageToken?: string;
|
|
5283
|
+
NextPageToken?: string | undefined;
|
|
5284
5284
|
}
|
|
5285
5285
|
/**
|
|
5286
5286
|
* @public
|
|
@@ -5294,7 +5294,7 @@ export interface GetCostCategoriesRequest {
|
|
|
5294
5294
|
* values that match the <code>SearchString</code> pattern.</p>
|
|
5295
5295
|
* @public
|
|
5296
5296
|
*/
|
|
5297
|
-
SearchString?: string;
|
|
5297
|
+
SearchString?: string | undefined;
|
|
5298
5298
|
/**
|
|
5299
5299
|
* <p>The time period of the request. </p>
|
|
5300
5300
|
* @public
|
|
@@ -5304,7 +5304,7 @@ export interface GetCostCategoriesRequest {
|
|
|
5304
5304
|
* <p>The unique name of the Cost Category.</p>
|
|
5305
5305
|
* @public
|
|
5306
5306
|
*/
|
|
5307
|
-
CostCategoryName?: string;
|
|
5307
|
+
CostCategoryName?: string | undefined;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* <p>Use <code>Expression</code> to filter in various Cost Explorer APIs.</p>
|
|
5310
5310
|
* <p>Not all <code>Expression</code> types are supported in each API. Refer to the
|
|
@@ -5430,7 +5430,7 @@ export interface GetCostCategoriesRequest {
|
|
|
5430
5430
|
* </note>
|
|
5431
5431
|
* @public
|
|
5432
5432
|
*/
|
|
5433
|
-
Filter?: Expression;
|
|
5433
|
+
Filter?: Expression | undefined;
|
|
5434
5434
|
/**
|
|
5435
5435
|
* <p>The value that you sort the data by.</p>
|
|
5436
5436
|
* <p>The key represents the cost and usage metrics. The following values are supported:</p>
|
|
@@ -5477,7 +5477,7 @@ export interface GetCostCategoriesRequest {
|
|
|
5477
5477
|
* <code>SearchString</code> key values aren't supported.</p>
|
|
5478
5478
|
* @public
|
|
5479
5479
|
*/
|
|
5480
|
-
SortBy?: SortDefinition[];
|
|
5480
|
+
SortBy?: SortDefinition[] | undefined;
|
|
5481
5481
|
/**
|
|
5482
5482
|
* <p>This field is only used when the <code>SortBy</code> value is provided in the
|
|
5483
5483
|
* request.</p>
|
|
@@ -5487,13 +5487,13 @@ export interface GetCostCategoriesRequest {
|
|
|
5487
5487
|
* <p>For <code>GetCostCategories</code>, MaxResults has an upper quota of 1000.</p>
|
|
5488
5488
|
* @public
|
|
5489
5489
|
*/
|
|
5490
|
-
MaxResults?: number;
|
|
5490
|
+
MaxResults?: number | undefined;
|
|
5491
5491
|
/**
|
|
5492
5492
|
* <p>If the number of objects that are still available for retrieval exceeds the quota, Amazon Web Services returns a NextPageToken value in the response. To retrieve the next batch of
|
|
5493
5493
|
* objects, provide the NextPageToken from the previous call in your next request.</p>
|
|
5494
5494
|
* @public
|
|
5495
5495
|
*/
|
|
5496
|
-
NextPageToken?: string;
|
|
5496
|
+
NextPageToken?: string | undefined;
|
|
5497
5497
|
}
|
|
5498
5498
|
/**
|
|
5499
5499
|
* @public
|
|
@@ -5660,7 +5660,7 @@ export interface GetCostForecastRequest {
|
|
|
5660
5660
|
* </ul>
|
|
5661
5661
|
* @public
|
|
5662
5662
|
*/
|
|
5663
|
-
Filter?: Expression;
|
|
5663
|
+
Filter?: Expression | undefined;
|
|
5664
5664
|
/**
|
|
5665
5665
|
* <p>Cost Explorer always returns the mean forecast as a single point. You can request a
|
|
5666
5666
|
* prediction interval around the mean by specifying a confidence level. The higher the
|
|
@@ -5668,7 +5668,7 @@ export interface GetCostForecastRequest {
|
|
|
5668
5668
|
* prediction interval. Higher confidence levels result in wider prediction intervals.</p>
|
|
5669
5669
|
* @public
|
|
5670
5670
|
*/
|
|
5671
|
-
PredictionIntervalLevel?: number;
|
|
5671
|
+
PredictionIntervalLevel?: number | undefined;
|
|
5672
5672
|
}
|
|
5673
5673
|
/**
|
|
5674
5674
|
* @public
|
|
@@ -5678,7 +5678,7 @@ export interface GetDimensionValuesRequest {
|
|
|
5678
5678
|
* <p>The value that you want to search the filter values for.</p>
|
|
5679
5679
|
* @public
|
|
5680
5680
|
*/
|
|
5681
|
-
SearchString?: string;
|
|
5681
|
+
SearchString?: string | undefined;
|
|
5682
5682
|
/**
|
|
5683
5683
|
* <p>The start date and end date for retrieving the dimension values. The start date is
|
|
5684
5684
|
* inclusive, but the end date is exclusive. For example, if <code>start</code> is
|
|
@@ -5875,7 +5875,7 @@ export interface GetDimensionValuesRequest {
|
|
|
5875
5875
|
* </ul>
|
|
5876
5876
|
* @public
|
|
5877
5877
|
*/
|
|
5878
|
-
Context?: Context;
|
|
5878
|
+
Context?: Context | undefined;
|
|
5879
5879
|
/**
|
|
5880
5880
|
* <p>Use <code>Expression</code> to filter in various Cost Explorer APIs.</p>
|
|
5881
5881
|
* <p>Not all <code>Expression</code> types are supported in each API. Refer to the
|
|
@@ -6001,7 +6001,7 @@ export interface GetDimensionValuesRequest {
|
|
|
6001
6001
|
* </note>
|
|
6002
6002
|
* @public
|
|
6003
6003
|
*/
|
|
6004
|
-
Filter?: Expression;
|
|
6004
|
+
Filter?: Expression | undefined;
|
|
6005
6005
|
/**
|
|
6006
6006
|
* <p>The value that you want to sort the data by.</p>
|
|
6007
6007
|
* <p>The key represents cost and usage metrics. The following values are supported:</p>
|
|
@@ -6049,7 +6049,7 @@ export interface GetDimensionValuesRequest {
|
|
|
6049
6049
|
* <code>NextPageToken</code> and <code>SearchString</code> aren't supported.</p>
|
|
6050
6050
|
* @public
|
|
6051
6051
|
*/
|
|
6052
|
-
SortBy?: SortDefinition[];
|
|
6052
|
+
SortBy?: SortDefinition[] | undefined;
|
|
6053
6053
|
/**
|
|
6054
6054
|
* <p>This field is only used when SortBy is provided in the request. The maximum number of
|
|
6055
6055
|
* objects that are returned for this request. If MaxResults isn't specified with SortBy, the
|
|
@@ -6057,13 +6057,13 @@ export interface GetDimensionValuesRequest {
|
|
|
6057
6057
|
* <p>For <code>GetDimensionValues</code>, MaxResults has an upper limit of 1000.</p>
|
|
6058
6058
|
* @public
|
|
6059
6059
|
*/
|
|
6060
|
-
MaxResults?: number;
|
|
6060
|
+
MaxResults?: number | undefined;
|
|
6061
6061
|
/**
|
|
6062
6062
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
6063
6063
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
6064
6064
|
* @public
|
|
6065
6065
|
*/
|
|
6066
|
-
NextPageToken?: string;
|
|
6066
|
+
NextPageToken?: string | undefined;
|
|
6067
6067
|
}
|
|
6068
6068
|
/**
|
|
6069
6069
|
* <p>You can use the following request parameters to query for how much of your instance
|
|
@@ -6121,7 +6121,7 @@ export interface GetReservationCoverageRequest {
|
|
|
6121
6121
|
* </ul>
|
|
6122
6122
|
* @public
|
|
6123
6123
|
*/
|
|
6124
|
-
GroupBy?: GroupDefinition[];
|
|
6124
|
+
GroupBy?: GroupDefinition[] | undefined;
|
|
6125
6125
|
/**
|
|
6126
6126
|
* <p>The granularity of the Amazon Web Services cost data for the reservation. Valid values
|
|
6127
6127
|
* are <code>MONTHLY</code> and <code>DAILY</code>.</p>
|
|
@@ -6132,7 +6132,7 @@ export interface GetReservationCoverageRequest {
|
|
|
6132
6132
|
* <code>MONTHLY</code> granularities.</p>
|
|
6133
6133
|
* @public
|
|
6134
6134
|
*/
|
|
6135
|
-
Granularity?: Granularity;
|
|
6135
|
+
Granularity?: Granularity | undefined;
|
|
6136
6136
|
/**
|
|
6137
6137
|
* <p>Filters utilization data by dimensions. You can filter by the following
|
|
6138
6138
|
* dimensions:</p>
|
|
@@ -6184,20 +6184,20 @@ export interface GetReservationCoverageRequest {
|
|
|
6184
6184
|
* <p>Cost category is also supported.</p>
|
|
6185
6185
|
* @public
|
|
6186
6186
|
*/
|
|
6187
|
-
Filter?: Expression;
|
|
6187
|
+
Filter?: Expression | undefined;
|
|
6188
6188
|
/**
|
|
6189
6189
|
* <p>The measurement that you want your reservation coverage reported in.</p>
|
|
6190
6190
|
* <p>Valid values are <code>Hour</code>, <code>Unit</code>, and <code>Cost</code>. You can use
|
|
6191
6191
|
* multiple values in a request.</p>
|
|
6192
6192
|
* @public
|
|
6193
6193
|
*/
|
|
6194
|
-
Metrics?: string[];
|
|
6194
|
+
Metrics?: string[] | undefined;
|
|
6195
6195
|
/**
|
|
6196
6196
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
6197
6197
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
6198
6198
|
* @public
|
|
6199
6199
|
*/
|
|
6200
|
-
NextPageToken?: string;
|
|
6200
|
+
NextPageToken?: string | undefined;
|
|
6201
6201
|
/**
|
|
6202
6202
|
* <p>The value by which you want to sort the data.</p>
|
|
6203
6203
|
* <p>The following values are supported for <code>Key</code>:</p>
|
|
@@ -6257,14 +6257,14 @@ export interface GetReservationCoverageRequest {
|
|
|
6257
6257
|
* <code>DESCENDING</code>.</p>
|
|
6258
6258
|
* @public
|
|
6259
6259
|
*/
|
|
6260
|
-
SortBy?: SortDefinition;
|
|
6260
|
+
SortBy?: SortDefinition | undefined;
|
|
6261
6261
|
/**
|
|
6262
6262
|
* <p>The maximum number of objects that you returned for this request. If more objects are
|
|
6263
6263
|
* available, in the response, Amazon Web Services provides a NextPageToken value that you can use
|
|
6264
6264
|
* in a subsequent call to get the next batch of objects.</p>
|
|
6265
6265
|
* @public
|
|
6266
6266
|
*/
|
|
6267
|
-
MaxResults?: number;
|
|
6267
|
+
MaxResults?: number | undefined;
|
|
6268
6268
|
}
|
|
6269
6269
|
/**
|
|
6270
6270
|
* @public
|
|
@@ -6274,7 +6274,7 @@ export interface GetReservationPurchaseRecommendationRequest {
|
|
|
6274
6274
|
* <p>The account ID that's associated with the recommendation. </p>
|
|
6275
6275
|
* @public
|
|
6276
6276
|
*/
|
|
6277
|
-
AccountId?: string;
|
|
6277
|
+
AccountId?: string | undefined;
|
|
6278
6278
|
/**
|
|
6279
6279
|
* <p>The specific service that you want recommendations for.</p>
|
|
6280
6280
|
* @public
|
|
@@ -6405,7 +6405,7 @@ export interface GetReservationPurchaseRecommendationRequest {
|
|
|
6405
6405
|
* </note>
|
|
6406
6406
|
* @public
|
|
6407
6407
|
*/
|
|
6408
|
-
Filter?: Expression;
|
|
6408
|
+
Filter?: Expression | undefined;
|
|
6409
6409
|
/**
|
|
6410
6410
|
* <p>The account scope that you want your recommendations for. Amazon Web Services
|
|
6411
6411
|
* calculates recommendations including the management account and member accounts if the value
|
|
@@ -6413,41 +6413,41 @@ export interface GetReservationPurchaseRecommendationRequest {
|
|
|
6413
6413
|
* calculated for individual member accounts only.</p>
|
|
6414
6414
|
* @public
|
|
6415
6415
|
*/
|
|
6416
|
-
AccountScope?: AccountScope;
|
|
6416
|
+
AccountScope?: AccountScope | undefined;
|
|
6417
6417
|
/**
|
|
6418
6418
|
* <p>The number of previous days that you want Amazon Web Services to consider when it
|
|
6419
6419
|
* calculates your recommendations.</p>
|
|
6420
6420
|
* @public
|
|
6421
6421
|
*/
|
|
6422
|
-
LookbackPeriodInDays?: LookbackPeriodInDays;
|
|
6422
|
+
LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
|
|
6423
6423
|
/**
|
|
6424
6424
|
* <p>The reservation term that you want recommendations for.</p>
|
|
6425
6425
|
* @public
|
|
6426
6426
|
*/
|
|
6427
|
-
TermInYears?: TermInYears;
|
|
6427
|
+
TermInYears?: TermInYears | undefined;
|
|
6428
6428
|
/**
|
|
6429
6429
|
* <p>The reservation purchase option that you want recommendations for.</p>
|
|
6430
6430
|
* @public
|
|
6431
6431
|
*/
|
|
6432
|
-
PaymentOption?: PaymentOption;
|
|
6432
|
+
PaymentOption?: PaymentOption | undefined;
|
|
6433
6433
|
/**
|
|
6434
6434
|
* <p>The hardware specifications for the service instances that you want recommendations
|
|
6435
6435
|
* for, such as standard or convertible Amazon EC2 instances.</p>
|
|
6436
6436
|
* @public
|
|
6437
6437
|
*/
|
|
6438
|
-
ServiceSpecification?: ServiceSpecification;
|
|
6438
|
+
ServiceSpecification?: ServiceSpecification | undefined;
|
|
6439
6439
|
/**
|
|
6440
6440
|
* <p>The number of recommendations that you want returned in a single response
|
|
6441
6441
|
* object.</p>
|
|
6442
6442
|
* @public
|
|
6443
6443
|
*/
|
|
6444
|
-
PageSize?: number;
|
|
6444
|
+
PageSize?: number | undefined;
|
|
6445
6445
|
/**
|
|
6446
6446
|
* <p>The pagination token that indicates the next set of results that you want to
|
|
6447
6447
|
* retrieve.</p>
|
|
6448
6448
|
* @public
|
|
6449
6449
|
*/
|
|
6450
|
-
NextPageToken?: string;
|
|
6450
|
+
NextPageToken?: string | undefined;
|
|
6451
6451
|
}
|
|
6452
6452
|
/**
|
|
6453
6453
|
* @public
|
|
@@ -6466,7 +6466,7 @@ export interface GetReservationUtilizationRequest {
|
|
|
6466
6466
|
* <p>Groups only by <code>SUBSCRIPTION_ID</code>. Metadata is included.</p>
|
|
6467
6467
|
* @public
|
|
6468
6468
|
*/
|
|
6469
|
-
GroupBy?: GroupDefinition[];
|
|
6469
|
+
GroupBy?: GroupDefinition[] | undefined;
|
|
6470
6470
|
/**
|
|
6471
6471
|
* <p>If <code>GroupBy</code> is set, <code>Granularity</code> can't be set. If
|
|
6472
6472
|
* <code>Granularity</code> isn't set, the response object doesn't include
|
|
@@ -6477,7 +6477,7 @@ export interface GetReservationUtilizationRequest {
|
|
|
6477
6477
|
* <code>MONTHLY</code> granularities.</p>
|
|
6478
6478
|
* @public
|
|
6479
6479
|
*/
|
|
6480
|
-
Granularity?: Granularity;
|
|
6480
|
+
Granularity?: Granularity | undefined;
|
|
6481
6481
|
/**
|
|
6482
6482
|
* <p>Filters utilization data by dimensions. You can filter by the following
|
|
6483
6483
|
* dimensions:</p>
|
|
@@ -6523,7 +6523,7 @@ export interface GetReservationUtilizationRequest {
|
|
|
6523
6523
|
* they are OR'd together.</p>
|
|
6524
6524
|
* @public
|
|
6525
6525
|
*/
|
|
6526
|
-
Filter?: Expression;
|
|
6526
|
+
Filter?: Expression | undefined;
|
|
6527
6527
|
/**
|
|
6528
6528
|
* <p>The value that you want to sort the data by.</p>
|
|
6529
6529
|
* <p>The following values are supported for <code>Key</code>:</p>
|
|
@@ -6618,20 +6618,20 @@ export interface GetReservationUtilizationRequest {
|
|
|
6618
6618
|
* <code>DESCENDING</code>.</p>
|
|
6619
6619
|
* @public
|
|
6620
6620
|
*/
|
|
6621
|
-
SortBy?: SortDefinition;
|
|
6621
|
+
SortBy?: SortDefinition | undefined;
|
|
6622
6622
|
/**
|
|
6623
6623
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
6624
6624
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
6625
6625
|
* @public
|
|
6626
6626
|
*/
|
|
6627
|
-
NextPageToken?: string;
|
|
6627
|
+
NextPageToken?: string | undefined;
|
|
6628
6628
|
/**
|
|
6629
6629
|
* <p>The maximum number of objects that you returned for this request. If more objects are
|
|
6630
6630
|
* available, in the response, Amazon Web Services provides a NextPageToken value that you can use
|
|
6631
6631
|
* in a subsequent call to get the next batch of objects.</p>
|
|
6632
6632
|
* @public
|
|
6633
6633
|
*/
|
|
6634
|
-
MaxResults?: number;
|
|
6634
|
+
MaxResults?: number | undefined;
|
|
6635
6635
|
}
|
|
6636
6636
|
/**
|
|
6637
6637
|
* @public
|
|
@@ -6762,7 +6762,7 @@ export interface GetRightsizingRecommendationRequest {
|
|
|
6762
6762
|
* </note>
|
|
6763
6763
|
* @public
|
|
6764
6764
|
*/
|
|
6765
|
-
Filter?: Expression;
|
|
6765
|
+
Filter?: Expression | undefined;
|
|
6766
6766
|
/**
|
|
6767
6767
|
* <p>You can use Configuration to customize recommendations across two attributes. You can
|
|
6768
6768
|
* choose to view recommendations for instances within the same instance families or across
|
|
@@ -6771,7 +6771,7 @@ export interface GetRightsizingRecommendationRequest {
|
|
|
6771
6771
|
* or neither. </p>
|
|
6772
6772
|
* @public
|
|
6773
6773
|
*/
|
|
6774
|
-
Configuration?: RightsizingRecommendationConfiguration;
|
|
6774
|
+
Configuration?: RightsizingRecommendationConfiguration | undefined;
|
|
6775
6775
|
/**
|
|
6776
6776
|
* <p>The specific service that you want recommendations for. The only valid value for
|
|
6777
6777
|
* <code>GetRightsizingRecommendation</code> is "<code>AmazonEC2</code>".</p>
|
|
@@ -6782,13 +6782,13 @@ export interface GetRightsizingRecommendationRequest {
|
|
|
6782
6782
|
* <p>The number of recommendations that you want returned in a single response object.</p>
|
|
6783
6783
|
* @public
|
|
6784
6784
|
*/
|
|
6785
|
-
PageSize?: number;
|
|
6785
|
+
PageSize?: number | undefined;
|
|
6786
6786
|
/**
|
|
6787
6787
|
* <p>The pagination token that indicates the next set of results that you want to
|
|
6788
6788
|
* retrieve.</p>
|
|
6789
6789
|
* @public
|
|
6790
6790
|
*/
|
|
6791
|
-
NextPageToken?: string;
|
|
6791
|
+
NextPageToken?: string | undefined;
|
|
6792
6792
|
}
|
|
6793
6793
|
/**
|
|
6794
6794
|
* @public
|
|
@@ -6806,7 +6806,7 @@ export interface GetSavingsPlansCoverageRequest {
|
|
|
6806
6806
|
* <code>REGION</code>, or <code>SERVICE</code>.</p>
|
|
6807
6807
|
* @public
|
|
6808
6808
|
*/
|
|
6809
|
-
GroupBy?: GroupDefinition[];
|
|
6809
|
+
GroupBy?: GroupDefinition[] | undefined;
|
|
6810
6810
|
/**
|
|
6811
6811
|
* <p>The granularity of the Amazon Web Services cost data for your Savings Plans.
|
|
6812
6812
|
* <code>Granularity</code> can't be set if <code>GroupBy</code> is set.</p>
|
|
@@ -6814,7 +6814,7 @@ export interface GetSavingsPlansCoverageRequest {
|
|
|
6814
6814
|
* <code>MONTHLY</code> granularities.</p>
|
|
6815
6815
|
* @public
|
|
6816
6816
|
*/
|
|
6817
|
-
Granularity?: Granularity;
|
|
6817
|
+
Granularity?: Granularity | undefined;
|
|
6818
6818
|
/**
|
|
6819
6819
|
* <p>Filters Savings Plans coverage data by dimensions. You can filter data for Savings Plans
|
|
6820
6820
|
* usage with the following dimensions:</p>
|
|
@@ -6847,25 +6847,25 @@ export interface GetSavingsPlansCoverageRequest {
|
|
|
6847
6847
|
* <p>Cost category is also supported.</p>
|
|
6848
6848
|
* @public
|
|
6849
6849
|
*/
|
|
6850
|
-
Filter?: Expression;
|
|
6850
|
+
Filter?: Expression | undefined;
|
|
6851
6851
|
/**
|
|
6852
6852
|
* <p>The measurement that you want your Savings Plans coverage reported in. The only valid
|
|
6853
6853
|
* value is <code>SpendCoveredBySavingsPlans</code>.</p>
|
|
6854
6854
|
* @public
|
|
6855
6855
|
*/
|
|
6856
|
-
Metrics?: string[];
|
|
6856
|
+
Metrics?: string[] | undefined;
|
|
6857
6857
|
/**
|
|
6858
6858
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
6859
6859
|
* the response from a previous call has more results than the maximum page size.</p>
|
|
6860
6860
|
* @public
|
|
6861
6861
|
*/
|
|
6862
|
-
NextToken?: string;
|
|
6862
|
+
NextToken?: string | undefined;
|
|
6863
6863
|
/**
|
|
6864
6864
|
* <p>The number of items to be returned in a response. The default is <code>20</code>, with a
|
|
6865
6865
|
* minimum value of <code>1</code>.</p>
|
|
6866
6866
|
* @public
|
|
6867
6867
|
*/
|
|
6868
|
-
MaxResults?: number;
|
|
6868
|
+
MaxResults?: number | undefined;
|
|
6869
6869
|
/**
|
|
6870
6870
|
* <p>The value that you want to sort the data by.</p>
|
|
6871
6871
|
* <p>The following values are supported for <code>Key</code>:</p>
|
|
@@ -6910,7 +6910,7 @@ export interface GetSavingsPlansCoverageRequest {
|
|
|
6910
6910
|
* <code>DESCENDING</code>.</p>
|
|
6911
6911
|
* @public
|
|
6912
6912
|
*/
|
|
6913
|
-
SortBy?: SortDefinition;
|
|
6913
|
+
SortBy?: SortDefinition | undefined;
|
|
6914
6914
|
}
|
|
6915
6915
|
/**
|
|
6916
6916
|
* @public
|
|
@@ -6938,18 +6938,18 @@ export interface GetSavingsPlansPurchaseRecommendationRequest {
|
|
|
6938
6938
|
* individual member accounts only.</p>
|
|
6939
6939
|
* @public
|
|
6940
6940
|
*/
|
|
6941
|
-
AccountScope?: AccountScope;
|
|
6941
|
+
AccountScope?: AccountScope | undefined;
|
|
6942
6942
|
/**
|
|
6943
6943
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
6944
6944
|
* the response from a previous call has more results than the maximum page size.</p>
|
|
6945
6945
|
* @public
|
|
6946
6946
|
*/
|
|
6947
|
-
NextPageToken?: string;
|
|
6947
|
+
NextPageToken?: string | undefined;
|
|
6948
6948
|
/**
|
|
6949
6949
|
* <p>The number of recommendations that you want returned in a single response object.</p>
|
|
6950
6950
|
* @public
|
|
6951
6951
|
*/
|
|
6952
|
-
PageSize?: number;
|
|
6952
|
+
PageSize?: number | undefined;
|
|
6953
6953
|
/**
|
|
6954
6954
|
* <p>The lookback period that's used to generate the recommendation.</p>
|
|
6955
6955
|
* @public
|
|
@@ -6968,7 +6968,7 @@ export interface GetSavingsPlansPurchaseRecommendationRequest {
|
|
|
6968
6968
|
* <code>OR</code> operators are not supported.</p>
|
|
6969
6969
|
* @public
|
|
6970
6970
|
*/
|
|
6971
|
-
Filter?: Expression;
|
|
6971
|
+
Filter?: Expression | undefined;
|
|
6972
6972
|
}
|
|
6973
6973
|
/**
|
|
6974
6974
|
* @public
|
|
@@ -7016,24 +7016,24 @@ export interface GetSavingsPlansUtilizationDetailsRequest {
|
|
|
7016
7016
|
* as the other operations, but only <code>AND</code> is supported among each dimension.</p>
|
|
7017
7017
|
* @public
|
|
7018
7018
|
*/
|
|
7019
|
-
Filter?: Expression;
|
|
7019
|
+
Filter?: Expression | undefined;
|
|
7020
7020
|
/**
|
|
7021
7021
|
* <p>The data type.</p>
|
|
7022
7022
|
* @public
|
|
7023
7023
|
*/
|
|
7024
|
-
DataType?: SavingsPlansDataType[];
|
|
7024
|
+
DataType?: SavingsPlansDataType[] | undefined;
|
|
7025
7025
|
/**
|
|
7026
7026
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token when
|
|
7027
7027
|
* the response from a previous call has more results than the maximum page size.</p>
|
|
7028
7028
|
* @public
|
|
7029
7029
|
*/
|
|
7030
|
-
NextToken?: string;
|
|
7030
|
+
NextToken?: string | undefined;
|
|
7031
7031
|
/**
|
|
7032
7032
|
* <p>The number of items to be returned in a response. The default is <code>20</code>, with a
|
|
7033
7033
|
* minimum value of <code>1</code>.</p>
|
|
7034
7034
|
* @public
|
|
7035
7035
|
*/
|
|
7036
|
-
MaxResults?: number;
|
|
7036
|
+
MaxResults?: number | undefined;
|
|
7037
7037
|
/**
|
|
7038
7038
|
* <p>The value that you want to sort the data by.</p>
|
|
7039
7039
|
* <p>The following values are supported for <code>Key</code>:</p>
|
|
@@ -7078,7 +7078,7 @@ export interface GetSavingsPlansUtilizationDetailsRequest {
|
|
|
7078
7078
|
* <code>DESCENDING</code>.</p>
|
|
7079
7079
|
* @public
|
|
7080
7080
|
*/
|
|
7081
|
-
SortBy?: SortDefinition;
|
|
7081
|
+
SortBy?: SortDefinition | undefined;
|
|
7082
7082
|
}
|
|
7083
7083
|
/**
|
|
7084
7084
|
* @public
|
|
@@ -7098,7 +7098,7 @@ export interface GetSavingsPlansUtilizationRequest {
|
|
|
7098
7098
|
* <code>MONTHLY</code> granularities.</p>
|
|
7099
7099
|
* @public
|
|
7100
7100
|
*/
|
|
7101
|
-
Granularity?: Granularity;
|
|
7101
|
+
Granularity?: Granularity | undefined;
|
|
7102
7102
|
/**
|
|
7103
7103
|
* <p>Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You
|
|
7104
7104
|
* can filter data with the following dimensions:</p>
|
|
@@ -7139,7 +7139,7 @@ export interface GetSavingsPlansUtilizationRequest {
|
|
|
7139
7139
|
* as the other operations, but only <code>AND</code> is supported among each dimension.</p>
|
|
7140
7140
|
* @public
|
|
7141
7141
|
*/
|
|
7142
|
-
Filter?: Expression;
|
|
7142
|
+
Filter?: Expression | undefined;
|
|
7143
7143
|
/**
|
|
7144
7144
|
* <p>The value that you want to sort the data by.</p>
|
|
7145
7145
|
* <p>The following values are supported for <code>Key</code>:</p>
|
|
@@ -7174,7 +7174,7 @@ export interface GetSavingsPlansUtilizationRequest {
|
|
|
7174
7174
|
* <code>DESCENDING</code>.</p>
|
|
7175
7175
|
* @public
|
|
7176
7176
|
*/
|
|
7177
|
-
SortBy?: SortDefinition;
|
|
7177
|
+
SortBy?: SortDefinition | undefined;
|
|
7178
7178
|
}
|
|
7179
7179
|
/**
|
|
7180
7180
|
* @public
|
|
@@ -7184,7 +7184,7 @@ export interface GetTagsRequest {
|
|
|
7184
7184
|
* <p>The value that you want to search for.</p>
|
|
7185
7185
|
* @public
|
|
7186
7186
|
*/
|
|
7187
|
-
SearchString?: string;
|
|
7187
|
+
SearchString?: string | undefined;
|
|
7188
7188
|
/**
|
|
7189
7189
|
* <p>The start and end dates for retrieving the dimension values. The start date is
|
|
7190
7190
|
* inclusive, but the end date is exclusive. For example, if <code>start</code> is
|
|
@@ -7198,7 +7198,7 @@ export interface GetTagsRequest {
|
|
|
7198
7198
|
* <p>The key of the tag that you want to return values for.</p>
|
|
7199
7199
|
* @public
|
|
7200
7200
|
*/
|
|
7201
|
-
TagKey?: string;
|
|
7201
|
+
TagKey?: string | undefined;
|
|
7202
7202
|
/**
|
|
7203
7203
|
* <p>Use <code>Expression</code> to filter in various Cost Explorer APIs.</p>
|
|
7204
7204
|
* <p>Not all <code>Expression</code> types are supported in each API. Refer to the
|
|
@@ -7324,7 +7324,7 @@ export interface GetTagsRequest {
|
|
|
7324
7324
|
* </note>
|
|
7325
7325
|
* @public
|
|
7326
7326
|
*/
|
|
7327
|
-
Filter?: Expression;
|
|
7327
|
+
Filter?: Expression | undefined;
|
|
7328
7328
|
/**
|
|
7329
7329
|
* <p>The value that you want to sort the data by.</p>
|
|
7330
7330
|
* <p>The key represents cost and usage metrics. The following values are supported:</p>
|
|
@@ -7371,7 +7371,7 @@ export interface GetTagsRequest {
|
|
|
7371
7371
|
* aren't supported.</p>
|
|
7372
7372
|
* @public
|
|
7373
7373
|
*/
|
|
7374
|
-
SortBy?: SortDefinition[];
|
|
7374
|
+
SortBy?: SortDefinition[] | undefined;
|
|
7375
7375
|
/**
|
|
7376
7376
|
* <p>This field is only used when SortBy is provided in the request. The maximum number of
|
|
7377
7377
|
* objects that are returned for this request. If MaxResults isn't specified with SortBy, the
|
|
@@ -7379,13 +7379,13 @@ export interface GetTagsRequest {
|
|
|
7379
7379
|
* <p>For <code>GetTags</code>, MaxResults has an upper quota of 1000.</p>
|
|
7380
7380
|
* @public
|
|
7381
7381
|
*/
|
|
7382
|
-
MaxResults?: number;
|
|
7382
|
+
MaxResults?: number | undefined;
|
|
7383
7383
|
/**
|
|
7384
7384
|
* <p>The token to retrieve the next set of results. Amazon Web Services provides the token
|
|
7385
7385
|
* when the response from a previous call has more results than the maximum page size.</p>
|
|
7386
7386
|
* @public
|
|
7387
7387
|
*/
|
|
7388
|
-
NextPageToken?: string;
|
|
7388
|
+
NextPageToken?: string | undefined;
|
|
7389
7389
|
}
|
|
7390
7390
|
/**
|
|
7391
7391
|
* @public
|
|
@@ -7546,7 +7546,7 @@ export interface GetUsageForecastRequest {
|
|
|
7546
7546
|
* </ul>
|
|
7547
7547
|
* @public
|
|
7548
7548
|
*/
|
|
7549
|
-
Filter?: Expression;
|
|
7549
|
+
Filter?: Expression | undefined;
|
|
7550
7550
|
/**
|
|
7551
7551
|
* <p>Amazon Web Services Cost Explorer always returns the mean forecast as a single point.
|
|
7552
7552
|
* You can request a prediction interval around the mean by specifying a confidence level. The
|
|
@@ -7555,7 +7555,7 @@ export interface GetUsageForecastRequest {
|
|
|
7555
7555
|
* intervals.</p>
|
|
7556
7556
|
* @public
|
|
7557
7557
|
*/
|
|
7558
|
-
PredictionIntervalLevel?: number;
|
|
7558
|
+
PredictionIntervalLevel?: number | undefined;
|
|
7559
7559
|
}
|
|
7560
7560
|
/**
|
|
7561
7561
|
* @public
|
|
@@ -7576,27 +7576,27 @@ export interface UpdateAnomalySubscriptionRequest {
|
|
|
7576
7576
|
* <p>You can specify either Threshold or ThresholdExpression, but not both.</p>
|
|
7577
7577
|
* @public
|
|
7578
7578
|
*/
|
|
7579
|
-
Threshold?: number;
|
|
7579
|
+
Threshold?: number | undefined;
|
|
7580
7580
|
/**
|
|
7581
7581
|
* <p>The update to the frequency value that subscribers receive notifications. </p>
|
|
7582
7582
|
* @public
|
|
7583
7583
|
*/
|
|
7584
|
-
Frequency?: AnomalySubscriptionFrequency;
|
|
7584
|
+
Frequency?: AnomalySubscriptionFrequency | undefined;
|
|
7585
7585
|
/**
|
|
7586
7586
|
* <p>A list of cost anomaly monitor ARNs. </p>
|
|
7587
7587
|
* @public
|
|
7588
7588
|
*/
|
|
7589
|
-
MonitorArnList?: string[];
|
|
7589
|
+
MonitorArnList?: string[] | undefined;
|
|
7590
7590
|
/**
|
|
7591
7591
|
* <p>The update to the subscriber list. </p>
|
|
7592
7592
|
* @public
|
|
7593
7593
|
*/
|
|
7594
|
-
Subscribers?: Subscriber[];
|
|
7594
|
+
Subscribers?: Subscriber[] | undefined;
|
|
7595
7595
|
/**
|
|
7596
7596
|
* <p>The new name of the subscription. </p>
|
|
7597
7597
|
* @public
|
|
7598
7598
|
*/
|
|
7599
|
-
SubscriptionName?: string;
|
|
7599
|
+
SubscriptionName?: string | undefined;
|
|
7600
7600
|
/**
|
|
7601
7601
|
* <p>The update to the <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html">Expression</a> object
|
|
7602
7602
|
* used to specify the anomalies that you want to generate alerts for. This supports dimensions
|
|
@@ -7638,7 +7638,7 @@ export interface UpdateAnomalySubscriptionRequest {
|
|
|
7638
7638
|
* </ul>
|
|
7639
7639
|
* @public
|
|
7640
7640
|
*/
|
|
7641
|
-
ThresholdExpression?: Expression;
|
|
7641
|
+
ThresholdExpression?: Expression | undefined;
|
|
7642
7642
|
}
|
|
7643
7643
|
/**
|
|
7644
7644
|
* @public
|
|
@@ -7685,7 +7685,7 @@ export interface CreateAnomalyMonitorRequest {
|
|
|
7685
7685
|
* </ul>
|
|
7686
7686
|
* @public
|
|
7687
7687
|
*/
|
|
7688
|
-
ResourceTags?: ResourceTag[];
|
|
7688
|
+
ResourceTags?: ResourceTag[] | undefined;
|
|
7689
7689
|
}
|
|
7690
7690
|
/**
|
|
7691
7691
|
* @public
|
|
@@ -7732,7 +7732,7 @@ export interface CreateAnomalySubscriptionRequest {
|
|
|
7732
7732
|
* </ul>
|
|
7733
7733
|
* @public
|
|
7734
7734
|
*/
|
|
7735
|
-
ResourceTags?: ResourceTag[];
|
|
7735
|
+
ResourceTags?: ResourceTag[] | undefined;
|
|
7736
7736
|
}
|
|
7737
7737
|
/**
|
|
7738
7738
|
* <p>The structure of Cost Categories. This includes detailed metadata and the set of rules
|
|
@@ -7754,7 +7754,7 @@ export interface CostCategory {
|
|
|
7754
7754
|
* <p>The effective end date of your Cost Category.</p>
|
|
7755
7755
|
* @public
|
|
7756
7756
|
*/
|
|
7757
|
-
EffectiveEnd?: string;
|
|
7757
|
+
EffectiveEnd?: string | undefined;
|
|
7758
7758
|
/**
|
|
7759
7759
|
* <p>The unique name of the Cost Category.</p>
|
|
7760
7760
|
* @public
|
|
@@ -7777,19 +7777,19 @@ export interface CostCategory {
|
|
|
7777
7777
|
* Category values. </p>
|
|
7778
7778
|
* @public
|
|
7779
7779
|
*/
|
|
7780
|
-
SplitChargeRules?: CostCategorySplitChargeRule[];
|
|
7780
|
+
SplitChargeRules?: CostCategorySplitChargeRule[] | undefined;
|
|
7781
7781
|
/**
|
|
7782
7782
|
* <p>The list of processing statuses for Cost Management products for a specific cost
|
|
7783
7783
|
* category. </p>
|
|
7784
7784
|
* @public
|
|
7785
7785
|
*/
|
|
7786
|
-
ProcessingStatus?: CostCategoryProcessingStatus[];
|
|
7786
|
+
ProcessingStatus?: CostCategoryProcessingStatus[] | undefined;
|
|
7787
7787
|
/**
|
|
7788
7788
|
* <p>The
|
|
7789
7789
|
* default value for the cost category.</p>
|
|
7790
7790
|
* @public
|
|
7791
7791
|
*/
|
|
7792
|
-
DefaultValue?: string;
|
|
7792
|
+
DefaultValue?: string | undefined;
|
|
7793
7793
|
}
|
|
7794
7794
|
/**
|
|
7795
7795
|
* @public
|
|
@@ -7804,7 +7804,7 @@ export interface CreateCostCategoryDefinitionRequest {
|
|
|
7804
7804
|
* <p>The Cost Category's effective start date. It can only be a billing start date (first day of the month). If the date isn't provided, it's the first day of the current month. Dates can't be before the previous twelve months, or in the future.</p>
|
|
7805
7805
|
* @public
|
|
7806
7806
|
*/
|
|
7807
|
-
EffectiveStart?: string;
|
|
7807
|
+
EffectiveStart?: string | undefined;
|
|
7808
7808
|
/**
|
|
7809
7809
|
* <p>The rule schema version in this particular Cost Category.</p>
|
|
7810
7810
|
* @public
|
|
@@ -7820,13 +7820,13 @@ export interface CreateCostCategoryDefinitionRequest {
|
|
|
7820
7820
|
* default value for the cost category.</p>
|
|
7821
7821
|
* @public
|
|
7822
7822
|
*/
|
|
7823
|
-
DefaultValue?: string;
|
|
7823
|
+
DefaultValue?: string | undefined;
|
|
7824
7824
|
/**
|
|
7825
7825
|
* <p> The split charge rules used to allocate your charges between your Cost Category values.
|
|
7826
7826
|
* </p>
|
|
7827
7827
|
* @public
|
|
7828
7828
|
*/
|
|
7829
|
-
SplitChargeRules?: CostCategorySplitChargeRule[];
|
|
7829
|
+
SplitChargeRules?: CostCategorySplitChargeRule[] | undefined;
|
|
7830
7830
|
/**
|
|
7831
7831
|
* <p>An optional list of tags to associate with the specified <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_CostCategory.html">
|
|
7832
7832
|
* <code>CostCategory</code>
|
|
@@ -7863,7 +7863,7 @@ export interface CreateCostCategoryDefinitionRequest {
|
|
|
7863
7863
|
* </ul>
|
|
7864
7864
|
* @public
|
|
7865
7865
|
*/
|
|
7866
|
-
ResourceTags?: ResourceTag[];
|
|
7866
|
+
ResourceTags?: ResourceTag[] | undefined;
|
|
7867
7867
|
}
|
|
7868
7868
|
/**
|
|
7869
7869
|
* @public
|
|
@@ -7880,7 +7880,7 @@ export interface GetAnomalyMonitorsResponse {
|
|
|
7880
7880
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
7881
7881
|
* @public
|
|
7882
7882
|
*/
|
|
7883
|
-
NextPageToken?: string;
|
|
7883
|
+
NextPageToken?: string | undefined;
|
|
7884
7884
|
}
|
|
7885
7885
|
/**
|
|
7886
7886
|
* @public
|
|
@@ -7897,7 +7897,7 @@ export interface GetAnomalySubscriptionsResponse {
|
|
|
7897
7897
|
* the response from a previous call has more results than the maximum page size. </p>
|
|
7898
7898
|
* @public
|
|
7899
7899
|
*/
|
|
7900
|
-
NextPageToken?: string;
|
|
7900
|
+
NextPageToken?: string | undefined;
|
|
7901
7901
|
}
|
|
7902
7902
|
/**
|
|
7903
7903
|
* @public
|
|
@@ -7912,7 +7912,7 @@ export interface UpdateCostCategoryDefinitionRequest {
|
|
|
7912
7912
|
* <p>The Cost Category's effective start date. It can only be a billing start date (first day of the month). If the date isn't provided, it's the first day of the current month. Dates can't be before the previous twelve months, or in the future.</p>
|
|
7913
7913
|
* @public
|
|
7914
7914
|
*/
|
|
7915
|
-
EffectiveStart?: string;
|
|
7915
|
+
EffectiveStart?: string | undefined;
|
|
7916
7916
|
/**
|
|
7917
7917
|
* <p>The rule schema version in this particular Cost Category.</p>
|
|
7918
7918
|
* @public
|
|
@@ -7930,13 +7930,13 @@ export interface UpdateCostCategoryDefinitionRequest {
|
|
|
7930
7930
|
* default value for the cost category.</p>
|
|
7931
7931
|
* @public
|
|
7932
7932
|
*/
|
|
7933
|
-
DefaultValue?: string;
|
|
7933
|
+
DefaultValue?: string | undefined;
|
|
7934
7934
|
/**
|
|
7935
7935
|
* <p> The split charge rules used to allocate your charges between your Cost Category values.
|
|
7936
7936
|
* </p>
|
|
7937
7937
|
* @public
|
|
7938
7938
|
*/
|
|
7939
|
-
SplitChargeRules?: CostCategorySplitChargeRule[];
|
|
7939
|
+
SplitChargeRules?: CostCategorySplitChargeRule[] | undefined;
|
|
7940
7940
|
}
|
|
7941
7941
|
/**
|
|
7942
7942
|
* @public
|
|
@@ -7947,5 +7947,5 @@ export interface DescribeCostCategoryDefinitionResponse {
|
|
|
7947
7947
|
* for the <code>CostCategory</code> object.</p>
|
|
7948
7948
|
* @public
|
|
7949
7949
|
*/
|
|
7950
|
-
CostCategory?: CostCategory;
|
|
7950
|
+
CostCategory?: CostCategory | undefined;
|
|
7951
7951
|
}
|