@aws-sdk/client-cost-explorer 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +245 -241
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +244 -0
- package/dist-es/models/errors.js +215 -0
- package/dist-es/models/models_0.js +1 -456
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/CreateAnomalyMonitorCommand.d.ts +1 -1
- package/dist-types/commands/GetAnomalyMonitorsCommand.d.ts +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +564 -0
- package/dist-types/models/errors.d.ts +208 -0
- package/dist-types/models/models_0.d.ts +51 -887
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +311 -0
- package/dist-types/ts3.4/models/errors.d.ts +127 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -435
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AccountScope: {
|
|
8
|
-
readonly LINKED: "LINKED";
|
|
9
|
-
readonly PAYER: "PAYER";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export type AccountScope = (typeof AccountScope)[keyof typeof AccountScope];
|
|
1
|
+
import { AccountScope, AnalysisStatus, AnalysisType, AnomalyFeedbackType, AnomalySubscriptionFrequency, ApproximationDimension, Context, CostAllocationTagBackfillStatus, CostAllocationTagStatus, CostAllocationTagType, CostCategoryInheritedValueDimensionName, CostCategoryRuleType, CostCategoryRuleVersion, CostCategorySplitChargeMethod, CostCategorySplitChargeRuleParameterType, CostCategoryStatus, CostCategoryStatusComponent, Dimension, ErrorCode, FindingReasonCode, GenerationStatus, Granularity, GroupDefinitionType, LookbackPeriodInDays, MatchOption, Metric, MonitorDimension, MonitorType, NumericOperator, OfferingClass, PaymentOption, PlatformDifference, RecommendationTarget, RightsizingType, SavingsPlansDataType, SortOrder, SubscriberStatus, SubscriberType, SupportedSavingsPlansType, TermInYears } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* <p>Contains the hourly metrics for the given recommendation over the lookback period.
|
|
17
4
|
* </p>
|
|
@@ -179,44 +166,6 @@ export interface AnalysisDetails {
|
|
|
179
166
|
*/
|
|
180
167
|
SavingsPlansPurchaseAnalysisDetails?: SavingsPlansPurchaseAnalysisDetails | undefined;
|
|
181
168
|
}
|
|
182
|
-
/**
|
|
183
|
-
* <p>The requested analysis can't be found.</p>
|
|
184
|
-
* @public
|
|
185
|
-
*/
|
|
186
|
-
export declare class AnalysisNotFoundException extends __BaseException {
|
|
187
|
-
readonly name: "AnalysisNotFoundException";
|
|
188
|
-
readonly $fault: "client";
|
|
189
|
-
Message?: string | undefined;
|
|
190
|
-
/**
|
|
191
|
-
* @internal
|
|
192
|
-
*/
|
|
193
|
-
constructor(opts: __ExceptionOptionType<AnalysisNotFoundException, __BaseException>);
|
|
194
|
-
}
|
|
195
|
-
/**
|
|
196
|
-
* @public
|
|
197
|
-
* @enum
|
|
198
|
-
*/
|
|
199
|
-
export declare const AnalysisStatus: {
|
|
200
|
-
readonly FAILED: "FAILED";
|
|
201
|
-
readonly PROCESSING: "PROCESSING";
|
|
202
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
203
|
-
};
|
|
204
|
-
/**
|
|
205
|
-
* @public
|
|
206
|
-
*/
|
|
207
|
-
export type AnalysisStatus = (typeof AnalysisStatus)[keyof typeof AnalysisStatus];
|
|
208
|
-
/**
|
|
209
|
-
* @public
|
|
210
|
-
* @enum
|
|
211
|
-
*/
|
|
212
|
-
export declare const AnalysisType: {
|
|
213
|
-
readonly CUSTOM_COMMITMENT: "CUSTOM_COMMITMENT";
|
|
214
|
-
readonly MAX_SAVINGS: "MAX_SAVINGS";
|
|
215
|
-
};
|
|
216
|
-
/**
|
|
217
|
-
* @public
|
|
218
|
-
*/
|
|
219
|
-
export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
|
|
220
169
|
/**
|
|
221
170
|
* <p>The time period of the request. </p>
|
|
222
171
|
* @public
|
|
@@ -238,47 +187,6 @@ export interface DateInterval {
|
|
|
238
187
|
*/
|
|
239
188
|
End: string | undefined;
|
|
240
189
|
}
|
|
241
|
-
/**
|
|
242
|
-
* @public
|
|
243
|
-
* @enum
|
|
244
|
-
*/
|
|
245
|
-
export declare const PaymentOption: {
|
|
246
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
247
|
-
readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
|
|
248
|
-
readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
|
|
249
|
-
readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
|
|
250
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
251
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
252
|
-
};
|
|
253
|
-
/**
|
|
254
|
-
* @public
|
|
255
|
-
*/
|
|
256
|
-
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
257
|
-
/**
|
|
258
|
-
* @public
|
|
259
|
-
* @enum
|
|
260
|
-
*/
|
|
261
|
-
export declare const SupportedSavingsPlansType: {
|
|
262
|
-
readonly COMPUTE_SP: "COMPUTE_SP";
|
|
263
|
-
readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
|
|
264
|
-
readonly SAGEMAKER_SP: "SAGEMAKER_SP";
|
|
265
|
-
};
|
|
266
|
-
/**
|
|
267
|
-
* @public
|
|
268
|
-
*/
|
|
269
|
-
export type SupportedSavingsPlansType = (typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
|
|
270
|
-
/**
|
|
271
|
-
* @public
|
|
272
|
-
* @enum
|
|
273
|
-
*/
|
|
274
|
-
export declare const TermInYears: {
|
|
275
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
276
|
-
readonly THREE_YEARS: "THREE_YEARS";
|
|
277
|
-
};
|
|
278
|
-
/**
|
|
279
|
-
* @public
|
|
280
|
-
*/
|
|
281
|
-
export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
|
|
282
190
|
/**
|
|
283
191
|
* <p>The Savings Plans commitment details.</p>
|
|
284
192
|
* @public
|
|
@@ -368,21 +276,6 @@ export interface CommitmentPurchaseAnalysisConfiguration {
|
|
|
368
276
|
*/
|
|
369
277
|
SavingsPlansPurchaseAnalysisConfiguration?: SavingsPlansPurchaseAnalysisConfiguration | undefined;
|
|
370
278
|
}
|
|
371
|
-
/**
|
|
372
|
-
* @public
|
|
373
|
-
* @enum
|
|
374
|
-
*/
|
|
375
|
-
export declare const ErrorCode: {
|
|
376
|
-
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
377
|
-
readonly INVALID_ACCOUNT_ID: "INVALID_ACCOUNT_ID";
|
|
378
|
-
readonly INVALID_SAVINGS_PLANS_TO_ADD: "INVALID_SAVINGS_PLANS_TO_ADD";
|
|
379
|
-
readonly INVALID_SAVINGS_PLANS_TO_EXCLUDE: "INVALID_SAVINGS_PLANS_TO_EXCLUDE";
|
|
380
|
-
readonly NO_USAGE_FOUND: "NO_USAGE_FOUND";
|
|
381
|
-
};
|
|
382
|
-
/**
|
|
383
|
-
* @public
|
|
384
|
-
*/
|
|
385
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
386
279
|
/**
|
|
387
280
|
* <p>A summary of the analysis.</p>
|
|
388
281
|
* @public
|
|
@@ -440,19 +333,6 @@ export interface AnomalyScore {
|
|
|
440
333
|
*/
|
|
441
334
|
CurrentScore: number | undefined;
|
|
442
335
|
}
|
|
443
|
-
/**
|
|
444
|
-
* @public
|
|
445
|
-
* @enum
|
|
446
|
-
*/
|
|
447
|
-
export declare const AnomalyFeedbackType: {
|
|
448
|
-
readonly NO: "NO";
|
|
449
|
-
readonly PLANNED_ACTIVITY: "PLANNED_ACTIVITY";
|
|
450
|
-
readonly YES: "YES";
|
|
451
|
-
};
|
|
452
|
-
/**
|
|
453
|
-
* @public
|
|
454
|
-
*/
|
|
455
|
-
export type AnomalyFeedbackType = (typeof AnomalyFeedbackType)[keyof typeof AnomalyFeedbackType];
|
|
456
336
|
/**
|
|
457
337
|
* <p>The dollar value of the anomaly. </p>
|
|
458
338
|
* @public
|
|
@@ -611,35 +491,6 @@ export interface AnomalyDateInterval {
|
|
|
611
491
|
*/
|
|
612
492
|
EndDate?: string | undefined;
|
|
613
493
|
}
|
|
614
|
-
/**
|
|
615
|
-
* @public
|
|
616
|
-
* @enum
|
|
617
|
-
*/
|
|
618
|
-
export declare const MonitorDimension: {
|
|
619
|
-
readonly SERVICE: "SERVICE";
|
|
620
|
-
};
|
|
621
|
-
/**
|
|
622
|
-
* @public
|
|
623
|
-
*/
|
|
624
|
-
export type MonitorDimension = (typeof MonitorDimension)[keyof typeof MonitorDimension];
|
|
625
|
-
/**
|
|
626
|
-
* @public
|
|
627
|
-
* @enum
|
|
628
|
-
*/
|
|
629
|
-
export declare const MatchOption: {
|
|
630
|
-
readonly ABSENT: "ABSENT";
|
|
631
|
-
readonly CASE_INSENSITIVE: "CASE_INSENSITIVE";
|
|
632
|
-
readonly CASE_SENSITIVE: "CASE_SENSITIVE";
|
|
633
|
-
readonly CONTAINS: "CONTAINS";
|
|
634
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
635
|
-
readonly EQUALS: "EQUALS";
|
|
636
|
-
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
637
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
638
|
-
};
|
|
639
|
-
/**
|
|
640
|
-
* @public
|
|
641
|
-
*/
|
|
642
|
-
export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
|
|
643
494
|
/**
|
|
644
495
|
* <p>The Cost Categories values used for filtering the costs.</p>
|
|
645
496
|
* <p>If <code>Values</code> and <code>Key</code> are not specified, the <code>ABSENT</code>
|
|
@@ -671,51 +522,6 @@ export interface CostCategoryValues {
|
|
|
671
522
|
*/
|
|
672
523
|
MatchOptions?: MatchOption[] | undefined;
|
|
673
524
|
}
|
|
674
|
-
/**
|
|
675
|
-
* @public
|
|
676
|
-
* @enum
|
|
677
|
-
*/
|
|
678
|
-
export declare const Dimension: {
|
|
679
|
-
readonly AGREEMENT_END_DATE_TIME_AFTER: "AGREEMENT_END_DATE_TIME_AFTER";
|
|
680
|
-
readonly AGREEMENT_END_DATE_TIME_BEFORE: "AGREEMENT_END_DATE_TIME_BEFORE";
|
|
681
|
-
readonly ANOMALY_TOTAL_IMPACT_ABSOLUTE: "ANOMALY_TOTAL_IMPACT_ABSOLUTE";
|
|
682
|
-
readonly ANOMALY_TOTAL_IMPACT_PERCENTAGE: "ANOMALY_TOTAL_IMPACT_PERCENTAGE";
|
|
683
|
-
readonly AZ: "AZ";
|
|
684
|
-
readonly BILLING_ENTITY: "BILLING_ENTITY";
|
|
685
|
-
readonly CACHE_ENGINE: "CACHE_ENGINE";
|
|
686
|
-
readonly DATABASE_ENGINE: "DATABASE_ENGINE";
|
|
687
|
-
readonly DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION";
|
|
688
|
-
readonly INSTANCE_TYPE: "INSTANCE_TYPE";
|
|
689
|
-
readonly INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY";
|
|
690
|
-
readonly INVOICING_ENTITY: "INVOICING_ENTITY";
|
|
691
|
-
readonly LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME";
|
|
692
|
-
readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
|
|
693
|
-
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
694
|
-
readonly OPERATING_SYSTEM: "OPERATING_SYSTEM";
|
|
695
|
-
readonly OPERATION: "OPERATION";
|
|
696
|
-
readonly PAYER_ACCOUNT: "PAYER_ACCOUNT";
|
|
697
|
-
readonly PAYMENT_OPTION: "PAYMENT_OPTION";
|
|
698
|
-
readonly PLATFORM: "PLATFORM";
|
|
699
|
-
readonly PURCHASE_TYPE: "PURCHASE_TYPE";
|
|
700
|
-
readonly RECORD_TYPE: "RECORD_TYPE";
|
|
701
|
-
readonly REGION: "REGION";
|
|
702
|
-
readonly RESERVATION_ID: "RESERVATION_ID";
|
|
703
|
-
readonly RESOURCE_ID: "RESOURCE_ID";
|
|
704
|
-
readonly RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE";
|
|
705
|
-
readonly SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE";
|
|
706
|
-
readonly SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN";
|
|
707
|
-
readonly SCOPE: "SCOPE";
|
|
708
|
-
readonly SERVICE: "SERVICE";
|
|
709
|
-
readonly SERVICE_CODE: "SERVICE_CODE";
|
|
710
|
-
readonly SUBSCRIPTION_ID: "SUBSCRIPTION_ID";
|
|
711
|
-
readonly TENANCY: "TENANCY";
|
|
712
|
-
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
713
|
-
readonly USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP";
|
|
714
|
-
};
|
|
715
|
-
/**
|
|
716
|
-
* @public
|
|
717
|
-
*/
|
|
718
|
-
export type Dimension = (typeof Dimension)[keyof typeof Dimension];
|
|
719
525
|
/**
|
|
720
526
|
* <p>The metadata that you can use to filter and group your results. You can use
|
|
721
527
|
* <code>GetDimensionValues</code> to find specific values.</p>
|
|
@@ -785,55 +591,6 @@ export interface TagValues {
|
|
|
785
591
|
*/
|
|
786
592
|
MatchOptions?: MatchOption[] | undefined;
|
|
787
593
|
}
|
|
788
|
-
/**
|
|
789
|
-
* @public
|
|
790
|
-
* @enum
|
|
791
|
-
*/
|
|
792
|
-
export declare const MonitorType: {
|
|
793
|
-
readonly CUSTOM: "CUSTOM";
|
|
794
|
-
readonly DIMENSIONAL: "DIMENSIONAL";
|
|
795
|
-
};
|
|
796
|
-
/**
|
|
797
|
-
* @public
|
|
798
|
-
*/
|
|
799
|
-
export type MonitorType = (typeof MonitorType)[keyof typeof MonitorType];
|
|
800
|
-
/**
|
|
801
|
-
* @public
|
|
802
|
-
* @enum
|
|
803
|
-
*/
|
|
804
|
-
export declare const AnomalySubscriptionFrequency: {
|
|
805
|
-
readonly DAILY: "DAILY";
|
|
806
|
-
readonly IMMEDIATE: "IMMEDIATE";
|
|
807
|
-
readonly WEEKLY: "WEEKLY";
|
|
808
|
-
};
|
|
809
|
-
/**
|
|
810
|
-
* @public
|
|
811
|
-
*/
|
|
812
|
-
export type AnomalySubscriptionFrequency = (typeof AnomalySubscriptionFrequency)[keyof typeof AnomalySubscriptionFrequency];
|
|
813
|
-
/**
|
|
814
|
-
* @public
|
|
815
|
-
* @enum
|
|
816
|
-
*/
|
|
817
|
-
export declare const SubscriberStatus: {
|
|
818
|
-
readonly CONFIRMED: "CONFIRMED";
|
|
819
|
-
readonly DECLINED: "DECLINED";
|
|
820
|
-
};
|
|
821
|
-
/**
|
|
822
|
-
* @public
|
|
823
|
-
*/
|
|
824
|
-
export type SubscriberStatus = (typeof SubscriberStatus)[keyof typeof SubscriberStatus];
|
|
825
|
-
/**
|
|
826
|
-
* @public
|
|
827
|
-
* @enum
|
|
828
|
-
*/
|
|
829
|
-
export declare const SubscriberType: {
|
|
830
|
-
readonly EMAIL: "EMAIL";
|
|
831
|
-
readonly SNS: "SNS";
|
|
832
|
-
};
|
|
833
|
-
/**
|
|
834
|
-
* @public
|
|
835
|
-
*/
|
|
836
|
-
export type SubscriberType = (typeof SubscriberType)[keyof typeof SubscriberType];
|
|
837
594
|
/**
|
|
838
595
|
* <p>The recipient of <code>AnomalySubscription</code> notifications. </p>
|
|
839
596
|
* @public
|
|
@@ -856,18 +613,6 @@ export interface Subscriber {
|
|
|
856
613
|
*/
|
|
857
614
|
Status?: SubscriberStatus | undefined;
|
|
858
615
|
}
|
|
859
|
-
/**
|
|
860
|
-
* @public
|
|
861
|
-
* @enum
|
|
862
|
-
*/
|
|
863
|
-
export declare const ApproximationDimension: {
|
|
864
|
-
readonly RESOURCE: "RESOURCE";
|
|
865
|
-
readonly SERVICE: "SERVICE";
|
|
866
|
-
};
|
|
867
|
-
/**
|
|
868
|
-
* @public
|
|
869
|
-
*/
|
|
870
|
-
export type ApproximationDimension = (typeof ApproximationDimension)[keyof typeof ApproximationDimension];
|
|
871
616
|
/**
|
|
872
617
|
* <p>The tag structure that contains a tag key and value. </p>
|
|
873
618
|
* <note>
|
|
@@ -904,19 +649,6 @@ export interface CreateAnomalyMonitorResponse {
|
|
|
904
649
|
*/
|
|
905
650
|
MonitorArn: string | undefined;
|
|
906
651
|
}
|
|
907
|
-
/**
|
|
908
|
-
* <p>You made too many calls in a short period of time. Try again later.</p>
|
|
909
|
-
* @public
|
|
910
|
-
*/
|
|
911
|
-
export declare class LimitExceededException extends __BaseException {
|
|
912
|
-
readonly name: "LimitExceededException";
|
|
913
|
-
readonly $fault: "client";
|
|
914
|
-
Message?: string | undefined;
|
|
915
|
-
/**
|
|
916
|
-
* @internal
|
|
917
|
-
*/
|
|
918
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
919
|
-
}
|
|
920
652
|
/**
|
|
921
653
|
* @public
|
|
922
654
|
*/
|
|
@@ -927,31 +659,6 @@ export interface CreateAnomalySubscriptionResponse {
|
|
|
927
659
|
*/
|
|
928
660
|
SubscriptionArn: string | undefined;
|
|
929
661
|
}
|
|
930
|
-
/**
|
|
931
|
-
* <p>The cost anomaly monitor does not exist for the account. </p>
|
|
932
|
-
* @public
|
|
933
|
-
*/
|
|
934
|
-
export declare class UnknownMonitorException extends __BaseException {
|
|
935
|
-
readonly name: "UnknownMonitorException";
|
|
936
|
-
readonly $fault: "client";
|
|
937
|
-
Message?: string | undefined;
|
|
938
|
-
/**
|
|
939
|
-
* @internal
|
|
940
|
-
*/
|
|
941
|
-
constructor(opts: __ExceptionOptionType<UnknownMonitorException, __BaseException>);
|
|
942
|
-
}
|
|
943
|
-
/**
|
|
944
|
-
* @public
|
|
945
|
-
* @enum
|
|
946
|
-
*/
|
|
947
|
-
export declare const CostCategoryInheritedValueDimensionName: {
|
|
948
|
-
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
949
|
-
readonly TAG: "TAG";
|
|
950
|
-
};
|
|
951
|
-
/**
|
|
952
|
-
* @public
|
|
953
|
-
*/
|
|
954
|
-
export type CostCategoryInheritedValueDimensionName = (typeof CostCategoryInheritedValueDimensionName)[keyof typeof CostCategoryInheritedValueDimensionName];
|
|
955
662
|
/**
|
|
956
663
|
* <p>When you create or update a cost category, you can define the
|
|
957
664
|
* <code>CostCategoryRule</code> rule type as <code>INHERITED_VALUE</code>. This rule
|
|
@@ -978,53 +685,6 @@ export interface CostCategoryInheritedValueDimension {
|
|
|
978
685
|
*/
|
|
979
686
|
DimensionKey?: string | undefined;
|
|
980
687
|
}
|
|
981
|
-
/**
|
|
982
|
-
* @public
|
|
983
|
-
* @enum
|
|
984
|
-
*/
|
|
985
|
-
export declare const CostCategoryRuleType: {
|
|
986
|
-
readonly INHERITED_VALUE: "INHERITED_VALUE";
|
|
987
|
-
readonly REGULAR: "REGULAR";
|
|
988
|
-
};
|
|
989
|
-
/**
|
|
990
|
-
* @public
|
|
991
|
-
*/
|
|
992
|
-
export type CostCategoryRuleType = (typeof CostCategoryRuleType)[keyof typeof CostCategoryRuleType];
|
|
993
|
-
/**
|
|
994
|
-
* @public
|
|
995
|
-
* @enum
|
|
996
|
-
*/
|
|
997
|
-
export declare const CostCategoryRuleVersion: {
|
|
998
|
-
readonly CostCategoryExpressionV1: "CostCategoryExpression.v1";
|
|
999
|
-
};
|
|
1000
|
-
/**
|
|
1001
|
-
* @public
|
|
1002
|
-
*/
|
|
1003
|
-
export type CostCategoryRuleVersion = (typeof CostCategoryRuleVersion)[keyof typeof CostCategoryRuleVersion];
|
|
1004
|
-
/**
|
|
1005
|
-
* @public
|
|
1006
|
-
* @enum
|
|
1007
|
-
*/
|
|
1008
|
-
export declare const CostCategorySplitChargeMethod: {
|
|
1009
|
-
readonly EVEN: "EVEN";
|
|
1010
|
-
readonly FIXED: "FIXED";
|
|
1011
|
-
readonly PROPORTIONAL: "PROPORTIONAL";
|
|
1012
|
-
};
|
|
1013
|
-
/**
|
|
1014
|
-
* @public
|
|
1015
|
-
*/
|
|
1016
|
-
export type CostCategorySplitChargeMethod = (typeof CostCategorySplitChargeMethod)[keyof typeof CostCategorySplitChargeMethod];
|
|
1017
|
-
/**
|
|
1018
|
-
* @public
|
|
1019
|
-
* @enum
|
|
1020
|
-
*/
|
|
1021
|
-
export declare const CostCategorySplitChargeRuleParameterType: {
|
|
1022
|
-
readonly ALLOCATION_PERCENTAGES: "ALLOCATION_PERCENTAGES";
|
|
1023
|
-
};
|
|
1024
|
-
/**
|
|
1025
|
-
* @public
|
|
1026
|
-
*/
|
|
1027
|
-
export type CostCategorySplitChargeRuleParameterType = (typeof CostCategorySplitChargeRuleParameterType)[keyof typeof CostCategorySplitChargeRuleParameterType];
|
|
1028
688
|
/**
|
|
1029
689
|
* <p>The parameters for a split charge method. </p>
|
|
1030
690
|
* @public
|
|
@@ -1094,20 +754,6 @@ export interface CreateCostCategoryDefinitionResponse {
|
|
|
1094
754
|
*/
|
|
1095
755
|
EffectiveStart?: string | undefined;
|
|
1096
756
|
}
|
|
1097
|
-
/**
|
|
1098
|
-
* <p> You've reached the limit on the number of resources you can create, or exceeded the
|
|
1099
|
-
* size of an individual resource. </p>
|
|
1100
|
-
* @public
|
|
1101
|
-
*/
|
|
1102
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1103
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1104
|
-
readonly $fault: "client";
|
|
1105
|
-
Message?: string | undefined;
|
|
1106
|
-
/**
|
|
1107
|
-
* @internal
|
|
1108
|
-
*/
|
|
1109
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1110
|
-
}
|
|
1111
757
|
/**
|
|
1112
758
|
* @public
|
|
1113
759
|
*/
|
|
@@ -1138,19 +784,6 @@ export interface DeleteAnomalySubscriptionRequest {
|
|
|
1138
784
|
*/
|
|
1139
785
|
export interface DeleteAnomalySubscriptionResponse {
|
|
1140
786
|
}
|
|
1141
|
-
/**
|
|
1142
|
-
* <p>The cost anomaly subscription does not exist for the account. </p>
|
|
1143
|
-
* @public
|
|
1144
|
-
*/
|
|
1145
|
-
export declare class UnknownSubscriptionException extends __BaseException {
|
|
1146
|
-
readonly name: "UnknownSubscriptionException";
|
|
1147
|
-
readonly $fault: "client";
|
|
1148
|
-
Message?: string | undefined;
|
|
1149
|
-
/**
|
|
1150
|
-
* @internal
|
|
1151
|
-
*/
|
|
1152
|
-
constructor(opts: __ExceptionOptionType<UnknownSubscriptionException, __BaseException>);
|
|
1153
|
-
}
|
|
1154
787
|
/**
|
|
1155
788
|
* @public
|
|
1156
789
|
*/
|
|
@@ -1177,20 +810,6 @@ export interface DeleteCostCategoryDefinitionResponse {
|
|
|
1177
810
|
*/
|
|
1178
811
|
EffectiveEnd?: string | undefined;
|
|
1179
812
|
}
|
|
1180
|
-
/**
|
|
1181
|
-
* <p> The specified ARN in the request doesn't exist. </p>
|
|
1182
|
-
* @public
|
|
1183
|
-
*/
|
|
1184
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
1185
|
-
readonly name: "ResourceNotFoundException";
|
|
1186
|
-
readonly $fault: "client";
|
|
1187
|
-
Message?: string | undefined;
|
|
1188
|
-
ResourceName?: string | undefined;
|
|
1189
|
-
/**
|
|
1190
|
-
* @internal
|
|
1191
|
-
*/
|
|
1192
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1193
|
-
}
|
|
1194
813
|
/**
|
|
1195
814
|
* @public
|
|
1196
815
|
*/
|
|
@@ -1206,29 +825,6 @@ export interface DescribeCostCategoryDefinitionRequest {
|
|
|
1206
825
|
*/
|
|
1207
826
|
EffectiveOn?: string | undefined;
|
|
1208
827
|
}
|
|
1209
|
-
/**
|
|
1210
|
-
* @public
|
|
1211
|
-
* @enum
|
|
1212
|
-
*/
|
|
1213
|
-
export declare const CostCategoryStatusComponent: {
|
|
1214
|
-
readonly COST_EXPLORER: "COST_EXPLORER";
|
|
1215
|
-
};
|
|
1216
|
-
/**
|
|
1217
|
-
* @public
|
|
1218
|
-
*/
|
|
1219
|
-
export type CostCategoryStatusComponent = (typeof CostCategoryStatusComponent)[keyof typeof CostCategoryStatusComponent];
|
|
1220
|
-
/**
|
|
1221
|
-
* @public
|
|
1222
|
-
* @enum
|
|
1223
|
-
*/
|
|
1224
|
-
export declare const CostCategoryStatus: {
|
|
1225
|
-
readonly APPLIED: "APPLIED";
|
|
1226
|
-
readonly PROCESSING: "PROCESSING";
|
|
1227
|
-
};
|
|
1228
|
-
/**
|
|
1229
|
-
* @public
|
|
1230
|
-
*/
|
|
1231
|
-
export type CostCategoryStatus = (typeof CostCategoryStatus)[keyof typeof CostCategoryStatus];
|
|
1232
828
|
/**
|
|
1233
829
|
* <p>The list of processing statuses for Cost Management products for a specific cost
|
|
1234
830
|
* category. </p>
|
|
@@ -1246,22 +842,6 @@ export interface CostCategoryProcessingStatus {
|
|
|
1246
842
|
*/
|
|
1247
843
|
Status?: CostCategoryStatus | undefined;
|
|
1248
844
|
}
|
|
1249
|
-
/**
|
|
1250
|
-
* @public
|
|
1251
|
-
* @enum
|
|
1252
|
-
*/
|
|
1253
|
-
export declare const NumericOperator: {
|
|
1254
|
-
readonly BETWEEN: "BETWEEN";
|
|
1255
|
-
readonly EQUAL: "EQUAL";
|
|
1256
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1257
|
-
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
1258
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1259
|
-
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
1260
|
-
};
|
|
1261
|
-
/**
|
|
1262
|
-
* @public
|
|
1263
|
-
*/
|
|
1264
|
-
export type NumericOperator = (typeof NumericOperator)[keyof typeof NumericOperator];
|
|
1265
845
|
/**
|
|
1266
846
|
* <p>Filters cost anomalies based on the total impact. </p>
|
|
1267
847
|
* @public
|
|
@@ -1339,19 +919,6 @@ export interface GetAnomaliesResponse {
|
|
|
1339
919
|
*/
|
|
1340
920
|
NextPageToken?: string | undefined;
|
|
1341
921
|
}
|
|
1342
|
-
/**
|
|
1343
|
-
* <p>The pagination token is invalid. Try again without a pagination token.</p>
|
|
1344
|
-
* @public
|
|
1345
|
-
*/
|
|
1346
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
1347
|
-
readonly name: "InvalidNextTokenException";
|
|
1348
|
-
readonly $fault: "client";
|
|
1349
|
-
Message?: string | undefined;
|
|
1350
|
-
/**
|
|
1351
|
-
* @internal
|
|
1352
|
-
*/
|
|
1353
|
-
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
1354
|
-
}
|
|
1355
922
|
/**
|
|
1356
923
|
* @public
|
|
1357
924
|
*/
|
|
@@ -1399,32 +966,6 @@ export interface GetAnomalySubscriptionsRequest {
|
|
|
1399
966
|
*/
|
|
1400
967
|
MaxResults?: number | undefined;
|
|
1401
968
|
}
|
|
1402
|
-
/**
|
|
1403
|
-
* <p>The requested data is unavailable.</p>
|
|
1404
|
-
* @public
|
|
1405
|
-
*/
|
|
1406
|
-
export declare class DataUnavailableException extends __BaseException {
|
|
1407
|
-
readonly name: "DataUnavailableException";
|
|
1408
|
-
readonly $fault: "client";
|
|
1409
|
-
Message?: string | undefined;
|
|
1410
|
-
/**
|
|
1411
|
-
* @internal
|
|
1412
|
-
*/
|
|
1413
|
-
constructor(opts: __ExceptionOptionType<DataUnavailableException, __BaseException>);
|
|
1414
|
-
}
|
|
1415
|
-
/**
|
|
1416
|
-
* @public
|
|
1417
|
-
* @enum
|
|
1418
|
-
*/
|
|
1419
|
-
export declare const Granularity: {
|
|
1420
|
-
readonly DAILY: "DAILY";
|
|
1421
|
-
readonly HOURLY: "HOURLY";
|
|
1422
|
-
readonly MONTHLY: "MONTHLY";
|
|
1423
|
-
};
|
|
1424
|
-
/**
|
|
1425
|
-
* @public
|
|
1426
|
-
*/
|
|
1427
|
-
export type Granularity = (typeof Granularity)[keyof typeof Granularity];
|
|
1428
969
|
/**
|
|
1429
970
|
* @public
|
|
1430
971
|
*/
|
|
@@ -1523,47 +1064,6 @@ export interface GetCommitmentPurchaseAnalysisResponse {
|
|
|
1523
1064
|
*/
|
|
1524
1065
|
CommitmentPurchaseAnalysisConfiguration: CommitmentPurchaseAnalysisConfiguration | undefined;
|
|
1525
1066
|
}
|
|
1526
|
-
/**
|
|
1527
|
-
* <p>The requested report expired. Update the date interval and try again.</p>
|
|
1528
|
-
* @public
|
|
1529
|
-
*/
|
|
1530
|
-
export declare class BillExpirationException extends __BaseException {
|
|
1531
|
-
readonly name: "BillExpirationException";
|
|
1532
|
-
readonly $fault: "client";
|
|
1533
|
-
Message?: string | undefined;
|
|
1534
|
-
/**
|
|
1535
|
-
* @internal
|
|
1536
|
-
*/
|
|
1537
|
-
constructor(opts: __ExceptionOptionType<BillExpirationException, __BaseException>);
|
|
1538
|
-
}
|
|
1539
|
-
/**
|
|
1540
|
-
* <p>
|
|
1541
|
-
* The billing view status must be <code>HEALTHY</code> to perform this action. Try again when the status is <code>HEALTHY</code>.
|
|
1542
|
-
* </p>
|
|
1543
|
-
* @public
|
|
1544
|
-
*/
|
|
1545
|
-
export declare class BillingViewHealthStatusException extends __BaseException {
|
|
1546
|
-
readonly name: "BillingViewHealthStatusException";
|
|
1547
|
-
readonly $fault: "client";
|
|
1548
|
-
Message?: string | undefined;
|
|
1549
|
-
/**
|
|
1550
|
-
* @internal
|
|
1551
|
-
*/
|
|
1552
|
-
constructor(opts: __ExceptionOptionType<BillingViewHealthStatusException, __BaseException>);
|
|
1553
|
-
}
|
|
1554
|
-
/**
|
|
1555
|
-
* @public
|
|
1556
|
-
* @enum
|
|
1557
|
-
*/
|
|
1558
|
-
export declare const GroupDefinitionType: {
|
|
1559
|
-
readonly COST_CATEGORY: "COST_CATEGORY";
|
|
1560
|
-
readonly DIMENSION: "DIMENSION";
|
|
1561
|
-
readonly TAG: "TAG";
|
|
1562
|
-
};
|
|
1563
|
-
/**
|
|
1564
|
-
* @public
|
|
1565
|
-
*/
|
|
1566
|
-
export type GroupDefinitionType = (typeof GroupDefinitionType)[keyof typeof GroupDefinitionType];
|
|
1567
1067
|
/**
|
|
1568
1068
|
* <p>Represents a group when you specify a group by criteria or in the response to a query
|
|
1569
1069
|
* with a specific grouping.</p>
|
|
@@ -1684,20 +1184,6 @@ export interface GetCostAndUsageResponse {
|
|
|
1684
1184
|
*/
|
|
1685
1185
|
DimensionValueAttributes?: DimensionValuesWithAttributes[] | undefined;
|
|
1686
1186
|
}
|
|
1687
|
-
/**
|
|
1688
|
-
* <p>Your request parameters changed between pages. Try again with the old parameters or
|
|
1689
|
-
* without a pagination token.</p>
|
|
1690
|
-
* @public
|
|
1691
|
-
*/
|
|
1692
|
-
export declare class RequestChangedException extends __BaseException {
|
|
1693
|
-
readonly name: "RequestChangedException";
|
|
1694
|
-
readonly $fault: "client";
|
|
1695
|
-
Message?: string | undefined;
|
|
1696
|
-
/**
|
|
1697
|
-
* @internal
|
|
1698
|
-
*/
|
|
1699
|
-
constructor(opts: __ExceptionOptionType<RequestChangedException, __BaseException>);
|
|
1700
|
-
}
|
|
1701
1187
|
/**
|
|
1702
1188
|
* <p>Contains cost or usage metric values for comparing two time periods. Each value
|
|
1703
1189
|
* includes amounts for the baseline and comparison time periods, their difference, and the
|
|
@@ -1755,18 +1241,6 @@ export interface GetCostAndUsageWithResourcesResponse {
|
|
|
1755
1241
|
*/
|
|
1756
1242
|
DimensionValueAttributes?: DimensionValuesWithAttributes[] | undefined;
|
|
1757
1243
|
}
|
|
1758
|
-
/**
|
|
1759
|
-
* @public
|
|
1760
|
-
* @enum
|
|
1761
|
-
*/
|
|
1762
|
-
export declare const SortOrder: {
|
|
1763
|
-
readonly ASCENDING: "ASCENDING";
|
|
1764
|
-
readonly DESCENDING: "DESCENDING";
|
|
1765
|
-
};
|
|
1766
|
-
/**
|
|
1767
|
-
* @public
|
|
1768
|
-
*/
|
|
1769
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1770
1244
|
/**
|
|
1771
1245
|
* <p>The details for how to sort the data.</p>
|
|
1772
1246
|
* @public
|
|
@@ -1844,23 +1318,6 @@ export interface CostDriver {
|
|
|
1844
1318
|
*/
|
|
1845
1319
|
Metrics?: Record<string, ComparisonMetricValue> | undefined;
|
|
1846
1320
|
}
|
|
1847
|
-
/**
|
|
1848
|
-
* @public
|
|
1849
|
-
* @enum
|
|
1850
|
-
*/
|
|
1851
|
-
export declare const Metric: {
|
|
1852
|
-
readonly AMORTIZED_COST: "AMORTIZED_COST";
|
|
1853
|
-
readonly BLENDED_COST: "BLENDED_COST";
|
|
1854
|
-
readonly NET_AMORTIZED_COST: "NET_AMORTIZED_COST";
|
|
1855
|
-
readonly NET_UNBLENDED_COST: "NET_UNBLENDED_COST";
|
|
1856
|
-
readonly NORMALIZED_USAGE_AMOUNT: "NORMALIZED_USAGE_AMOUNT";
|
|
1857
|
-
readonly UNBLENDED_COST: "UNBLENDED_COST";
|
|
1858
|
-
readonly USAGE_QUANTITY: "USAGE_QUANTITY";
|
|
1859
|
-
};
|
|
1860
|
-
/**
|
|
1861
|
-
* @public
|
|
1862
|
-
*/
|
|
1863
|
-
export type Metric = (typeof Metric)[keyof typeof Metric];
|
|
1864
1321
|
/**
|
|
1865
1322
|
* <p>The forecast that's created for your query.</p>
|
|
1866
1323
|
* @public
|
|
@@ -1903,19 +1360,6 @@ export interface GetCostForecastResponse {
|
|
|
1903
1360
|
*/
|
|
1904
1361
|
ForecastResultsByTime?: ForecastResult[] | undefined;
|
|
1905
1362
|
}
|
|
1906
|
-
/**
|
|
1907
|
-
* @public
|
|
1908
|
-
* @enum
|
|
1909
|
-
*/
|
|
1910
|
-
export declare const Context: {
|
|
1911
|
-
readonly COST_AND_USAGE: "COST_AND_USAGE";
|
|
1912
|
-
readonly RESERVATIONS: "RESERVATIONS";
|
|
1913
|
-
readonly SAVINGS_PLANS: "SAVINGS_PLANS";
|
|
1914
|
-
};
|
|
1915
|
-
/**
|
|
1916
|
-
* @public
|
|
1917
|
-
*/
|
|
1918
|
-
export type Context = (typeof Context)[keyof typeof Context];
|
|
1919
1363
|
/**
|
|
1920
1364
|
* @public
|
|
1921
1365
|
*/
|
|
@@ -2224,31 +1668,6 @@ export interface GetReservationCoverageResponse {
|
|
|
2224
1668
|
*/
|
|
2225
1669
|
NextPageToken?: string | undefined;
|
|
2226
1670
|
}
|
|
2227
|
-
/**
|
|
2228
|
-
* @public
|
|
2229
|
-
* @enum
|
|
2230
|
-
*/
|
|
2231
|
-
export declare const LookbackPeriodInDays: {
|
|
2232
|
-
readonly SEVEN_DAYS: "SEVEN_DAYS";
|
|
2233
|
-
readonly SIXTY_DAYS: "SIXTY_DAYS";
|
|
2234
|
-
readonly THIRTY_DAYS: "THIRTY_DAYS";
|
|
2235
|
-
};
|
|
2236
|
-
/**
|
|
2237
|
-
* @public
|
|
2238
|
-
*/
|
|
2239
|
-
export type LookbackPeriodInDays = (typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
|
|
2240
|
-
/**
|
|
2241
|
-
* @public
|
|
2242
|
-
* @enum
|
|
2243
|
-
*/
|
|
2244
|
-
export declare const OfferingClass: {
|
|
2245
|
-
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
2246
|
-
readonly STANDARD: "STANDARD";
|
|
2247
|
-
};
|
|
2248
|
-
/**
|
|
2249
|
-
* @public
|
|
2250
|
-
*/
|
|
2251
|
-
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
2252
1671
|
/**
|
|
2253
1672
|
* <p>The Amazon EC2 hardware specifications that you want Amazon Web Services to provide
|
|
2254
1673
|
* recommendations for.</p>
|
|
@@ -3026,18 +2445,6 @@ export interface GetReservationUtilizationResponse {
|
|
|
3026
2445
|
*/
|
|
3027
2446
|
NextPageToken?: string | undefined;
|
|
3028
2447
|
}
|
|
3029
|
-
/**
|
|
3030
|
-
* @public
|
|
3031
|
-
* @enum
|
|
3032
|
-
*/
|
|
3033
|
-
export declare const RecommendationTarget: {
|
|
3034
|
-
readonly CROSS_INSTANCE_FAMILY: "CROSS_INSTANCE_FAMILY";
|
|
3035
|
-
readonly SAME_INSTANCE_FAMILY: "SAME_INSTANCE_FAMILY";
|
|
3036
|
-
};
|
|
3037
|
-
/**
|
|
3038
|
-
* @public
|
|
3039
|
-
*/
|
|
3040
|
-
export type RecommendationTarget = (typeof RecommendationTarget)[keyof typeof RecommendationTarget];
|
|
3041
2448
|
/**
|
|
3042
2449
|
* <p>You can use <code>RightsizingRecommendationConfiguration</code> to customize
|
|
3043
2450
|
* recommendations across two attributes. You can choose to view recommendations for
|
|
@@ -3350,47 +2757,6 @@ export interface CurrentInstance {
|
|
|
3350
2757
|
*/
|
|
3351
2758
|
CurrencyCode?: string | undefined;
|
|
3352
2759
|
}
|
|
3353
|
-
/**
|
|
3354
|
-
* @public
|
|
3355
|
-
* @enum
|
|
3356
|
-
*/
|
|
3357
|
-
export declare const FindingReasonCode: {
|
|
3358
|
-
readonly CPU_OVER_PROVISIONED: "CPU_OVER_PROVISIONED";
|
|
3359
|
-
readonly CPU_UNDER_PROVISIONED: "CPU_UNDER_PROVISIONED";
|
|
3360
|
-
readonly DISK_IOPS_OVER_PROVISIONED: "DISK_IOPS_OVER_PROVISIONED";
|
|
3361
|
-
readonly DISK_IOPS_UNDER_PROVISIONED: "DISK_IOPS_UNDER_PROVISIONED";
|
|
3362
|
-
readonly DISK_THROUGHPUT_OVER_PROVISIONED: "DISK_THROUGHPUT_OVER_PROVISIONED";
|
|
3363
|
-
readonly DISK_THROUGHPUT_UNDER_PROVISIONED: "DISK_THROUGHPUT_UNDER_PROVISIONED";
|
|
3364
|
-
readonly EBS_IOPS_OVER_PROVISIONED: "EBS_IOPS_OVER_PROVISIONED";
|
|
3365
|
-
readonly EBS_IOPS_UNDER_PROVISIONED: "EBS_IOPS_UNDER_PROVISIONED";
|
|
3366
|
-
readonly EBS_THROUGHPUT_OVER_PROVISIONED: "EBS_THROUGHPUT_OVER_PROVISIONED";
|
|
3367
|
-
readonly EBS_THROUGHPUT_UNDER_PROVISIONED: "EBS_THROUGHPUT_UNDER_PROVISIONED";
|
|
3368
|
-
readonly MEMORY_OVER_PROVISIONED: "MEMORY_OVER_PROVISIONED";
|
|
3369
|
-
readonly MEMORY_UNDER_PROVISIONED: "MEMORY_UNDER_PROVISIONED";
|
|
3370
|
-
readonly NETWORK_BANDWIDTH_OVER_PROVISIONED: "NETWORK_BANDWIDTH_OVER_PROVISIONED";
|
|
3371
|
-
readonly NETWORK_BANDWIDTH_UNDER_PROVISIONED: "NETWORK_BANDWIDTH_UNDER_PROVISIONED";
|
|
3372
|
-
readonly NETWORK_PPS_OVER_PROVISIONED: "NETWORK_PPS_OVER_PROVISIONED";
|
|
3373
|
-
readonly NETWORK_PPS_UNDER_PROVISIONED: "NETWORK_PPS_UNDER_PROVISIONED";
|
|
3374
|
-
};
|
|
3375
|
-
/**
|
|
3376
|
-
* @public
|
|
3377
|
-
*/
|
|
3378
|
-
export type FindingReasonCode = (typeof FindingReasonCode)[keyof typeof FindingReasonCode];
|
|
3379
|
-
/**
|
|
3380
|
-
* @public
|
|
3381
|
-
* @enum
|
|
3382
|
-
*/
|
|
3383
|
-
export declare const PlatformDifference: {
|
|
3384
|
-
readonly HYPERVISOR: "HYPERVISOR";
|
|
3385
|
-
readonly INSTANCE_STORE_AVAILABILITY: "INSTANCE_STORE_AVAILABILITY";
|
|
3386
|
-
readonly NETWORK_INTERFACE: "NETWORK_INTERFACE";
|
|
3387
|
-
readonly STORAGE_INTERFACE: "STORAGE_INTERFACE";
|
|
3388
|
-
readonly VIRTUALIZATION_TYPE: "VIRTUALIZATION_TYPE";
|
|
3389
|
-
};
|
|
3390
|
-
/**
|
|
3391
|
-
* @public
|
|
3392
|
-
*/
|
|
3393
|
-
export type PlatformDifference = (typeof PlatformDifference)[keyof typeof PlatformDifference];
|
|
3394
2760
|
/**
|
|
3395
2761
|
* <p>Details on recommended instance.</p>
|
|
3396
2762
|
* @public
|
|
@@ -3447,18 +2813,6 @@ export interface ModifyRecommendationDetail {
|
|
|
3447
2813
|
*/
|
|
3448
2814
|
TargetInstances?: TargetInstance[] | undefined;
|
|
3449
2815
|
}
|
|
3450
|
-
/**
|
|
3451
|
-
* @public
|
|
3452
|
-
* @enum
|
|
3453
|
-
*/
|
|
3454
|
-
export declare const RightsizingType: {
|
|
3455
|
-
readonly MODIFY: "MODIFY";
|
|
3456
|
-
readonly TERMINATE: "TERMINATE";
|
|
3457
|
-
};
|
|
3458
|
-
/**
|
|
3459
|
-
* @public
|
|
3460
|
-
*/
|
|
3461
|
-
export type RightsizingType = (typeof RightsizingType)[keyof typeof RightsizingType];
|
|
3462
2816
|
/**
|
|
3463
2817
|
* <p>Details on termination recommendation. </p>
|
|
3464
2818
|
* @public
|
|
@@ -4269,20 +3623,6 @@ export interface GetSavingsPlansUtilizationResponse {
|
|
|
4269
3623
|
*/
|
|
4270
3624
|
Total: SavingsPlansUtilizationAggregates | undefined;
|
|
4271
3625
|
}
|
|
4272
|
-
/**
|
|
4273
|
-
* @public
|
|
4274
|
-
* @enum
|
|
4275
|
-
*/
|
|
4276
|
-
export declare const SavingsPlansDataType: {
|
|
4277
|
-
readonly AMORTIZED_COMMITMENT: "AMORTIZED_COMMITMENT";
|
|
4278
|
-
readonly ATTRIBUTES: "ATTRIBUTES";
|
|
4279
|
-
readonly SAVINGS: "SAVINGS";
|
|
4280
|
-
readonly UTILIZATION: "UTILIZATION";
|
|
4281
|
-
};
|
|
4282
|
-
/**
|
|
4283
|
-
* @public
|
|
4284
|
-
*/
|
|
4285
|
-
export type SavingsPlansDataType = (typeof SavingsPlansDataType)[keyof typeof SavingsPlansDataType];
|
|
4286
3626
|
/**
|
|
4287
3627
|
* <p>A single daily or monthly Savings Plans utilization rate and details for your account.
|
|
4288
3628
|
* A management account in an organization have access to member accounts. You can use
|
|
@@ -4389,21 +3729,6 @@ export interface GetUsageForecastResponse {
|
|
|
4389
3729
|
*/
|
|
4390
3730
|
ForecastResultsByTime?: ForecastResult[] | undefined;
|
|
4391
3731
|
}
|
|
4392
|
-
/**
|
|
4393
|
-
* <p>Cost Explorer was unable to identify the usage unit. Provide
|
|
4394
|
-
* <code>UsageType/UsageTypeGroup</code> filter selections that contain matching units,
|
|
4395
|
-
* for example: <code>hours</code>.</p>
|
|
4396
|
-
* @public
|
|
4397
|
-
*/
|
|
4398
|
-
export declare class UnresolvableUsageUnitException extends __BaseException {
|
|
4399
|
-
readonly name: "UnresolvableUsageUnitException";
|
|
4400
|
-
readonly $fault: "client";
|
|
4401
|
-
Message?: string | undefined;
|
|
4402
|
-
/**
|
|
4403
|
-
* @internal
|
|
4404
|
-
*/
|
|
4405
|
-
constructor(opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>);
|
|
4406
|
-
}
|
|
4407
3732
|
/**
|
|
4408
3733
|
* @public
|
|
4409
3734
|
*/
|
|
@@ -4463,19 +3788,6 @@ export interface ListCostAllocationTagBackfillHistoryRequest {
|
|
|
4463
3788
|
*/
|
|
4464
3789
|
MaxResults?: number | undefined;
|
|
4465
3790
|
}
|
|
4466
|
-
/**
|
|
4467
|
-
* @public
|
|
4468
|
-
* @enum
|
|
4469
|
-
*/
|
|
4470
|
-
export declare const CostAllocationTagBackfillStatus: {
|
|
4471
|
-
readonly FAILED: "FAILED";
|
|
4472
|
-
readonly PROCESSING: "PROCESSING";
|
|
4473
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
4474
|
-
};
|
|
4475
|
-
/**
|
|
4476
|
-
* @public
|
|
4477
|
-
*/
|
|
4478
|
-
export type CostAllocationTagBackfillStatus = (typeof CostAllocationTagBackfillStatus)[keyof typeof CostAllocationTagBackfillStatus];
|
|
4479
3791
|
/**
|
|
4480
3792
|
* <p>
|
|
4481
3793
|
* The cost allocation tag backfill request structure that contains metadata and details of a certain backfill.</p>
|
|
@@ -4537,30 +3849,6 @@ export interface ListCostAllocationTagBackfillHistoryResponse {
|
|
|
4537
3849
|
*/
|
|
4538
3850
|
NextToken?: string | undefined;
|
|
4539
3851
|
}
|
|
4540
|
-
/**
|
|
4541
|
-
* @public
|
|
4542
|
-
* @enum
|
|
4543
|
-
*/
|
|
4544
|
-
export declare const CostAllocationTagStatus: {
|
|
4545
|
-
readonly ACTIVE: "Active";
|
|
4546
|
-
readonly INACTIVE: "Inactive";
|
|
4547
|
-
};
|
|
4548
|
-
/**
|
|
4549
|
-
* @public
|
|
4550
|
-
*/
|
|
4551
|
-
export type CostAllocationTagStatus = (typeof CostAllocationTagStatus)[keyof typeof CostAllocationTagStatus];
|
|
4552
|
-
/**
|
|
4553
|
-
* @public
|
|
4554
|
-
* @enum
|
|
4555
|
-
*/
|
|
4556
|
-
export declare const CostAllocationTagType: {
|
|
4557
|
-
readonly AWS_GENERATED: "AWSGenerated";
|
|
4558
|
-
readonly USER_DEFINED: "UserDefined";
|
|
4559
|
-
};
|
|
4560
|
-
/**
|
|
4561
|
-
* @public
|
|
4562
|
-
*/
|
|
4563
|
-
export type CostAllocationTagType = (typeof CostAllocationTagType)[keyof typeof CostAllocationTagType];
|
|
4564
3852
|
/**
|
|
4565
3853
|
* @public
|
|
4566
3854
|
*/
|
|
@@ -4738,19 +4026,6 @@ export interface ListCostCategoryDefinitionsResponse {
|
|
|
4738
4026
|
*/
|
|
4739
4027
|
NextToken?: string | undefined;
|
|
4740
4028
|
}
|
|
4741
|
-
/**
|
|
4742
|
-
* @public
|
|
4743
|
-
* @enum
|
|
4744
|
-
*/
|
|
4745
|
-
export declare const GenerationStatus: {
|
|
4746
|
-
readonly FAILED: "FAILED";
|
|
4747
|
-
readonly PROCESSING: "PROCESSING";
|
|
4748
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
4749
|
-
};
|
|
4750
|
-
/**
|
|
4751
|
-
* @public
|
|
4752
|
-
*/
|
|
4753
|
-
export type GenerationStatus = (typeof GenerationStatus)[keyof typeof GenerationStatus];
|
|
4754
4029
|
/**
|
|
4755
4030
|
* @public
|
|
4756
4031
|
*/
|
|
@@ -4871,19 +4146,6 @@ export interface ProvideAnomalyFeedbackResponse {
|
|
|
4871
4146
|
*/
|
|
4872
4147
|
AnomalyId: string | undefined;
|
|
4873
4148
|
}
|
|
4874
|
-
/**
|
|
4875
|
-
* <p>A request to generate a recommendation or analysis is already in progress.</p>
|
|
4876
|
-
* @public
|
|
4877
|
-
*/
|
|
4878
|
-
export declare class GenerationExistsException extends __BaseException {
|
|
4879
|
-
readonly name: "GenerationExistsException";
|
|
4880
|
-
readonly $fault: "client";
|
|
4881
|
-
Message?: string | undefined;
|
|
4882
|
-
/**
|
|
4883
|
-
* @internal
|
|
4884
|
-
*/
|
|
4885
|
-
constructor(opts: __ExceptionOptionType<GenerationExistsException, __BaseException>);
|
|
4886
|
-
}
|
|
4887
4149
|
/**
|
|
4888
4150
|
* @public
|
|
4889
4151
|
*/
|
|
@@ -4914,21 +4176,6 @@ export interface StartCommitmentPurchaseAnalysisResponse {
|
|
|
4914
4176
|
*/
|
|
4915
4177
|
EstimatedCompletionTime: string | undefined;
|
|
4916
4178
|
}
|
|
4917
|
-
/**
|
|
4918
|
-
* <p>
|
|
4919
|
-
* A request to backfill is already in progress. Once the previous request is complete, you can create another request.
|
|
4920
|
-
* </p>
|
|
4921
|
-
* @public
|
|
4922
|
-
*/
|
|
4923
|
-
export declare class BackfillLimitExceededException extends __BaseException {
|
|
4924
|
-
readonly name: "BackfillLimitExceededException";
|
|
4925
|
-
readonly $fault: "client";
|
|
4926
|
-
Message?: string | undefined;
|
|
4927
|
-
/**
|
|
4928
|
-
* @internal
|
|
4929
|
-
*/
|
|
4930
|
-
constructor(opts: __ExceptionOptionType<BackfillLimitExceededException, __BaseException>);
|
|
4931
|
-
}
|
|
4932
4179
|
/**
|
|
4933
4180
|
* @public
|
|
4934
4181
|
*/
|
|
@@ -5028,21 +4275,6 @@ export interface TagResourceRequest {
|
|
|
5028
4275
|
*/
|
|
5029
4276
|
export interface TagResourceResponse {
|
|
5030
4277
|
}
|
|
5031
|
-
/**
|
|
5032
|
-
* <p>Can occur if you specify a number of tags for a resource greater than the maximum 50
|
|
5033
|
-
* user tags per resource.</p>
|
|
5034
|
-
* @public
|
|
5035
|
-
*/
|
|
5036
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
5037
|
-
readonly name: "TooManyTagsException";
|
|
5038
|
-
readonly $fault: "client";
|
|
5039
|
-
Message?: string | undefined;
|
|
5040
|
-
ResourceName?: string | undefined;
|
|
5041
|
-
/**
|
|
5042
|
-
* @internal
|
|
5043
|
-
*/
|
|
5044
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
5045
|
-
}
|
|
5046
4278
|
/**
|
|
5047
4279
|
* @public
|
|
5048
4280
|
*/
|
|
@@ -5370,138 +4602,70 @@ export interface AnomalyMonitor {
|
|
|
5370
4602
|
*/
|
|
5371
4603
|
LastEvaluatedDate?: string | undefined;
|
|
5372
4604
|
/**
|
|
5373
|
-
* <p>The
|
|
4605
|
+
* <p>The type of the monitor. </p>
|
|
4606
|
+
* <p>Set this to <code>DIMENSIONAL</code> for an Amazon Web Services managed monitor.
|
|
4607
|
+
* Amazon Web Services managed monitors automatically track up to the top 5,000 values by
|
|
4608
|
+
* cost within a dimension of your choosing. Each dimension value is evaluated
|
|
4609
|
+
* independently. If you start incurring cost in a new value of your chosen dimension, it
|
|
4610
|
+
* will automatically be analyzed by an Amazon Web Services managed monitor.</p>
|
|
4611
|
+
* <p>Set this to <code>CUSTOM</code> for a customer managed monitor. Customer managed
|
|
4612
|
+
* monitors let you select specific dimension values that get monitored in aggregate.
|
|
4613
|
+
* </p>
|
|
4614
|
+
* <p>For more information about monitor types, see <a href="https://docs.aws.amazon.com/cost-management/latest/userguide/getting-started-ad.html#monitor-type-def">Monitor
|
|
4615
|
+
* types</a> in the <i>Billing and Cost Management User Guide</i>.</p>
|
|
5374
4616
|
* @public
|
|
5375
4617
|
*/
|
|
5376
4618
|
MonitorType: MonitorType | undefined;
|
|
5377
4619
|
/**
|
|
5378
|
-
* <p>
|
|
4620
|
+
* <p>For customer managed monitors, do not specify this field.</p>
|
|
4621
|
+
* <p>For Amazon Web Services managed monitors, this field controls which cost dimension is
|
|
4622
|
+
* automatically analyzed by the monitor. For <code>TAG</code> and <code>COST_CATEGORY
|
|
4623
|
+
* </code> dimensions, you must also specify MonitorSpecification to configure the specific
|
|
4624
|
+
* tag or cost category key to analyze.</p>
|
|
5379
4625
|
* @public
|
|
5380
4626
|
*/
|
|
5381
4627
|
MonitorDimension?: MonitorDimension | undefined;
|
|
5382
4628
|
/**
|
|
5383
|
-
* <p>
|
|
5384
|
-
*
|
|
5385
|
-
*
|
|
5386
|
-
* <p>There are two patterns:</p>
|
|
4629
|
+
* <p>An <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html">Expression</a>
|
|
4630
|
+
* object used to control what costs the monitor analyzes for anomalies.</p>
|
|
4631
|
+
* <p>For Amazon Web Services managed monitors:</p>
|
|
5387
4632
|
* <ul>
|
|
5388
4633
|
* <li>
|
|
5389
|
-
* <p>
|
|
5390
|
-
*
|
|
5391
|
-
* <li>
|
|
5392
|
-
* <p>There are three types of simple dimension values:
|
|
5393
|
-
* <code>CostCategories</code>, <code>Tags</code>, and
|
|
5394
|
-
* <code>Dimensions</code>.</p>
|
|
5395
|
-
* <ul>
|
|
5396
|
-
* <li>
|
|
5397
|
-
* <p>Specify the <code>CostCategories</code> field to define a
|
|
5398
|
-
* filter that acts on Cost Categories.</p>
|
|
5399
|
-
* </li>
|
|
5400
|
-
* <li>
|
|
5401
|
-
* <p>Specify the <code>Tags</code> field to define a filter that
|
|
5402
|
-
* acts on Cost Allocation Tags.</p>
|
|
5403
|
-
* </li>
|
|
5404
|
-
* <li>
|
|
5405
|
-
* <p>Specify the <code>Dimensions</code> field to define a filter
|
|
5406
|
-
* that acts on the <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_DimensionValues.html">
|
|
5407
|
-
* <code>DimensionValues</code>
|
|
5408
|
-
* </a>.</p>
|
|
5409
|
-
* </li>
|
|
5410
|
-
* </ul>
|
|
5411
|
-
* </li>
|
|
5412
|
-
* <li>
|
|
5413
|
-
* <p>For each filter type, you can set the dimension name and values for
|
|
5414
|
-
* the filters that you plan to use.</p>
|
|
5415
|
-
* <ul>
|
|
5416
|
-
* <li>
|
|
5417
|
-
* <p>For example, you can filter for <code>REGION==us-east-1 OR
|
|
5418
|
-
* REGION==us-west-1</code>. For
|
|
5419
|
-
* <code>GetRightsizingRecommendation</code>, the Region is a
|
|
5420
|
-
* full name (for example, <code>REGION==US East (N.
|
|
5421
|
-
* Virginia)</code>.</p>
|
|
5422
|
-
* </li>
|
|
5423
|
-
* <li>
|
|
5424
|
-
* <p>The corresponding <code>Expression</code> for this example is
|
|
5425
|
-
* as follows: <code>\{ "Dimensions": \{ "Key": "REGION", "Values": [
|
|
5426
|
-
* "us-east-1", "us-west-1" ] \} \}</code>
|
|
5427
|
-
* </p>
|
|
5428
|
-
* </li>
|
|
5429
|
-
* <li>
|
|
5430
|
-
* <p>As shown in the previous example, lists of dimension values
|
|
5431
|
-
* are combined with <code>OR</code> when applying the
|
|
5432
|
-
* filter.</p>
|
|
5433
|
-
* </li>
|
|
5434
|
-
* </ul>
|
|
5435
|
-
* </li>
|
|
5436
|
-
* <li>
|
|
5437
|
-
* <p>You can also set different match options to further control how the
|
|
5438
|
-
* filter behaves. Not all APIs support match options. Refer to the
|
|
5439
|
-
* documentation for each specific API to see what is supported.</p>
|
|
5440
|
-
* <ul>
|
|
5441
|
-
* <li>
|
|
5442
|
-
* <p>For example, you can filter for linked account names that
|
|
5443
|
-
* start with "a".</p>
|
|
5444
|
-
* </li>
|
|
5445
|
-
* <li>
|
|
5446
|
-
* <p>The corresponding <code>Expression</code> for this example is
|
|
5447
|
-
* as follows: <code>\{ "Dimensions": \{ "Key":
|
|
5448
|
-
* "LINKED_ACCOUNT_NAME", "MatchOptions": [ "STARTS_WITH" ],
|
|
5449
|
-
* "Values": [ "a" ] \} \}</code>
|
|
5450
|
-
* </p>
|
|
5451
|
-
* </li>
|
|
5452
|
-
* </ul>
|
|
5453
|
-
* </li>
|
|
5454
|
-
* </ul>
|
|
4634
|
+
* <p>If MonitorDimension is <code>SERVICE</code> or <code>LINKED_ACCOUNT</code>, do
|
|
4635
|
+
* not specify this field</p>
|
|
5455
4636
|
* </li>
|
|
5456
4637
|
* <li>
|
|
5457
|
-
* <p>
|
|
5458
|
-
*
|
|
5459
|
-
*
|
|
5460
|
-
*
|
|
5461
|
-
*
|
|
5462
|
-
*
|
|
5463
|
-
*
|
|
5464
|
-
*
|
|
5465
|
-
*
|
|
5466
|
-
*
|
|
5467
|
-
*
|
|
5468
|
-
*
|
|
5469
|
-
*
|
|
5470
|
-
*
|
|
5471
|
-
*
|
|
5472
|
-
*
|
|
5473
|
-
*
|
|
5474
|
-
*
|
|
5475
|
-
*
|
|
5476
|
-
*
|
|
5477
|
-
*
|
|
5478
|
-
*
|
|
5479
|
-
* </
|
|
5480
|
-
*
|
|
5481
|
-
*
|
|
5482
|
-
*
|
|
5483
|
-
*
|
|
5484
|
-
*
|
|
5485
|
-
*
|
|
5486
|
-
* </p>
|
|
5487
|
-
* <p>The following is an example of the corresponding error message:
|
|
5488
|
-
* <code>"Expression has more than one roots. Only one root operator is
|
|
5489
|
-
* allowed for each expression: And, Or, Not, Dimensions, Tags,
|
|
5490
|
-
* CostCategories"</code>
|
|
5491
|
-
* </p>
|
|
5492
|
-
* </note>
|
|
4638
|
+
* <p>If MonitorDimension is <code>TAG</code>, set this field to <code>\{ "Tags": \{
|
|
4639
|
+
* "Key": "your tag key" \} \}</code>
|
|
4640
|
+
* </p>
|
|
4641
|
+
* </li>
|
|
4642
|
+
* <li>
|
|
4643
|
+
* <p>If MonitorDimension is <code>COST_CATEGORY</code>, set this field to <code>\{
|
|
4644
|
+
* "CostCategories": \{ "Key": "your cost category key" \} \}</code>
|
|
4645
|
+
* </p>
|
|
4646
|
+
* </li>
|
|
4647
|
+
* </ul>
|
|
4648
|
+
* <p>For customer managed monitors:</p>
|
|
4649
|
+
* <ul>
|
|
4650
|
+
* <li>
|
|
4651
|
+
* <p>To track linked accounts, set this field to <code>\{ "Dimensions": \{ "Key":
|
|
4652
|
+
* "LINKED_ACCOUNT", "Values": [ "your list of up to 10 account IDs" ] \} \}
|
|
4653
|
+
* </code>
|
|
4654
|
+
* </p>
|
|
4655
|
+
* </li>
|
|
4656
|
+
* <li>
|
|
4657
|
+
* <p>To track cost allocation tags, set this field to <code>\{ "Tags": \{ "Key":
|
|
4658
|
+
* "your tag key", "Values": [ "your list of up to 10 tag values" ] \} \}
|
|
4659
|
+
* </code>
|
|
4660
|
+
* </p>
|
|
4661
|
+
* </li>
|
|
4662
|
+
* <li>
|
|
4663
|
+
* <p>To track cost categories, set this field to<code>\{ "CostCategories": \{ "Key":
|
|
4664
|
+
* "your cost category key", "Values": [ "your cost category value" ] \} \}
|
|
4665
|
+
* </code>
|
|
4666
|
+
* </p>
|
|
5493
4667
|
* </li>
|
|
5494
4668
|
* </ul>
|
|
5495
|
-
* <note>
|
|
5496
|
-
* <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
|
|
5497
|
-
* NOT isn't supported. OR isn't supported between different dimensions, or dimensions
|
|
5498
|
-
* and tags. NOT operators aren't supported. Dimensions are also limited to
|
|
5499
|
-
* <code>LINKED_ACCOUNT</code>, <code>REGION</code>, or
|
|
5500
|
-
* <code>RIGHTSIZING_TYPE</code>.</p>
|
|
5501
|
-
* <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
|
|
5502
|
-
* supported. AND and OR aren't supported. Dimensions are limited to
|
|
5503
|
-
* <code>LINKED_ACCOUNT</code>.</p>
|
|
5504
|
-
* </note>
|
|
5505
4669
|
* @public
|
|
5506
4670
|
*/
|
|
5507
4671
|
MonitorSpecification?: Expression | undefined;
|