@aws-sdk/client-resiliencehub 3.934.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 +239 -238
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +238 -0
- package/dist-es/models/errors.js +95 -0
- package/dist-es/models/models_0.js +1 -333
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +582 -0
- package/dist-types/models/errors.d.ts +118 -0
- package/dist-types/models/models_0.d.ts +1 -700
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +316 -0
- package/dist-types/ts3.4/models/errors.d.ts +54 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -370
- 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,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ResiliencehubServiceException as __BaseException } from "./ResiliencehubServiceException";
|
|
1
|
+
import { AlarmType, AppAssessmentScheduleType, AppComplianceStatusType, AppDriftStatusType, AppStatusType, AssessmentInvoker, AssessmentStatus, ComplianceStatus, ConditionOperatorType, ConfigRecommendationOptimizationType, CostFrequency, DataLocationConstraint, DifferenceType, DisruptionType, DriftStatus, DriftType, EstimatedCostTier, EventType, ExcludeRecommendationReason, FieldAggregationType, GroupingRecommendationConfidenceLevel, GroupingRecommendationRejectionReason, GroupingRecommendationStatusType, HaArchitecture, MetricsExportStatusType, PermissionModelType, PhysicalIdentifierType, RecommendationComplianceStatus, RecommendationStatus, RecommendationTemplateStatus, RenderRecommendationType, ResiliencyPolicyTier, ResiliencyScoreType, ResourceImportStatusType, ResourceImportStrategyType, ResourceMappingType, ResourceResolutionStatusType, ResourcesGroupingRecGenStatusType, ResourceSourceType, SopServiceType, TemplateFormat, TestRisk, TestType } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Indicates the grouping recommendation you have accepted to include in your application.</p>
|
|
5
4
|
* @public
|
|
@@ -65,112 +64,6 @@ export interface AcceptResourceGroupingRecommendationsResponse {
|
|
|
65
64
|
*/
|
|
66
65
|
failedEntries: FailedGroupingRecommendationEntry[] | undefined;
|
|
67
66
|
}
|
|
68
|
-
/**
|
|
69
|
-
* <p>You don't have permissions to perform the requested operation. The user or role that is
|
|
70
|
-
* making the request must have at least one IAM permissions policy attached that grants the
|
|
71
|
-
* required permissions.</p>
|
|
72
|
-
* @public
|
|
73
|
-
*/
|
|
74
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
75
|
-
readonly name: "AccessDeniedException";
|
|
76
|
-
readonly $fault: "client";
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* <p>This exception occurs when there is an internal failure in the Resilience Hub
|
|
84
|
-
* service.</p>
|
|
85
|
-
* @public
|
|
86
|
-
*/
|
|
87
|
-
export declare class InternalServerException extends __BaseException {
|
|
88
|
-
readonly name: "InternalServerException";
|
|
89
|
-
readonly $fault: "server";
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* <p>This exception occurs when the specified resource could not be found.</p>
|
|
97
|
-
* @public
|
|
98
|
-
*/
|
|
99
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
100
|
-
readonly name: "ResourceNotFoundException";
|
|
101
|
-
readonly $fault: "client";
|
|
102
|
-
/**
|
|
103
|
-
* <p>The identifier of the resource that the exception applies to.</p>
|
|
104
|
-
* @public
|
|
105
|
-
*/
|
|
106
|
-
resourceId?: string | undefined;
|
|
107
|
-
/**
|
|
108
|
-
* <p>The type of the resource that the exception applies to.</p>
|
|
109
|
-
* @public
|
|
110
|
-
*/
|
|
111
|
-
resourceType?: string | undefined;
|
|
112
|
-
/**
|
|
113
|
-
* @internal
|
|
114
|
-
*/
|
|
115
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
116
|
-
}
|
|
117
|
-
/**
|
|
118
|
-
* <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
|
|
119
|
-
* @public
|
|
120
|
-
*/
|
|
121
|
-
export declare class ThrottlingException extends __BaseException {
|
|
122
|
-
readonly name: "ThrottlingException";
|
|
123
|
-
readonly $fault: "client";
|
|
124
|
-
/**
|
|
125
|
-
* <p>The number of seconds to wait before retrying the operation.</p>
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
retryAfterSeconds?: number | undefined;
|
|
129
|
-
/**
|
|
130
|
-
* @internal
|
|
131
|
-
*/
|
|
132
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
133
|
-
}
|
|
134
|
-
/**
|
|
135
|
-
* <p>This exception occurs when a request is not valid.</p>
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
export declare class ValidationException extends __BaseException {
|
|
139
|
-
readonly name: "ValidationException";
|
|
140
|
-
readonly $fault: "client";
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
145
|
-
}
|
|
146
|
-
/**
|
|
147
|
-
* @public
|
|
148
|
-
* @enum
|
|
149
|
-
*/
|
|
150
|
-
export declare const ResourceMappingType: {
|
|
151
|
-
readonly APP_REGISTRY_APP: "AppRegistryApp";
|
|
152
|
-
readonly CFN_STACK: "CfnStack";
|
|
153
|
-
readonly EKS: "EKS";
|
|
154
|
-
readonly RESOURCE: "Resource";
|
|
155
|
-
readonly RESOURCE_GROUP: "ResourceGroup";
|
|
156
|
-
readonly TERRAFORM: "Terraform";
|
|
157
|
-
};
|
|
158
|
-
/**
|
|
159
|
-
* @public
|
|
160
|
-
*/
|
|
161
|
-
export type ResourceMappingType = (typeof ResourceMappingType)[keyof typeof ResourceMappingType];
|
|
162
|
-
/**
|
|
163
|
-
* @public
|
|
164
|
-
* @enum
|
|
165
|
-
*/
|
|
166
|
-
export declare const PhysicalIdentifierType: {
|
|
167
|
-
readonly ARN: "Arn";
|
|
168
|
-
readonly NATIVE: "Native";
|
|
169
|
-
};
|
|
170
|
-
/**
|
|
171
|
-
* @public
|
|
172
|
-
*/
|
|
173
|
-
export type PhysicalIdentifierType = (typeof PhysicalIdentifierType)[keyof typeof PhysicalIdentifierType];
|
|
174
67
|
/**
|
|
175
68
|
* <p>Defines a physical resource identifier.</p>
|
|
176
69
|
* @public
|
|
@@ -432,44 +325,6 @@ export interface AddDraftAppVersionResourceMappingsResponse {
|
|
|
432
325
|
*/
|
|
433
326
|
resourceMappings: ResourceMapping[] | undefined;
|
|
434
327
|
}
|
|
435
|
-
/**
|
|
436
|
-
* <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
437
|
-
* when the previous write did not have time to propagate to the host serving the current
|
|
438
|
-
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
439
|
-
* exception.</p>
|
|
440
|
-
* @public
|
|
441
|
-
*/
|
|
442
|
-
export declare class ConflictException extends __BaseException {
|
|
443
|
-
readonly name: "ConflictException";
|
|
444
|
-
readonly $fault: "client";
|
|
445
|
-
/**
|
|
446
|
-
* <p>The identifier of the resource that the exception applies to.</p>
|
|
447
|
-
* @public
|
|
448
|
-
*/
|
|
449
|
-
resourceId?: string | undefined;
|
|
450
|
-
/**
|
|
451
|
-
* <p>The type of the resource that the exception applies to.</p>
|
|
452
|
-
* @public
|
|
453
|
-
*/
|
|
454
|
-
resourceType?: string | undefined;
|
|
455
|
-
/**
|
|
456
|
-
* @internal
|
|
457
|
-
*/
|
|
458
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
459
|
-
}
|
|
460
|
-
/**
|
|
461
|
-
* <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
|
|
462
|
-
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
463
|
-
* @public
|
|
464
|
-
*/
|
|
465
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
466
|
-
readonly name: "ServiceQuotaExceededException";
|
|
467
|
-
readonly $fault: "client";
|
|
468
|
-
/**
|
|
469
|
-
* @internal
|
|
470
|
-
*/
|
|
471
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
472
|
-
}
|
|
473
328
|
/**
|
|
474
329
|
* <p>Indicates the Amazon CloudWatch alarm detected while running an assessment.</p>
|
|
475
330
|
* @public
|
|
@@ -488,19 +343,6 @@ export interface Alarm {
|
|
|
488
343
|
*/
|
|
489
344
|
source?: string | undefined;
|
|
490
345
|
}
|
|
491
|
-
/**
|
|
492
|
-
* @public
|
|
493
|
-
* @enum
|
|
494
|
-
*/
|
|
495
|
-
export declare const ExcludeRecommendationReason: {
|
|
496
|
-
readonly ALREADY_IMPLEMENTED: "AlreadyImplemented";
|
|
497
|
-
readonly COMPLEXITY_OF_IMPLEMENTATION: "ComplexityOfImplementation";
|
|
498
|
-
readonly NOT_RELEVANT: "NotRelevant";
|
|
499
|
-
};
|
|
500
|
-
/**
|
|
501
|
-
* @public
|
|
502
|
-
*/
|
|
503
|
-
export type ExcludeRecommendationReason = (typeof ExcludeRecommendationReason)[keyof typeof ExcludeRecommendationReason];
|
|
504
346
|
/**
|
|
505
347
|
* <p>Indicates the FIS experiment detected while running an assessment.</p>
|
|
506
348
|
* @public
|
|
@@ -563,35 +405,6 @@ export interface RecommendationItem {
|
|
|
563
405
|
*/
|
|
564
406
|
discoveredAlarm?: Alarm | undefined;
|
|
565
407
|
}
|
|
566
|
-
/**
|
|
567
|
-
* @public
|
|
568
|
-
* @enum
|
|
569
|
-
*/
|
|
570
|
-
export declare const RecommendationStatus: {
|
|
571
|
-
readonly EXCLUDED: "Excluded";
|
|
572
|
-
readonly IMPLEMENTED: "Implemented";
|
|
573
|
-
readonly INACTIVE: "Inactive";
|
|
574
|
-
readonly NOT_IMPLEMENTED: "NotImplemented";
|
|
575
|
-
};
|
|
576
|
-
/**
|
|
577
|
-
* @public
|
|
578
|
-
*/
|
|
579
|
-
export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
|
|
580
|
-
/**
|
|
581
|
-
* @public
|
|
582
|
-
* @enum
|
|
583
|
-
*/
|
|
584
|
-
export declare const AlarmType: {
|
|
585
|
-
readonly CANARY: "Canary";
|
|
586
|
-
readonly COMPOSITE: "Composite";
|
|
587
|
-
readonly EVENT: "Event";
|
|
588
|
-
readonly LOGS: "Logs";
|
|
589
|
-
readonly METRIC: "Metric";
|
|
590
|
-
};
|
|
591
|
-
/**
|
|
592
|
-
* @public
|
|
593
|
-
*/
|
|
594
|
-
export type AlarmType = (typeof AlarmType)[keyof typeof AlarmType];
|
|
595
408
|
/**
|
|
596
409
|
* <p>Defines a recommendation for a CloudWatch alarm.</p>
|
|
597
410
|
* @public
|
|
@@ -651,59 +464,6 @@ export interface AlarmRecommendation {
|
|
|
651
464
|
*/
|
|
652
465
|
recommendationStatus?: RecommendationStatus | undefined;
|
|
653
466
|
}
|
|
654
|
-
/**
|
|
655
|
-
* @public
|
|
656
|
-
* @enum
|
|
657
|
-
*/
|
|
658
|
-
export declare const AppAssessmentScheduleType: {
|
|
659
|
-
readonly DAILY: "Daily";
|
|
660
|
-
readonly DISABLED: "Disabled";
|
|
661
|
-
};
|
|
662
|
-
/**
|
|
663
|
-
* @public
|
|
664
|
-
*/
|
|
665
|
-
export type AppAssessmentScheduleType = (typeof AppAssessmentScheduleType)[keyof typeof AppAssessmentScheduleType];
|
|
666
|
-
/**
|
|
667
|
-
* @public
|
|
668
|
-
* @enum
|
|
669
|
-
*/
|
|
670
|
-
export declare const AppComplianceStatusType: {
|
|
671
|
-
readonly CHANGES_DETECTED: "ChangesDetected";
|
|
672
|
-
readonly MISSING_POLICY: "MissingPolicy";
|
|
673
|
-
readonly NOT_APPLICABLE: "NotApplicable";
|
|
674
|
-
readonly NOT_ASSESSED: "NotAssessed";
|
|
675
|
-
readonly POLICY_BREACHED: "PolicyBreached";
|
|
676
|
-
readonly POLICY_MET: "PolicyMet";
|
|
677
|
-
};
|
|
678
|
-
/**
|
|
679
|
-
* @public
|
|
680
|
-
*/
|
|
681
|
-
export type AppComplianceStatusType = (typeof AppComplianceStatusType)[keyof typeof AppComplianceStatusType];
|
|
682
|
-
/**
|
|
683
|
-
* @public
|
|
684
|
-
* @enum
|
|
685
|
-
*/
|
|
686
|
-
export declare const AppDriftStatusType: {
|
|
687
|
-
readonly DETECTED: "Detected";
|
|
688
|
-
readonly NOT_CHECKED: "NotChecked";
|
|
689
|
-
readonly NOT_DETECTED: "NotDetected";
|
|
690
|
-
};
|
|
691
|
-
/**
|
|
692
|
-
* @public
|
|
693
|
-
*/
|
|
694
|
-
export type AppDriftStatusType = (typeof AppDriftStatusType)[keyof typeof AppDriftStatusType];
|
|
695
|
-
/**
|
|
696
|
-
* @public
|
|
697
|
-
* @enum
|
|
698
|
-
*/
|
|
699
|
-
export declare const EventType: {
|
|
700
|
-
readonly DRIFT_DETECTED: "DriftDetected";
|
|
701
|
-
readonly SCHEDULED_ASSESSMENT_FAILURE: "ScheduledAssessmentFailure";
|
|
702
|
-
};
|
|
703
|
-
/**
|
|
704
|
-
* @public
|
|
705
|
-
*/
|
|
706
|
-
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
707
467
|
/**
|
|
708
468
|
* <p>Indicates an event you would like to subscribe and get notification for. Currently,
|
|
709
469
|
* Resilience Hub supports notifications only for <b>Drift
|
|
@@ -734,18 +494,6 @@ export interface EventSubscription {
|
|
|
734
494
|
*/
|
|
735
495
|
snsTopicArn?: string | undefined;
|
|
736
496
|
}
|
|
737
|
-
/**
|
|
738
|
-
* @public
|
|
739
|
-
* @enum
|
|
740
|
-
*/
|
|
741
|
-
export declare const PermissionModelType: {
|
|
742
|
-
readonly LEGACY_IAM_USER: "LegacyIAMUser";
|
|
743
|
-
readonly ROLE_BASED: "RoleBased";
|
|
744
|
-
};
|
|
745
|
-
/**
|
|
746
|
-
* @public
|
|
747
|
-
*/
|
|
748
|
-
export type PermissionModelType = (typeof PermissionModelType)[keyof typeof PermissionModelType];
|
|
749
497
|
/**
|
|
750
498
|
* <p>Defines the roles and credentials that Resilience Hub would use while creating the
|
|
751
499
|
* application, importing its resources, and running an assessment.</p>
|
|
@@ -803,18 +551,6 @@ export interface PermissionModel {
|
|
|
803
551
|
*/
|
|
804
552
|
crossAccountRoleArns?: string[] | undefined;
|
|
805
553
|
}
|
|
806
|
-
/**
|
|
807
|
-
* @public
|
|
808
|
-
* @enum
|
|
809
|
-
*/
|
|
810
|
-
export declare const AppStatusType: {
|
|
811
|
-
readonly ACTIVE: "Active";
|
|
812
|
-
readonly DELETING: "Deleting";
|
|
813
|
-
};
|
|
814
|
-
/**
|
|
815
|
-
* @public
|
|
816
|
-
*/
|
|
817
|
-
export type AppStatusType = (typeof AppStatusType)[keyof typeof AppStatusType];
|
|
818
554
|
/**
|
|
819
555
|
* <p>Defines an Resilience Hub application.</p>
|
|
820
556
|
* @public
|
|
@@ -933,48 +669,6 @@ export interface App {
|
|
|
933
669
|
*/
|
|
934
670
|
awsApplicationArn?: string | undefined;
|
|
935
671
|
}
|
|
936
|
-
/**
|
|
937
|
-
* @public
|
|
938
|
-
* @enum
|
|
939
|
-
*/
|
|
940
|
-
export declare const AssessmentStatus: {
|
|
941
|
-
readonly FAILED: "Failed";
|
|
942
|
-
readonly INPROGRESS: "InProgress";
|
|
943
|
-
readonly PENDING: "Pending";
|
|
944
|
-
readonly SUCCESS: "Success";
|
|
945
|
-
};
|
|
946
|
-
/**
|
|
947
|
-
* @public
|
|
948
|
-
*/
|
|
949
|
-
export type AssessmentStatus = (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
950
|
-
/**
|
|
951
|
-
* @public
|
|
952
|
-
* @enum
|
|
953
|
-
*/
|
|
954
|
-
export declare const DisruptionType: {
|
|
955
|
-
readonly AZ: "AZ";
|
|
956
|
-
readonly HARDWARE: "Hardware";
|
|
957
|
-
readonly REGION: "Region";
|
|
958
|
-
readonly SOFTWARE: "Software";
|
|
959
|
-
};
|
|
960
|
-
/**
|
|
961
|
-
* @public
|
|
962
|
-
*/
|
|
963
|
-
export type DisruptionType = (typeof DisruptionType)[keyof typeof DisruptionType];
|
|
964
|
-
/**
|
|
965
|
-
* @public
|
|
966
|
-
* @enum
|
|
967
|
-
*/
|
|
968
|
-
export declare const ComplianceStatus: {
|
|
969
|
-
readonly MISSING_POLICY: "MissingPolicy";
|
|
970
|
-
readonly NOT_APPLICABLE: "NotApplicable";
|
|
971
|
-
readonly POLICY_BREACHED: "PolicyBreached";
|
|
972
|
-
readonly POLICY_MET: "PolicyMet";
|
|
973
|
-
};
|
|
974
|
-
/**
|
|
975
|
-
* @public
|
|
976
|
-
*/
|
|
977
|
-
export type ComplianceStatus = (typeof ComplianceStatus)[keyof typeof ComplianceStatus];
|
|
978
672
|
/**
|
|
979
673
|
* <p>Defines the compliance against the resiliency policy for a disruption.</p>
|
|
980
674
|
* @public
|
|
@@ -1031,20 +725,6 @@ export interface DisruptionCompliance {
|
|
|
1031
725
|
*/
|
|
1032
726
|
message?: string | undefined;
|
|
1033
727
|
}
|
|
1034
|
-
/**
|
|
1035
|
-
* @public
|
|
1036
|
-
* @enum
|
|
1037
|
-
*/
|
|
1038
|
-
export declare const CostFrequency: {
|
|
1039
|
-
readonly DAILY: "Daily";
|
|
1040
|
-
readonly HOURLY: "Hourly";
|
|
1041
|
-
readonly MONTHLY: "Monthly";
|
|
1042
|
-
readonly YEARLY: "Yearly";
|
|
1043
|
-
};
|
|
1044
|
-
/**
|
|
1045
|
-
* @public
|
|
1046
|
-
*/
|
|
1047
|
-
export type CostFrequency = (typeof CostFrequency)[keyof typeof CostFrequency];
|
|
1048
728
|
/**
|
|
1049
729
|
* <p>Defines a cost object.</p>
|
|
1050
730
|
* @public
|
|
@@ -1066,58 +746,6 @@ export interface Cost {
|
|
|
1066
746
|
*/
|
|
1067
747
|
frequency: CostFrequency | undefined;
|
|
1068
748
|
}
|
|
1069
|
-
/**
|
|
1070
|
-
* @public
|
|
1071
|
-
* @enum
|
|
1072
|
-
*/
|
|
1073
|
-
export declare const DriftStatus: {
|
|
1074
|
-
readonly DETECTED: "Detected";
|
|
1075
|
-
readonly NOT_CHECKED: "NotChecked";
|
|
1076
|
-
readonly NOT_DETECTED: "NotDetected";
|
|
1077
|
-
};
|
|
1078
|
-
/**
|
|
1079
|
-
* @public
|
|
1080
|
-
*/
|
|
1081
|
-
export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
|
|
1082
|
-
/**
|
|
1083
|
-
* @public
|
|
1084
|
-
* @enum
|
|
1085
|
-
*/
|
|
1086
|
-
export declare const AssessmentInvoker: {
|
|
1087
|
-
readonly SYSTEM: "System";
|
|
1088
|
-
readonly USER: "User";
|
|
1089
|
-
};
|
|
1090
|
-
/**
|
|
1091
|
-
* @public
|
|
1092
|
-
*/
|
|
1093
|
-
export type AssessmentInvoker = (typeof AssessmentInvoker)[keyof typeof AssessmentInvoker];
|
|
1094
|
-
/**
|
|
1095
|
-
* @public
|
|
1096
|
-
* @enum
|
|
1097
|
-
*/
|
|
1098
|
-
export declare const DataLocationConstraint: {
|
|
1099
|
-
readonly ANY_LOCATION: "AnyLocation";
|
|
1100
|
-
readonly SAME_CONTINENT: "SameContinent";
|
|
1101
|
-
readonly SAME_COUNTRY: "SameCountry";
|
|
1102
|
-
};
|
|
1103
|
-
/**
|
|
1104
|
-
* @public
|
|
1105
|
-
*/
|
|
1106
|
-
export type DataLocationConstraint = (typeof DataLocationConstraint)[keyof typeof DataLocationConstraint];
|
|
1107
|
-
/**
|
|
1108
|
-
* @public
|
|
1109
|
-
* @enum
|
|
1110
|
-
*/
|
|
1111
|
-
export declare const EstimatedCostTier: {
|
|
1112
|
-
readonly L1: "L1";
|
|
1113
|
-
readonly L2: "L2";
|
|
1114
|
-
readonly L3: "L3";
|
|
1115
|
-
readonly L4: "L4";
|
|
1116
|
-
};
|
|
1117
|
-
/**
|
|
1118
|
-
* @public
|
|
1119
|
-
*/
|
|
1120
|
-
export type EstimatedCostTier = (typeof EstimatedCostTier)[keyof typeof EstimatedCostTier];
|
|
1121
749
|
/**
|
|
1122
750
|
* <p>Defines a failure policy.</p>
|
|
1123
751
|
* @public
|
|
@@ -1134,22 +762,6 @@ export interface FailurePolicy {
|
|
|
1134
762
|
*/
|
|
1135
763
|
rpoInSecs: number | undefined;
|
|
1136
764
|
}
|
|
1137
|
-
/**
|
|
1138
|
-
* @public
|
|
1139
|
-
* @enum
|
|
1140
|
-
*/
|
|
1141
|
-
export declare const ResiliencyPolicyTier: {
|
|
1142
|
-
readonly CORE_SERVICES: "CoreServices";
|
|
1143
|
-
readonly CRITICAL: "Critical";
|
|
1144
|
-
readonly IMPORTANT: "Important";
|
|
1145
|
-
readonly MISSION_CRITICAL: "MissionCritical";
|
|
1146
|
-
readonly NON_CRITICAL: "NonCritical";
|
|
1147
|
-
readonly NOT_APPLICABLE: "NotApplicable";
|
|
1148
|
-
};
|
|
1149
|
-
/**
|
|
1150
|
-
* @public
|
|
1151
|
-
*/
|
|
1152
|
-
export type ResiliencyPolicyTier = (typeof ResiliencyPolicyTier)[keyof typeof ResiliencyPolicyTier];
|
|
1153
765
|
/**
|
|
1154
766
|
* <p>Defines a resiliency policy.</p>
|
|
1155
767
|
* <note>
|
|
@@ -1217,20 +829,6 @@ export interface ResiliencyPolicy {
|
|
|
1217
829
|
*/
|
|
1218
830
|
tags?: Record<string, string> | undefined;
|
|
1219
831
|
}
|
|
1220
|
-
/**
|
|
1221
|
-
* @public
|
|
1222
|
-
* @enum
|
|
1223
|
-
*/
|
|
1224
|
-
export declare const ResiliencyScoreType: {
|
|
1225
|
-
readonly ALARM: "Alarm";
|
|
1226
|
-
readonly COMPLIANCE: "Compliance";
|
|
1227
|
-
readonly SOP: "Sop";
|
|
1228
|
-
readonly TEST: "Test";
|
|
1229
|
-
};
|
|
1230
|
-
/**
|
|
1231
|
-
* @public
|
|
1232
|
-
*/
|
|
1233
|
-
export type ResiliencyScoreType = (typeof ResiliencyScoreType)[keyof typeof ResiliencyScoreType];
|
|
1234
832
|
/**
|
|
1235
833
|
* <p>Resiliency score of each scoring component. For more information about scoring component,
|
|
1236
834
|
* see <a href="https://docs.aws.amazon.com/resilience-hub/latest/userguide/calculate-score.html">Calculating resiliency score</a>.</p>
|
|
@@ -2240,18 +1838,6 @@ export interface CreateAppVersionResourceRequest {
|
|
|
2240
1838
|
*/
|
|
2241
1839
|
clientToken?: string | undefined;
|
|
2242
1840
|
}
|
|
2243
|
-
/**
|
|
2244
|
-
* @public
|
|
2245
|
-
* @enum
|
|
2246
|
-
*/
|
|
2247
|
-
export declare const ResourceSourceType: {
|
|
2248
|
-
readonly APP_TEMPLATE: "AppTemplate";
|
|
2249
|
-
readonly DISCOVERED: "Discovered";
|
|
2250
|
-
};
|
|
2251
|
-
/**
|
|
2252
|
-
* @public
|
|
2253
|
-
*/
|
|
2254
|
-
export type ResourceSourceType = (typeof ResourceSourceType)[keyof typeof ResourceSourceType];
|
|
2255
1841
|
/**
|
|
2256
1842
|
* <p>Defines a physical resource. A physical resource is a resource that exists in your
|
|
2257
1843
|
* account. It can be identified using an Amazon Resource Name (ARN) or an Resilience Hub-native identifier. </p>
|
|
@@ -2335,31 +1921,6 @@ export interface CreateAppVersionResourceResponse {
|
|
|
2335
1921
|
*/
|
|
2336
1922
|
physicalResource?: PhysicalResource | undefined;
|
|
2337
1923
|
}
|
|
2338
|
-
/**
|
|
2339
|
-
* @public
|
|
2340
|
-
* @enum
|
|
2341
|
-
*/
|
|
2342
|
-
export declare const TemplateFormat: {
|
|
2343
|
-
readonly CFN_JSON: "CfnJson";
|
|
2344
|
-
readonly CFN_YAML: "CfnYaml";
|
|
2345
|
-
};
|
|
2346
|
-
/**
|
|
2347
|
-
* @public
|
|
2348
|
-
*/
|
|
2349
|
-
export type TemplateFormat = (typeof TemplateFormat)[keyof typeof TemplateFormat];
|
|
2350
|
-
/**
|
|
2351
|
-
* @public
|
|
2352
|
-
* @enum
|
|
2353
|
-
*/
|
|
2354
|
-
export declare const RenderRecommendationType: {
|
|
2355
|
-
readonly ALARM: "Alarm";
|
|
2356
|
-
readonly SOP: "Sop";
|
|
2357
|
-
readonly TEST: "Test";
|
|
2358
|
-
};
|
|
2359
|
-
/**
|
|
2360
|
-
* @public
|
|
2361
|
-
*/
|
|
2362
|
-
export type RenderRecommendationType = (typeof RenderRecommendationType)[keyof typeof RenderRecommendationType];
|
|
2363
1924
|
/**
|
|
2364
1925
|
* @public
|
|
2365
1926
|
*/
|
|
@@ -2435,20 +1996,6 @@ export interface CreateRecommendationTemplateRequest {
|
|
|
2435
1996
|
*/
|
|
2436
1997
|
bucketName?: string | undefined;
|
|
2437
1998
|
}
|
|
2438
|
-
/**
|
|
2439
|
-
* @public
|
|
2440
|
-
* @enum
|
|
2441
|
-
*/
|
|
2442
|
-
export declare const RecommendationTemplateStatus: {
|
|
2443
|
-
readonly FAILED: "Failed";
|
|
2444
|
-
readonly IN_PROGRESS: "InProgress";
|
|
2445
|
-
readonly PENDING: "Pending";
|
|
2446
|
-
readonly SUCCESS: "Success";
|
|
2447
|
-
};
|
|
2448
|
-
/**
|
|
2449
|
-
* @public
|
|
2450
|
-
*/
|
|
2451
|
-
export type RecommendationTemplateStatus = (typeof RecommendationTemplateStatus)[keyof typeof RecommendationTemplateStatus];
|
|
2452
1999
|
/**
|
|
2453
2000
|
* <p>The location of the Amazon S3 bucket.</p>
|
|
2454
2001
|
* @public
|
|
@@ -3199,20 +2746,6 @@ export interface DescribeAppVersionResourcesResolutionStatusRequest {
|
|
|
3199
2746
|
*/
|
|
3200
2747
|
resolutionId?: string | undefined;
|
|
3201
2748
|
}
|
|
3202
|
-
/**
|
|
3203
|
-
* @public
|
|
3204
|
-
* @enum
|
|
3205
|
-
*/
|
|
3206
|
-
export declare const ResourceResolutionStatusType: {
|
|
3207
|
-
readonly FAILED: "Failed";
|
|
3208
|
-
readonly IN_PROGRESS: "InProgress";
|
|
3209
|
-
readonly PENDING: "Pending";
|
|
3210
|
-
readonly SUCCESS: "Success";
|
|
3211
|
-
};
|
|
3212
|
-
/**
|
|
3213
|
-
* @public
|
|
3214
|
-
*/
|
|
3215
|
-
export type ResourceResolutionStatusType = (typeof ResourceResolutionStatusType)[keyof typeof ResourceResolutionStatusType];
|
|
3216
2749
|
/**
|
|
3217
2750
|
* @public
|
|
3218
2751
|
*/
|
|
@@ -3574,20 +3107,6 @@ export interface ErrorDetail {
|
|
|
3574
3107
|
*/
|
|
3575
3108
|
errorMessage?: string | undefined;
|
|
3576
3109
|
}
|
|
3577
|
-
/**
|
|
3578
|
-
* @public
|
|
3579
|
-
* @enum
|
|
3580
|
-
*/
|
|
3581
|
-
export declare const ResourceImportStatusType: {
|
|
3582
|
-
readonly FAILED: "Failed";
|
|
3583
|
-
readonly IN_PROGRESS: "InProgress";
|
|
3584
|
-
readonly PENDING: "Pending";
|
|
3585
|
-
readonly SUCCESS: "Success";
|
|
3586
|
-
};
|
|
3587
|
-
/**
|
|
3588
|
-
* @public
|
|
3589
|
-
*/
|
|
3590
|
-
export type ResourceImportStatusType = (typeof ResourceImportStatusType)[keyof typeof ResourceImportStatusType];
|
|
3591
3110
|
/**
|
|
3592
3111
|
* @public
|
|
3593
3112
|
*/
|
|
@@ -3637,20 +3156,6 @@ export interface DescribeMetricsExportRequest {
|
|
|
3637
3156
|
*/
|
|
3638
3157
|
metricsExportId: string | undefined;
|
|
3639
3158
|
}
|
|
3640
|
-
/**
|
|
3641
|
-
* @public
|
|
3642
|
-
* @enum
|
|
3643
|
-
*/
|
|
3644
|
-
export declare const MetricsExportStatusType: {
|
|
3645
|
-
readonly FAILED: "Failed";
|
|
3646
|
-
readonly IN_PROGRESS: "InProgress";
|
|
3647
|
-
readonly PENDING: "Pending";
|
|
3648
|
-
readonly SUCCESS: "Success";
|
|
3649
|
-
};
|
|
3650
|
-
/**
|
|
3651
|
-
* @public
|
|
3652
|
-
*/
|
|
3653
|
-
export type MetricsExportStatusType = (typeof MetricsExportStatusType)[keyof typeof MetricsExportStatusType];
|
|
3654
3159
|
/**
|
|
3655
3160
|
* @public
|
|
3656
3161
|
*/
|
|
@@ -3721,20 +3226,6 @@ export interface DescribeResourceGroupingRecommendationTaskRequest {
|
|
|
3721
3226
|
*/
|
|
3722
3227
|
groupingId?: string | undefined;
|
|
3723
3228
|
}
|
|
3724
|
-
/**
|
|
3725
|
-
* @public
|
|
3726
|
-
* @enum
|
|
3727
|
-
*/
|
|
3728
|
-
export declare const ResourcesGroupingRecGenStatusType: {
|
|
3729
|
-
readonly FAILED: "Failed";
|
|
3730
|
-
readonly IN_PROGRESS: "InProgress";
|
|
3731
|
-
readonly PENDING: "Pending";
|
|
3732
|
-
readonly SUCCESS: "Success";
|
|
3733
|
-
};
|
|
3734
|
-
/**
|
|
3735
|
-
* @public
|
|
3736
|
-
*/
|
|
3737
|
-
export type ResourcesGroupingRecGenStatusType = (typeof ResourcesGroupingRecGenStatusType)[keyof typeof ResourcesGroupingRecGenStatusType];
|
|
3738
3229
|
/**
|
|
3739
3230
|
* @public
|
|
3740
3231
|
*/
|
|
@@ -3775,18 +3266,6 @@ export interface EksSource {
|
|
|
3775
3266
|
*/
|
|
3776
3267
|
namespaces: string[] | undefined;
|
|
3777
3268
|
}
|
|
3778
|
-
/**
|
|
3779
|
-
* @public
|
|
3780
|
-
* @enum
|
|
3781
|
-
*/
|
|
3782
|
-
export declare const ResourceImportStrategyType: {
|
|
3783
|
-
readonly ADD_ONLY: "AddOnly";
|
|
3784
|
-
readonly REPLACE_ALL: "ReplaceAll";
|
|
3785
|
-
};
|
|
3786
|
-
/**
|
|
3787
|
-
* @public
|
|
3788
|
-
*/
|
|
3789
|
-
export type ResourceImportStrategyType = (typeof ResourceImportStrategyType)[keyof typeof ResourceImportStrategyType];
|
|
3790
3269
|
/**
|
|
3791
3270
|
* @public
|
|
3792
3271
|
*/
|
|
@@ -3927,31 +3406,6 @@ export interface ListAppAssessmentComplianceDriftsRequest {
|
|
|
3927
3406
|
*/
|
|
3928
3407
|
maxResults?: number | undefined;
|
|
3929
3408
|
}
|
|
3930
|
-
/**
|
|
3931
|
-
* @public
|
|
3932
|
-
* @enum
|
|
3933
|
-
*/
|
|
3934
|
-
export declare const DifferenceType: {
|
|
3935
|
-
readonly ADDED: "Added";
|
|
3936
|
-
readonly NOT_EQUAL: "NotEqual";
|
|
3937
|
-
readonly REMOVED: "Removed";
|
|
3938
|
-
};
|
|
3939
|
-
/**
|
|
3940
|
-
* @public
|
|
3941
|
-
*/
|
|
3942
|
-
export type DifferenceType = (typeof DifferenceType)[keyof typeof DifferenceType];
|
|
3943
|
-
/**
|
|
3944
|
-
* @public
|
|
3945
|
-
* @enum
|
|
3946
|
-
*/
|
|
3947
|
-
export declare const DriftType: {
|
|
3948
|
-
readonly APPLICATION_COMPLIANCE: "ApplicationCompliance";
|
|
3949
|
-
readonly APP_COMPONENT_RESILIENCY_COMPLIANCE_STATUS: "AppComponentResiliencyComplianceStatus";
|
|
3950
|
-
};
|
|
3951
|
-
/**
|
|
3952
|
-
* @public
|
|
3953
|
-
*/
|
|
3954
|
-
export type DriftType = (typeof DriftType)[keyof typeof DriftType];
|
|
3955
3409
|
/**
|
|
3956
3410
|
* <p>Indicates the compliance drifts (recovery time objective (RTO) and recovery point
|
|
3957
3411
|
* objective (RPO)) that were detected for an assessed entity.</p>
|
|
@@ -4258,37 +3712,6 @@ export interface ListAppComponentRecommendationsRequest {
|
|
|
4258
3712
|
*/
|
|
4259
3713
|
maxResults?: number | undefined;
|
|
4260
3714
|
}
|
|
4261
|
-
/**
|
|
4262
|
-
* @public
|
|
4263
|
-
* @enum
|
|
4264
|
-
*/
|
|
4265
|
-
export declare const HaArchitecture: {
|
|
4266
|
-
readonly BACKUP_AND_RESTORE: "BackupAndRestore";
|
|
4267
|
-
readonly MULTI_SITE: "MultiSite";
|
|
4268
|
-
readonly NO_RECOVERY_PLAN: "NoRecoveryPlan";
|
|
4269
|
-
readonly PILOT_LIGHT: "PilotLight";
|
|
4270
|
-
readonly WARM_STANDBY: "WarmStandby";
|
|
4271
|
-
};
|
|
4272
|
-
/**
|
|
4273
|
-
* @public
|
|
4274
|
-
*/
|
|
4275
|
-
export type HaArchitecture = (typeof HaArchitecture)[keyof typeof HaArchitecture];
|
|
4276
|
-
/**
|
|
4277
|
-
* @public
|
|
4278
|
-
* @enum
|
|
4279
|
-
*/
|
|
4280
|
-
export declare const ConfigRecommendationOptimizationType: {
|
|
4281
|
-
readonly BEST_ATTAINABLE: "BestAttainable";
|
|
4282
|
-
readonly BEST_AZ_RECOVERY: "BestAZRecovery";
|
|
4283
|
-
readonly BEST_REGION_RECOVERY: "BestRegionRecovery";
|
|
4284
|
-
readonly LEAST_CHANGE: "LeastChange";
|
|
4285
|
-
readonly LEAST_COST: "LeastCost";
|
|
4286
|
-
readonly LEAST_ERRORS: "LeastErrors";
|
|
4287
|
-
};
|
|
4288
|
-
/**
|
|
4289
|
-
* @public
|
|
4290
|
-
*/
|
|
4291
|
-
export type ConfigRecommendationOptimizationType = (typeof ConfigRecommendationOptimizationType)[keyof typeof ConfigRecommendationOptimizationType];
|
|
4292
3715
|
/**
|
|
4293
3716
|
* <p>Defines a disruption compliance recommendation.</p>
|
|
4294
3717
|
* @public
|
|
@@ -4380,20 +3803,6 @@ export interface ConfigRecommendation {
|
|
|
4380
3803
|
*/
|
|
4381
3804
|
referenceId: string | undefined;
|
|
4382
3805
|
}
|
|
4383
|
-
/**
|
|
4384
|
-
* @public
|
|
4385
|
-
* @enum
|
|
4386
|
-
*/
|
|
4387
|
-
export declare const RecommendationComplianceStatus: {
|
|
4388
|
-
readonly BREACHED_CAN_MEET: "BreachedCanMeet";
|
|
4389
|
-
readonly BREACHED_UNATTAINABLE: "BreachedUnattainable";
|
|
4390
|
-
readonly MET_CAN_IMPROVE: "MetCanImprove";
|
|
4391
|
-
readonly MISSING_POLICY: "MissingPolicy";
|
|
4392
|
-
};
|
|
4393
|
-
/**
|
|
4394
|
-
* @public
|
|
4395
|
-
*/
|
|
4396
|
-
export type RecommendationComplianceStatus = (typeof RecommendationComplianceStatus)[keyof typeof RecommendationComplianceStatus];
|
|
4397
3806
|
/**
|
|
4398
3807
|
* <p>Defines recommendations for an Resilience Hub Application Component, returned as an
|
|
4399
3808
|
* object. This object contains component names, configuration recommendations, and
|
|
@@ -4763,22 +4172,6 @@ export interface ListAppVersionsResponse {
|
|
|
4763
4172
|
*/
|
|
4764
4173
|
nextToken?: string | undefined;
|
|
4765
4174
|
}
|
|
4766
|
-
/**
|
|
4767
|
-
* @public
|
|
4768
|
-
* @enum
|
|
4769
|
-
*/
|
|
4770
|
-
export declare const ConditionOperatorType: {
|
|
4771
|
-
readonly EQUALS: "Equals";
|
|
4772
|
-
readonly GREATER_OR_EQUALS: "GreaterOrEquals";
|
|
4773
|
-
readonly GREATER_THEN: "GreaterThen";
|
|
4774
|
-
readonly LESS_OR_EQUALS: "LessOrEquals";
|
|
4775
|
-
readonly LESS_THEN: "LessThen";
|
|
4776
|
-
readonly NOT_EQUALS: "NotEquals";
|
|
4777
|
-
};
|
|
4778
|
-
/**
|
|
4779
|
-
* @public
|
|
4780
|
-
*/
|
|
4781
|
-
export type ConditionOperatorType = (typeof ConditionOperatorType)[keyof typeof ConditionOperatorType];
|
|
4782
4175
|
/**
|
|
4783
4176
|
* <p>Indicates the condition based on which you want to filter the metrics.</p>
|
|
4784
4177
|
* @public
|
|
@@ -4800,21 +4193,6 @@ export interface Condition {
|
|
|
4800
4193
|
*/
|
|
4801
4194
|
value?: string | undefined;
|
|
4802
4195
|
}
|
|
4803
|
-
/**
|
|
4804
|
-
* @public
|
|
4805
|
-
* @enum
|
|
4806
|
-
*/
|
|
4807
|
-
export declare const FieldAggregationType: {
|
|
4808
|
-
readonly AVG: "Avg";
|
|
4809
|
-
readonly COUNT: "Count";
|
|
4810
|
-
readonly MAX: "Max";
|
|
4811
|
-
readonly MIN: "Min";
|
|
4812
|
-
readonly SUM: "Sum";
|
|
4813
|
-
};
|
|
4814
|
-
/**
|
|
4815
|
-
* @public
|
|
4816
|
-
*/
|
|
4817
|
-
export type FieldAggregationType = (typeof FieldAggregationType)[keyof typeof FieldAggregationType];
|
|
4818
4196
|
/**
|
|
4819
4197
|
* <p>Indicates the field or attribute of a resource or data structure on which a condition is being applied or evaluated.</p>
|
|
4820
4198
|
* @public
|
|
@@ -5019,18 +4397,6 @@ export interface ListResourceGroupingRecommendationsRequest {
|
|
|
5019
4397
|
*/
|
|
5020
4398
|
maxResults?: number | undefined;
|
|
5021
4399
|
}
|
|
5022
|
-
/**
|
|
5023
|
-
* @public
|
|
5024
|
-
* @enum
|
|
5025
|
-
*/
|
|
5026
|
-
export declare const GroupingRecommendationConfidenceLevel: {
|
|
5027
|
-
readonly HIGH: "High";
|
|
5028
|
-
readonly MEDIUM: "Medium";
|
|
5029
|
-
};
|
|
5030
|
-
/**
|
|
5031
|
-
* @public
|
|
5032
|
-
*/
|
|
5033
|
-
export type GroupingRecommendationConfidenceLevel = (typeof GroupingRecommendationConfidenceLevel)[keyof typeof GroupingRecommendationConfidenceLevel];
|
|
5034
4400
|
/**
|
|
5035
4401
|
* <p>Creates a new recommended Application Component (AppComponent).</p>
|
|
5036
4402
|
* @public
|
|
@@ -5052,20 +4418,6 @@ export interface GroupingAppComponent {
|
|
|
5052
4418
|
*/
|
|
5053
4419
|
appComponentName: string | undefined;
|
|
5054
4420
|
}
|
|
5055
|
-
/**
|
|
5056
|
-
* @public
|
|
5057
|
-
* @enum
|
|
5058
|
-
*/
|
|
5059
|
-
export declare const GroupingRecommendationRejectionReason: {
|
|
5060
|
-
readonly DISTINCT_BUSINESS_PURPOSE: "DistinctBusinessPurpose";
|
|
5061
|
-
readonly DISTINCT_USER_GROUP_HANDLING: "DistinctUserGroupHandling";
|
|
5062
|
-
readonly OTHER: "Other";
|
|
5063
|
-
readonly SEPARATE_DATA_CONCERN: "SeparateDataConcern";
|
|
5064
|
-
};
|
|
5065
|
-
/**
|
|
5066
|
-
* @public
|
|
5067
|
-
*/
|
|
5068
|
-
export type GroupingRecommendationRejectionReason = (typeof GroupingRecommendationRejectionReason)[keyof typeof GroupingRecommendationRejectionReason];
|
|
5069
4421
|
/**
|
|
5070
4422
|
* <p>Indicates the resource that will be grouped in the recommended Application Component (AppComponent).</p>
|
|
5071
4423
|
* @public
|
|
@@ -5097,19 +4449,6 @@ export interface GroupingResource {
|
|
|
5097
4449
|
*/
|
|
5098
4450
|
sourceAppComponentIds: string[] | undefined;
|
|
5099
4451
|
}
|
|
5100
|
-
/**
|
|
5101
|
-
* @public
|
|
5102
|
-
* @enum
|
|
5103
|
-
*/
|
|
5104
|
-
export declare const GroupingRecommendationStatusType: {
|
|
5105
|
-
readonly ACCEPTED: "Accepted";
|
|
5106
|
-
readonly PENDING_DECISION: "PendingDecision";
|
|
5107
|
-
readonly REJECTED: "Rejected";
|
|
5108
|
-
};
|
|
5109
|
-
/**
|
|
5110
|
-
* @public
|
|
5111
|
-
*/
|
|
5112
|
-
export type GroupingRecommendationStatusType = (typeof GroupingRecommendationStatusType)[keyof typeof GroupingRecommendationStatusType];
|
|
5113
4452
|
/**
|
|
5114
4453
|
* <p>Creates a new grouping recommendation.</p>
|
|
5115
4454
|
* @public
|
|
@@ -5201,17 +4540,6 @@ export interface ListSopRecommendationsRequest {
|
|
|
5201
4540
|
*/
|
|
5202
4541
|
assessmentArn: string | undefined;
|
|
5203
4542
|
}
|
|
5204
|
-
/**
|
|
5205
|
-
* @public
|
|
5206
|
-
* @enum
|
|
5207
|
-
*/
|
|
5208
|
-
export declare const SopServiceType: {
|
|
5209
|
-
readonly SSM: "SSM";
|
|
5210
|
-
};
|
|
5211
|
-
/**
|
|
5212
|
-
* @public
|
|
5213
|
-
*/
|
|
5214
|
-
export type SopServiceType = (typeof SopServiceType)[keyof typeof SopServiceType];
|
|
5215
4543
|
/**
|
|
5216
4544
|
* <p>Defines a standard operating procedure (SOP) recommendation.</p>
|
|
5217
4545
|
* @public
|
|
@@ -5357,33 +4685,6 @@ export interface ListTestRecommendationsRequest {
|
|
|
5357
4685
|
*/
|
|
5358
4686
|
assessmentArn: string | undefined;
|
|
5359
4687
|
}
|
|
5360
|
-
/**
|
|
5361
|
-
* @public
|
|
5362
|
-
* @enum
|
|
5363
|
-
*/
|
|
5364
|
-
export declare const TestRisk: {
|
|
5365
|
-
readonly HIGH: "High";
|
|
5366
|
-
readonly MEDIUM: "Medium";
|
|
5367
|
-
readonly SMALL: "Small";
|
|
5368
|
-
};
|
|
5369
|
-
/**
|
|
5370
|
-
* @public
|
|
5371
|
-
*/
|
|
5372
|
-
export type TestRisk = (typeof TestRisk)[keyof typeof TestRisk];
|
|
5373
|
-
/**
|
|
5374
|
-
* @public
|
|
5375
|
-
* @enum
|
|
5376
|
-
*/
|
|
5377
|
-
export declare const TestType: {
|
|
5378
|
-
readonly AZ: "AZ";
|
|
5379
|
-
readonly HARDWARE: "Hardware";
|
|
5380
|
-
readonly REGION: "Region";
|
|
5381
|
-
readonly SOFTWARE: "Software";
|
|
5382
|
-
};
|
|
5383
|
-
/**
|
|
5384
|
-
* @public
|
|
5385
|
-
*/
|
|
5386
|
-
export type TestType = (typeof TestType)[keyof typeof TestType];
|
|
5387
4688
|
/**
|
|
5388
4689
|
* <p>Defines a test recommendation.</p>
|
|
5389
4690
|
* @public
|