@aws-sdk/client-compute-optimizer 3.183.0 → 3.185.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_0.js +2 -2
- package/dist-es/ComputeOptimizer.js +81 -74
- package/dist-es/ComputeOptimizerClient.js +28 -22
- package/dist-es/commands/DeleteRecommendationPreferencesCommand.js +28 -21
- package/dist-es/commands/DescribeRecommendationExportJobsCommand.js +28 -21
- package/dist-es/commands/ExportAutoScalingGroupRecommendationsCommand.js +28 -21
- package/dist-es/commands/ExportEBSVolumeRecommendationsCommand.js +28 -21
- package/dist-es/commands/ExportEC2InstanceRecommendationsCommand.js +28 -21
- package/dist-es/commands/ExportLambdaFunctionRecommendationsCommand.js +28 -21
- package/dist-es/commands/GetAutoScalingGroupRecommendationsCommand.js +28 -21
- package/dist-es/commands/GetEBSVolumeRecommendationsCommand.js +28 -21
- package/dist-es/commands/GetEC2InstanceRecommendationsCommand.js +28 -21
- package/dist-es/commands/GetEC2RecommendationProjectedMetricsCommand.js +28 -21
- package/dist-es/commands/GetEffectiveRecommendationPreferencesCommand.js +28 -21
- package/dist-es/commands/GetEnrollmentStatusCommand.js +28 -21
- package/dist-es/commands/GetEnrollmentStatusesForOrganizationCommand.js +28 -21
- package/dist-es/commands/GetLambdaFunctionRecommendationsCommand.js +28 -21
- package/dist-es/commands/GetRecommendationPreferencesCommand.js +28 -21
- package/dist-es/commands/GetRecommendationSummariesCommand.js +28 -21
- package/dist-es/commands/PutRecommendationPreferencesCommand.js +28 -21
- package/dist-es/commands/UpdateEnrollmentStatusCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ComputeOptimizerServiceException.js +10 -5
- package/dist-es/models/models_0.js +174 -321
- package/dist-es/protocols/Aws_json1_0.js +2064 -1679
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,16 +1,17 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
14
15
|
export var Status;
|
|
15
16
|
(function (Status) {
|
|
16
17
|
Status["ACTIVE"] = "Active";
|
|
@@ -110,90 +111,90 @@ export var ScopeName;
|
|
|
110
111
|
ScopeName["ORGANIZATION"] = "Organization";
|
|
111
112
|
ScopeName["RESOURCE_ARN"] = "ResourceArn";
|
|
112
113
|
})(ScopeName || (ScopeName = {}));
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
this.$fault = "server";
|
|
122
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
114
|
+
var InternalServerException = (function (_super) {
|
|
115
|
+
__extends(InternalServerException, _super);
|
|
116
|
+
function InternalServerException(opts) {
|
|
117
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
118
|
+
_this.name = "InternalServerException";
|
|
119
|
+
_this.$fault = "server";
|
|
120
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
121
|
+
return _this;
|
|
123
122
|
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
123
|
+
return InternalServerException;
|
|
124
|
+
}(__BaseException));
|
|
125
|
+
export { InternalServerException };
|
|
126
|
+
var InvalidParameterValueException = (function (_super) {
|
|
127
|
+
__extends(InvalidParameterValueException, _super);
|
|
128
|
+
function InvalidParameterValueException(opts) {
|
|
129
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
|
|
130
|
+
_this.name = "InvalidParameterValueException";
|
|
131
|
+
_this.$fault = "client";
|
|
132
|
+
Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
|
|
133
|
+
return _this;
|
|
135
134
|
}
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
135
|
+
return InvalidParameterValueException;
|
|
136
|
+
}(__BaseException));
|
|
137
|
+
export { InvalidParameterValueException };
|
|
138
|
+
var MissingAuthenticationToken = (function (_super) {
|
|
139
|
+
__extends(MissingAuthenticationToken, _super);
|
|
140
|
+
function MissingAuthenticationToken(opts) {
|
|
141
|
+
var _this = _super.call(this, __assign({ name: "MissingAuthenticationToken", $fault: "client" }, opts)) || this;
|
|
142
|
+
_this.name = "MissingAuthenticationToken";
|
|
143
|
+
_this.$fault = "client";
|
|
144
|
+
Object.setPrototypeOf(_this, MissingAuthenticationToken.prototype);
|
|
145
|
+
return _this;
|
|
147
146
|
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
147
|
+
return MissingAuthenticationToken;
|
|
148
|
+
}(__BaseException));
|
|
149
|
+
export { MissingAuthenticationToken };
|
|
150
|
+
var OptInRequiredException = (function (_super) {
|
|
151
|
+
__extends(OptInRequiredException, _super);
|
|
152
|
+
function OptInRequiredException(opts) {
|
|
153
|
+
var _this = _super.call(this, __assign({ name: "OptInRequiredException", $fault: "client" }, opts)) || this;
|
|
154
|
+
_this.name = "OptInRequiredException";
|
|
155
|
+
_this.$fault = "client";
|
|
156
|
+
Object.setPrototypeOf(_this, OptInRequiredException.prototype);
|
|
157
|
+
return _this;
|
|
159
158
|
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
159
|
+
return OptInRequiredException;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { OptInRequiredException };
|
|
162
|
+
var ResourceNotFoundException = (function (_super) {
|
|
163
|
+
__extends(ResourceNotFoundException, _super);
|
|
164
|
+
function ResourceNotFoundException(opts) {
|
|
165
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
166
|
+
_this.name = "ResourceNotFoundException";
|
|
167
|
+
_this.$fault = "client";
|
|
168
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
169
|
+
return _this;
|
|
171
170
|
}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
171
|
+
return ResourceNotFoundException;
|
|
172
|
+
}(__BaseException));
|
|
173
|
+
export { ResourceNotFoundException };
|
|
174
|
+
var ServiceUnavailableException = (function (_super) {
|
|
175
|
+
__extends(ServiceUnavailableException, _super);
|
|
176
|
+
function ServiceUnavailableException(opts) {
|
|
177
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
178
|
+
_this.name = "ServiceUnavailableException";
|
|
179
|
+
_this.$fault = "server";
|
|
180
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
181
|
+
return _this;
|
|
183
182
|
}
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
183
|
+
return ServiceUnavailableException;
|
|
184
|
+
}(__BaseException));
|
|
185
|
+
export { ServiceUnavailableException };
|
|
186
|
+
var ThrottlingException = (function (_super) {
|
|
187
|
+
__extends(ThrottlingException, _super);
|
|
188
|
+
function ThrottlingException(opts) {
|
|
189
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
190
|
+
_this.name = "ThrottlingException";
|
|
191
|
+
_this.$fault = "client";
|
|
192
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
193
|
+
return _this;
|
|
195
194
|
}
|
|
196
|
-
|
|
195
|
+
return ThrottlingException;
|
|
196
|
+
}(__BaseException));
|
|
197
|
+
export { ThrottlingException };
|
|
197
198
|
export var JobFilterName;
|
|
198
199
|
(function (JobFilterName) {
|
|
199
200
|
JobFilterName["JOB_STATUS"] = "JobStatus";
|
|
@@ -273,18 +274,18 @@ export var FilterName;
|
|
|
273
274
|
FilterName["FINDING_REASON_CODES"] = "FindingReasonCodes";
|
|
274
275
|
FilterName["RECOMMENDATION_SOURCE_TYPE"] = "RecommendationSourceType";
|
|
275
276
|
})(FilterName || (FilterName = {}));
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
this.$fault = "client";
|
|
285
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
277
|
+
var LimitExceededException = (function (_super) {
|
|
278
|
+
__extends(LimitExceededException, _super);
|
|
279
|
+
function LimitExceededException(opts) {
|
|
280
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
281
|
+
_this.name = "LimitExceededException";
|
|
282
|
+
_this.$fault = "client";
|
|
283
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
284
|
+
return _this;
|
|
286
285
|
}
|
|
287
|
-
|
|
286
|
+
return LimitExceededException;
|
|
287
|
+
}(__BaseException));
|
|
288
|
+
export { LimitExceededException };
|
|
288
289
|
export var ExportableVolumeField;
|
|
289
290
|
(function (ExportableVolumeField) {
|
|
290
291
|
ExportableVolumeField["ACCOUNT_ID"] = "AccountId";
|
|
@@ -498,225 +499,77 @@ export var FindingReasonCode;
|
|
|
498
499
|
FindingReasonCode["MEMORY_OVER_PROVISIONED"] = "MemoryOverprovisioned";
|
|
499
500
|
FindingReasonCode["MEMORY_UNDER_PROVISIONED"] = "MemoryUnderprovisioned";
|
|
500
501
|
})(FindingReasonCode || (FindingReasonCode = {}));
|
|
501
|
-
export
|
|
502
|
-
|
|
503
|
-
});
|
|
504
|
-
export
|
|
505
|
-
|
|
506
|
-
});
|
|
507
|
-
export
|
|
508
|
-
|
|
509
|
-
});
|
|
510
|
-
export
|
|
511
|
-
|
|
512
|
-
});
|
|
513
|
-
export
|
|
514
|
-
|
|
515
|
-
});
|
|
516
|
-
export
|
|
517
|
-
|
|
518
|
-
});
|
|
519
|
-
export
|
|
520
|
-
|
|
521
|
-
});
|
|
522
|
-
export
|
|
523
|
-
|
|
524
|
-
});
|
|
525
|
-
export
|
|
526
|
-
|
|
527
|
-
});
|
|
528
|
-
export
|
|
529
|
-
|
|
530
|
-
});
|
|
531
|
-
export
|
|
532
|
-
|
|
533
|
-
});
|
|
534
|
-
export
|
|
535
|
-
|
|
536
|
-
});
|
|
537
|
-
export
|
|
538
|
-
|
|
539
|
-
});
|
|
540
|
-
export
|
|
541
|
-
|
|
542
|
-
});
|
|
543
|
-
export
|
|
544
|
-
|
|
545
|
-
});
|
|
546
|
-
export
|
|
547
|
-
|
|
548
|
-
});
|
|
549
|
-
export
|
|
550
|
-
|
|
551
|
-
});
|
|
552
|
-
export
|
|
553
|
-
|
|
554
|
-
});
|
|
555
|
-
export
|
|
556
|
-
|
|
557
|
-
});
|
|
558
|
-
export
|
|
559
|
-
|
|
560
|
-
});
|
|
561
|
-
export
|
|
562
|
-
|
|
563
|
-
});
|
|
564
|
-
export
|
|
565
|
-
|
|
566
|
-
});
|
|
567
|
-
export
|
|
568
|
-
|
|
569
|
-
});
|
|
570
|
-
export
|
|
571
|
-
|
|
572
|
-
});
|
|
573
|
-
export
|
|
574
|
-
|
|
575
|
-
});
|
|
576
|
-
export const ExportEC2InstanceRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
577
|
-
...obj,
|
|
578
|
-
});
|
|
579
|
-
export const ExportEC2InstanceRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
580
|
-
...obj,
|
|
581
|
-
});
|
|
582
|
-
export const LambdaFunctionRecommendationFilterFilterSensitiveLog = (obj) => ({
|
|
583
|
-
...obj,
|
|
584
|
-
});
|
|
585
|
-
export const ExportLambdaFunctionRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
586
|
-
...obj,
|
|
587
|
-
});
|
|
588
|
-
export const ExportLambdaFunctionRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
589
|
-
...obj,
|
|
590
|
-
});
|
|
591
|
-
export const GetAutoScalingGroupRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
592
|
-
...obj,
|
|
593
|
-
});
|
|
594
|
-
export const GetRecommendationErrorFilterSensitiveLog = (obj) => ({
|
|
595
|
-
...obj,
|
|
596
|
-
});
|
|
597
|
-
export const GetAutoScalingGroupRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
598
|
-
...obj,
|
|
599
|
-
});
|
|
600
|
-
export const GetEBSVolumeRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
601
|
-
...obj,
|
|
602
|
-
});
|
|
603
|
-
export const VolumeConfigurationFilterSensitiveLog = (obj) => ({
|
|
604
|
-
...obj,
|
|
605
|
-
});
|
|
606
|
-
export const EBSUtilizationMetricFilterSensitiveLog = (obj) => ({
|
|
607
|
-
...obj,
|
|
608
|
-
});
|
|
609
|
-
export const VolumeRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
610
|
-
...obj,
|
|
611
|
-
});
|
|
612
|
-
export const VolumeRecommendationFilterSensitiveLog = (obj) => ({
|
|
613
|
-
...obj,
|
|
614
|
-
});
|
|
615
|
-
export const GetEBSVolumeRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
616
|
-
...obj,
|
|
617
|
-
});
|
|
618
|
-
export const GetEC2InstanceRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
619
|
-
...obj,
|
|
620
|
-
});
|
|
621
|
-
export const InstanceRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
622
|
-
...obj,
|
|
623
|
-
});
|
|
624
|
-
export const RecommendationSourceFilterSensitiveLog = (obj) => ({
|
|
625
|
-
...obj,
|
|
626
|
-
});
|
|
627
|
-
export const InstanceRecommendationFilterSensitiveLog = (obj) => ({
|
|
628
|
-
...obj,
|
|
629
|
-
});
|
|
630
|
-
export const GetEC2InstanceRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
631
|
-
...obj,
|
|
632
|
-
});
|
|
633
|
-
export const GetEC2RecommendationProjectedMetricsRequestFilterSensitiveLog = (obj) => ({
|
|
634
|
-
...obj,
|
|
635
|
-
});
|
|
636
|
-
export const ProjectedMetricFilterSensitiveLog = (obj) => ({
|
|
637
|
-
...obj,
|
|
638
|
-
});
|
|
639
|
-
export const RecommendedOptionProjectedMetricFilterSensitiveLog = (obj) => ({
|
|
640
|
-
...obj,
|
|
641
|
-
});
|
|
642
|
-
export const GetEC2RecommendationProjectedMetricsResponseFilterSensitiveLog = (obj) => ({
|
|
643
|
-
...obj,
|
|
644
|
-
});
|
|
645
|
-
export const GetEffectiveRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
646
|
-
...obj,
|
|
647
|
-
});
|
|
648
|
-
export const GetEffectiveRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
649
|
-
...obj,
|
|
650
|
-
});
|
|
651
|
-
export const GetEnrollmentStatusRequestFilterSensitiveLog = (obj) => ({
|
|
652
|
-
...obj,
|
|
653
|
-
});
|
|
654
|
-
export const GetEnrollmentStatusResponseFilterSensitiveLog = (obj) => ({
|
|
655
|
-
...obj,
|
|
656
|
-
});
|
|
657
|
-
export const EnrollmentFilterFilterSensitiveLog = (obj) => ({
|
|
658
|
-
...obj,
|
|
659
|
-
});
|
|
660
|
-
export const GetEnrollmentStatusesForOrganizationRequestFilterSensitiveLog = (obj) => ({
|
|
661
|
-
...obj,
|
|
662
|
-
});
|
|
663
|
-
export const GetEnrollmentStatusesForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
664
|
-
...obj,
|
|
665
|
-
});
|
|
666
|
-
export const GetLambdaFunctionRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
667
|
-
...obj,
|
|
668
|
-
});
|
|
669
|
-
export const LambdaFunctionMemoryProjectedMetricFilterSensitiveLog = (obj) => ({
|
|
670
|
-
...obj,
|
|
671
|
-
});
|
|
672
|
-
export const LambdaFunctionMemoryRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
673
|
-
...obj,
|
|
674
|
-
});
|
|
675
|
-
export const LambdaFunctionUtilizationMetricFilterSensitiveLog = (obj) => ({
|
|
676
|
-
...obj,
|
|
677
|
-
});
|
|
678
|
-
export const LambdaFunctionRecommendationFilterSensitiveLog = (obj) => ({
|
|
679
|
-
...obj,
|
|
680
|
-
});
|
|
681
|
-
export const GetLambdaFunctionRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
682
|
-
...obj,
|
|
683
|
-
});
|
|
684
|
-
export const GetRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
685
|
-
...obj,
|
|
686
|
-
});
|
|
687
|
-
export const RecommendationPreferencesDetailFilterSensitiveLog = (obj) => ({
|
|
688
|
-
...obj,
|
|
689
|
-
});
|
|
690
|
-
export const GetRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
691
|
-
...obj,
|
|
692
|
-
});
|
|
693
|
-
export const GetRecommendationSummariesRequestFilterSensitiveLog = (obj) => ({
|
|
694
|
-
...obj,
|
|
695
|
-
});
|
|
696
|
-
export const CurrentPerformanceRiskRatingsFilterSensitiveLog = (obj) => ({
|
|
697
|
-
...obj,
|
|
698
|
-
});
|
|
699
|
-
export const ReasonCodeSummaryFilterSensitiveLog = (obj) => ({
|
|
700
|
-
...obj,
|
|
701
|
-
});
|
|
702
|
-
export const SummaryFilterSensitiveLog = (obj) => ({
|
|
703
|
-
...obj,
|
|
704
|
-
});
|
|
705
|
-
export const RecommendationSummaryFilterSensitiveLog = (obj) => ({
|
|
706
|
-
...obj,
|
|
707
|
-
});
|
|
708
|
-
export const GetRecommendationSummariesResponseFilterSensitiveLog = (obj) => ({
|
|
709
|
-
...obj,
|
|
710
|
-
});
|
|
711
|
-
export const PutRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
712
|
-
...obj,
|
|
713
|
-
});
|
|
714
|
-
export const PutRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
715
|
-
...obj,
|
|
716
|
-
});
|
|
717
|
-
export const UpdateEnrollmentStatusRequestFilterSensitiveLog = (obj) => ({
|
|
718
|
-
...obj,
|
|
719
|
-
});
|
|
720
|
-
export const UpdateEnrollmentStatusResponseFilterSensitiveLog = (obj) => ({
|
|
721
|
-
...obj,
|
|
722
|
-
});
|
|
502
|
+
export var AccountEnrollmentStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
503
|
+
export var AutoScalingGroupConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
504
|
+
export var EffectiveRecommendationPreferencesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
505
|
+
export var UtilizationMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
|
+
export var EstimatedMonthlySavingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
507
|
+
export var SavingsOpportunityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
508
|
+
export var AutoScalingGroupRecommendationOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
509
|
+
export var AutoScalingGroupRecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
510
|
+
export var ScopeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
511
|
+
export var DeleteRecommendationPreferencesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
512
|
+
export var DeleteRecommendationPreferencesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
513
|
+
export var JobFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
514
|
+
export var DescribeRecommendationExportJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
515
|
+
export var S3DestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
516
|
+
export var ExportDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
517
|
+
export var RecommendationExportJobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
518
|
+
export var DescribeRecommendationExportJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
519
|
+
export var FilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
520
|
+
export var RecommendationPreferencesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
521
|
+
export var S3DestinationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
522
|
+
export var ExportAutoScalingGroupRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
523
|
+
export var ExportAutoScalingGroupRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
524
|
+
export var EBSFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
525
|
+
export var ExportEBSVolumeRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
+
export var ExportEBSVolumeRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
527
|
+
export var ExportEC2InstanceRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
528
|
+
export var ExportEC2InstanceRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
529
|
+
export var LambdaFunctionRecommendationFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
530
|
+
export var ExportLambdaFunctionRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
531
|
+
export var ExportLambdaFunctionRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
532
|
+
export var GetAutoScalingGroupRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
533
|
+
export var GetRecommendationErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
534
|
+
export var GetAutoScalingGroupRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
535
|
+
export var GetEBSVolumeRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
536
|
+
export var VolumeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
537
|
+
export var EBSUtilizationMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
538
|
+
export var VolumeRecommendationOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
539
|
+
export var VolumeRecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
540
|
+
export var GetEBSVolumeRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
541
|
+
export var GetEC2InstanceRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
542
|
+
export var InstanceRecommendationOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
543
|
+
export var RecommendationSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
544
|
+
export var InstanceRecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
545
|
+
export var GetEC2InstanceRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
546
|
+
export var GetEC2RecommendationProjectedMetricsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
547
|
+
export var ProjectedMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
548
|
+
export var RecommendedOptionProjectedMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
549
|
+
export var GetEC2RecommendationProjectedMetricsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
550
|
+
export var GetEffectiveRecommendationPreferencesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
551
|
+
export var GetEffectiveRecommendationPreferencesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
552
|
+
export var GetEnrollmentStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
553
|
+
export var GetEnrollmentStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
554
|
+
export var EnrollmentFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
555
|
+
export var GetEnrollmentStatusesForOrganizationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
556
|
+
export var GetEnrollmentStatusesForOrganizationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
557
|
+
export var GetLambdaFunctionRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
558
|
+
export var LambdaFunctionMemoryProjectedMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
559
|
+
export var LambdaFunctionMemoryRecommendationOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
560
|
+
export var LambdaFunctionUtilizationMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
561
|
+
export var LambdaFunctionRecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
562
|
+
export var GetLambdaFunctionRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
563
|
+
export var GetRecommendationPreferencesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
|
+
export var RecommendationPreferencesDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
|
+
export var GetRecommendationPreferencesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
|
+
export var GetRecommendationSummariesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
|
+
export var CurrentPerformanceRiskRatingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
568
|
+
export var ReasonCodeSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
569
|
+
export var SummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
570
|
+
export var RecommendationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
571
|
+
export var GetRecommendationSummariesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
572
|
+
export var PutRecommendationPreferencesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
573
|
+
export var PutRecommendationPreferencesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
574
|
+
export var UpdateEnrollmentStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
575
|
+
export var UpdateEnrollmentStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|