@aws-sdk/client-resiliencehubv2 3.1056.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/LICENSE +201 -0
- package/README.md +538 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/bdd.js +49 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/index.js +1357 -0
- package/dist-cjs/models/Resiliencehubv2ServiceException.js +12 -0
- package/dist-cjs/models/errors.js +105 -0
- package/dist-cjs/runtimeConfig.browser.js +36 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +42 -0
- package/dist-cjs/schemas/schemas_0.js +1785 -0
- package/dist-es/Resiliencehubv2.js +151 -0
- package/dist-es/Resiliencehubv2Client.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/CreateAssertionCommand.js +16 -0
- package/dist-es/commands/CreateInputSourceCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreateReportCommand.js +16 -0
- package/dist-es/commands/CreateServiceCommand.js +16 -0
- package/dist-es/commands/CreateServiceFunctionCommand.js +16 -0
- package/dist-es/commands/CreateServiceFunctionResourcesCommand.js +16 -0
- package/dist-es/commands/CreateSystemCommand.js +16 -0
- package/dist-es/commands/CreateUserJourneyCommand.js +16 -0
- package/dist-es/commands/DeleteAssertionCommand.js +16 -0
- package/dist-es/commands/DeleteInputSourceCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeleteServiceCommand.js +16 -0
- package/dist-es/commands/DeleteServiceFunctionCommand.js +16 -0
- package/dist-es/commands/DeleteServiceFunctionResourcesCommand.js +16 -0
- package/dist-es/commands/DeleteSystemCommand.js +16 -0
- package/dist-es/commands/DeleteUserJourneyCommand.js +16 -0
- package/dist-es/commands/GetFailureModeFindingCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetServiceCommand.js +16 -0
- package/dist-es/commands/GetSystemCommand.js +16 -0
- package/dist-es/commands/GetUserJourneyCommand.js +16 -0
- package/dist-es/commands/ImportAppCommand.js +16 -0
- package/dist-es/commands/ImportPolicyCommand.js +16 -0
- package/dist-es/commands/ListAssertionsCommand.js +16 -0
- package/dist-es/commands/ListDependenciesCommand.js +16 -0
- package/dist-es/commands/ListFailureModeAssessmentsCommand.js +16 -0
- package/dist-es/commands/ListFailureModeFindingsCommand.js +16 -0
- package/dist-es/commands/ListInputSourcesCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListReportsCommand.js +16 -0
- package/dist-es/commands/ListResourcesCommand.js +16 -0
- package/dist-es/commands/ListServiceEventsCommand.js +16 -0
- package/dist-es/commands/ListServiceFunctionsCommand.js +16 -0
- package/dist-es/commands/ListServiceTopologyEdgesCommand.js +16 -0
- package/dist-es/commands/ListServicesCommand.js +16 -0
- package/dist-es/commands/ListSystemEventsCommand.js +16 -0
- package/dist-es/commands/ListSystemsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/ListUserJourneysCommand.js +16 -0
- package/dist-es/commands/StartFailureModeAssessmentCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAssertionCommand.js +16 -0
- package/dist-es/commands/UpdateDependencyCommand.js +16 -0
- package/dist-es/commands/UpdateFailureModeFindingCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdateServiceCommand.js +16 -0
- package/dist-es/commands/UpdateServiceFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateSystemCommand.js +16 -0
- package/dist-es/commands/UpdateUserJourneyCommand.js +16 -0
- package/dist-es/commands/index.js +51 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/bdd.js +46 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -0
- package/dist-es/models/Resiliencehubv2ServiceException.js +8 -0
- package/dist-es/models/enums.js +182 -0
- package/dist-es/models/errors.js +95 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAssertionsPaginator.js +4 -0
- package/dist-es/pagination/ListDependenciesPaginator.js +4 -0
- package/dist-es/pagination/ListFailureModeAssessmentsPaginator.js +4 -0
- package/dist-es/pagination/ListFailureModeFindingsPaginator.js +4 -0
- package/dist-es/pagination/ListInputSourcesPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListReportsPaginator.js +4 -0
- package/dist-es/pagination/ListResourcesPaginator.js +4 -0
- package/dist-es/pagination/ListServiceEventsPaginator.js +4 -0
- package/dist-es/pagination/ListServiceFunctionsPaginator.js +4 -0
- package/dist-es/pagination/ListServiceTopologyEdgesPaginator.js +4 -0
- package/dist-es/pagination/ListServicesPaginator.js +4 -0
- package/dist-es/pagination/ListSystemEventsPaginator.js +4 -0
- package/dist-es/pagination/ListSystemsPaginator.js +4 -0
- package/dist-es/pagination/ListUserJourneysPaginator.js +4 -0
- package/dist-es/pagination/index.js +16 -0
- package/dist-es/runtimeConfig.browser.js +31 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +38 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1777 -0
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForFailureModeAssessmentSuccess.js +64 -0
- package/dist-es/waiters/waitForReportSucceeded.js +64 -0
- package/dist-es/waiters/waitForServiceAssessmentCompleted.js +40 -0
- package/dist-es/waiters/waitForServiceResourceDiscoveryCompleted.js +49 -0
- package/dist-types/Resiliencehubv2.d.ts +502 -0
- package/dist-types/Resiliencehubv2Client.d.ts +237 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateAssertionCommand.d.ts +103 -0
- package/dist-types/commands/CreateInputSourceCommand.d.ts +115 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +143 -0
- package/dist-types/commands/CreateReportCommand.d.ts +111 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +243 -0
- package/dist-types/commands/CreateServiceFunctionCommand.d.ts +108 -0
- package/dist-types/commands/CreateServiceFunctionResourcesCommand.d.ts +99 -0
- package/dist-types/commands/CreateSystemCommand.d.ts +115 -0
- package/dist-types/commands/CreateUserJourneyCommand.d.ts +105 -0
- package/dist-types/commands/DeleteAssertionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteInputSourceCommand.d.ts +90 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +91 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +91 -0
- package/dist-types/commands/DeleteServiceFunctionCommand.d.ts +92 -0
- package/dist-types/commands/DeleteServiceFunctionResourcesCommand.d.ts +99 -0
- package/dist-types/commands/DeleteSystemCommand.d.ts +91 -0
- package/dist-types/commands/DeleteUserJourneyCommand.d.ts +92 -0
- package/dist-types/commands/GetFailureModeFindingCommand.d.ts +124 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +115 -0
- package/dist-types/commands/GetServiceCommand.d.ts +198 -0
- package/dist-types/commands/GetSystemCommand.d.ts +102 -0
- package/dist-types/commands/GetUserJourneyCommand.d.ts +96 -0
- package/dist-types/commands/ImportAppCommand.d.ts +217 -0
- package/dist-types/commands/ImportPolicyCommand.d.ts +128 -0
- package/dist-types/commands/ListAssertionsCommand.d.ts +101 -0
- package/dist-types/commands/ListDependenciesCommand.d.ts +120 -0
- package/dist-types/commands/ListFailureModeAssessmentsCommand.d.ts +113 -0
- package/dist-types/commands/ListFailureModeFindingsCommand.d.ts +106 -0
- package/dist-types/commands/ListInputSourcesCommand.d.ts +115 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +111 -0
- package/dist-types/commands/ListReportsCommand.d.ts +112 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +108 -0
- package/dist-types/commands/ListServiceEventsCommand.d.ts +201 -0
- package/dist-types/commands/ListServiceFunctionsCommand.d.ts +103 -0
- package/dist-types/commands/ListServiceTopologyEdgesCommand.d.ts +99 -0
- package/dist-types/commands/ListServicesCommand.d.ts +128 -0
- package/dist-types/commands/ListSystemEventsCommand.d.ts +181 -0
- package/dist-types/commands/ListSystemsCommand.d.ts +100 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +93 -0
- package/dist-types/commands/ListUserJourneysCommand.d.ts +98 -0
- package/dist-types/commands/StartFailureModeAssessmentCommand.d.ts +98 -0
- package/dist-types/commands/TagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UpdateAssertionCommand.d.ts +100 -0
- package/dist-types/commands/UpdateDependencyCommand.d.ts +100 -0
- package/dist-types/commands/UpdateFailureModeFindingCommand.d.ts +129 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +135 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +238 -0
- package/dist-types/commands/UpdateServiceFunctionCommand.d.ts +105 -0
- package/dist-types/commands/UpdateSystemCommand.d.ts +107 -0
- package/dist-types/commands/UpdateUserJourneyCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +51 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +18 -0
- package/dist-types/models/Resiliencehubv2ServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +422 -0
- package/dist-types/models/errors.d.ts +113 -0
- package/dist-types/models/models_0.d.ts +4947 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAssertionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDependenciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFailureModeAssessmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFailureModeFindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListInputSourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServiceEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServiceFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServiceTopologyEdgesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSystemEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSystemsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUserJourneysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +259 -0
- package/dist-types/ts3.4/Resiliencehubv2.d.ts +1026 -0
- package/dist-types/ts3.4/Resiliencehubv2Client.d.ts +417 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateAssertionCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/CreateInputSourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateReportCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/CreateServiceFunctionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateServiceFunctionResourcesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateSystemCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateUserJourneyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAssertionCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteInputSourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteServiceFunctionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteServiceFunctionResourcesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteSystemCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteUserJourneyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetFailureModeFindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetSystemCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetUserJourneyCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ImportAppCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ImportPolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListAssertionsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListDependenciesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListFailureModeAssessmentsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListFailureModeFindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListInputSourcesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListReportsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListServiceEventsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListServiceFunctionsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListServiceTopologyEdgesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListSystemEventsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListSystemsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListUserJourneysCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/StartFailureModeAssessmentCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateAssertionCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateDependencyCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateFailureModeFindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateServiceFunctionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateSystemCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateUserJourneyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +13 -0
- package/dist-types/ts3.4/models/Resiliencehubv2ServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +237 -0
- package/dist-types/ts3.4/models/errors.d.ts +56 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1761 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAssertionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDependenciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFailureModeAssessmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFailureModeFindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListInputSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServiceEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServiceFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServiceTopologyEdgesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSystemEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSystemsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUserJourneysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +16 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +259 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForFailureModeAssessmentSuccess.d.ts +19 -0
- package/dist-types/ts3.4/waiters/waitForReportSucceeded.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForServiceAssessmentCompleted.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForServiceResourceDiscoveryCompleted.d.ts +17 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForFailureModeAssessmentSuccess.d.ts +15 -0
- package/dist-types/waiters/waitForReportSucceeded.d.ts +15 -0
- package/dist-types/waiters/waitForServiceAssessmentCompleted.d.ts +15 -0
- package/dist-types/waiters/waitForServiceResourceDiscoveryCompleted.d.ts +15 -0
- package/package.json +71 -0
|
@@ -0,0 +1,422 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AchievabilityStatus: {
|
|
6
|
+
readonly ACHIEVABLE: "ACHIEVABLE";
|
|
7
|
+
readonly NOT_ACHIEVABLE: "NOT_ACHIEVABLE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type AchievabilityStatus = (typeof AchievabilityStatus)[keyof typeof AchievabilityStatus];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ActorType: {
|
|
18
|
+
readonly SYSTEM: "SYSTEM";
|
|
19
|
+
readonly USER: "USER";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type ActorType = (typeof ActorType)[keyof typeof ActorType];
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* @enum
|
|
28
|
+
*/
|
|
29
|
+
export declare const AssertionSource: {
|
|
30
|
+
readonly AI_GENERATED: "AI_GENERATED";
|
|
31
|
+
readonly USER: "USER";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export type AssertionSource = (typeof AssertionSource)[keyof typeof AssertionSource];
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
* @enum
|
|
40
|
+
*/
|
|
41
|
+
export declare const CostCurrency: {
|
|
42
|
+
readonly USD: "USD";
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export type CostCurrency = (typeof CostCurrency)[keyof typeof CostCurrency];
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* @enum
|
|
51
|
+
*/
|
|
52
|
+
export declare const AssessmentErrorCode: {
|
|
53
|
+
readonly AGENT_ERROR: "AGENT_ERROR";
|
|
54
|
+
readonly CMK_ACCESS_DENIED: "CMK_ACCESS_DENIED";
|
|
55
|
+
readonly DESIGN_FILE_ACCESS_DENIED: "DESIGN_FILE_ACCESS_DENIED";
|
|
56
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
57
|
+
readonly INVALID_PERMISSIONS: "INVALID_PERMISSIONS";
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export type AssessmentErrorCode = (typeof AssessmentErrorCode)[keyof typeof AssessmentErrorCode];
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
* @enum
|
|
66
|
+
*/
|
|
67
|
+
export declare const AssessmentStatus: {
|
|
68
|
+
readonly FAILED: "FAILED";
|
|
69
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
70
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
71
|
+
readonly PENDING: "PENDING";
|
|
72
|
+
readonly SUCCESS: "SUCCESS";
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export type AssessmentStatus = (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
* @enum
|
|
81
|
+
*/
|
|
82
|
+
export declare const AssessmentStep: {
|
|
83
|
+
readonly RESILIENCE_ASSESSMENT: "RESILIENCE_ASSESSMENT";
|
|
84
|
+
readonly SERVICE_FUNCTION_GENERATION: "SERVICE_FUNCTION_GENERATION";
|
|
85
|
+
readonly TOPOLOGY_ENHANCEMENT: "TOPOLOGY_ENHANCEMENT";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export type AssessmentStep = (typeof AssessmentStep)[keyof typeof AssessmentStep];
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* @enum
|
|
94
|
+
*/
|
|
95
|
+
export declare const ValidationExceptionReason: {
|
|
96
|
+
readonly DUPLICATE_VALUE: "DUPLICATE_VALUE";
|
|
97
|
+
readonly INVALID_FIELD_VALUE: "INVALID_FIELD_VALUE";
|
|
98
|
+
readonly MISSING_REQUIRED_FIELD: "MISSING_REQUIRED_FIELD";
|
|
99
|
+
readonly OTHER: "OTHER";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* @enum
|
|
108
|
+
*/
|
|
109
|
+
export declare const MultiAzDisasterRecoveryApproach: {
|
|
110
|
+
readonly ACTIVE_ACTIVE: "ACTIVE_ACTIVE";
|
|
111
|
+
readonly BACKUP_AND_RESTORE: "BACKUP_AND_RESTORE";
|
|
112
|
+
readonly HOT_STANDBY: "HOT_STANDBY";
|
|
113
|
+
readonly PILOT_LIGHT: "PILOT_LIGHT";
|
|
114
|
+
readonly WARM_STANDBY: "WARM_STANDBY";
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export type MultiAzDisasterRecoveryApproach = (typeof MultiAzDisasterRecoveryApproach)[keyof typeof MultiAzDisasterRecoveryApproach];
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* @enum
|
|
123
|
+
*/
|
|
124
|
+
export declare const MultiRegionDisasterRecoveryApproach: {
|
|
125
|
+
readonly ACTIVE_ACTIVE: "ACTIVE_ACTIVE";
|
|
126
|
+
readonly BACKUP_AND_RESTORE: "BACKUP_AND_RESTORE";
|
|
127
|
+
readonly HOT_STANDBY: "HOT_STANDBY";
|
|
128
|
+
readonly PILOT_LIGHT: "PILOT_LIGHT";
|
|
129
|
+
readonly WARM_STANDBY: "WARM_STANDBY";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type MultiRegionDisasterRecoveryApproach = (typeof MultiRegionDisasterRecoveryApproach)[keyof typeof MultiRegionDisasterRecoveryApproach];
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* @enum
|
|
138
|
+
*/
|
|
139
|
+
export declare const ReportType: {
|
|
140
|
+
readonly FAILURE_MODE: "FAILURE_MODE";
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
* @enum
|
|
149
|
+
*/
|
|
150
|
+
export declare const ReportGenerationErrorCode: {
|
|
151
|
+
readonly CONFIGURATION_ERROR: "CONFIGURATION_ERROR";
|
|
152
|
+
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
153
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export type ReportGenerationErrorCode = (typeof ReportGenerationErrorCode)[keyof typeof ReportGenerationErrorCode];
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
* @enum
|
|
162
|
+
*/
|
|
163
|
+
export declare const ReportGenerationStatus: {
|
|
164
|
+
readonly FAILED: "FAILED";
|
|
165
|
+
readonly PENDING: "PENDING";
|
|
166
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type ReportGenerationStatus = (typeof ReportGenerationStatus)[keyof typeof ReportGenerationStatus];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const DependencyDiscoveryInput: {
|
|
177
|
+
readonly DISABLED: "DISABLED";
|
|
178
|
+
readonly ENABLED: "ENABLED";
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
export type DependencyDiscoveryInput = (typeof DependencyDiscoveryInput)[keyof typeof DependencyDiscoveryInput];
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
* @enum
|
|
187
|
+
*/
|
|
188
|
+
export declare const DependencyDiscoveryStatus: {
|
|
189
|
+
readonly DISABLED: "DISABLED";
|
|
190
|
+
readonly ENABLED: "ENABLED";
|
|
191
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
export type DependencyDiscoveryStatus = (typeof DependencyDiscoveryStatus)[keyof typeof DependencyDiscoveryStatus];
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
* @enum
|
|
200
|
+
*/
|
|
201
|
+
export declare const PolicyValueSource: {
|
|
202
|
+
readonly CROSS_ACCOUNT: "CROSS_ACCOUNT";
|
|
203
|
+
readonly SELF: "SELF";
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export type PolicyValueSource = (typeof PolicyValueSource)[keyof typeof PolicyValueSource];
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
* @enum
|
|
212
|
+
*/
|
|
213
|
+
export declare const ResourceDiscoveryErrorCode: {
|
|
214
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
215
|
+
readonly CLUSTER_NOT_FOUND: "CLUSTER_NOT_FOUND";
|
|
216
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
217
|
+
readonly INVALID_PERMISSIONS: "INVALID_PERMISSIONS";
|
|
218
|
+
readonly STACK_NOT_FOUND: "STACK_NOT_FOUND";
|
|
219
|
+
readonly STATE_FILE_NOT_FOUND: "STATE_FILE_NOT_FOUND";
|
|
220
|
+
readonly UNSUPPORTED_CLUSTER: "UNSUPPORTED_CLUSTER";
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export type ResourceDiscoveryErrorCode = (typeof ResourceDiscoveryErrorCode)[keyof typeof ResourceDiscoveryErrorCode];
|
|
226
|
+
/**
|
|
227
|
+
* @public
|
|
228
|
+
* @enum
|
|
229
|
+
*/
|
|
230
|
+
export declare const ResourceDiscoveryRunStatus: {
|
|
231
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
232
|
+
readonly FAILED: "FAILED";
|
|
233
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
234
|
+
readonly RUNNING: "RUNNING";
|
|
235
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
export type ResourceDiscoveryRunStatus = (typeof ResourceDiscoveryRunStatus)[keyof typeof ResourceDiscoveryRunStatus];
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
* @enum
|
|
244
|
+
*/
|
|
245
|
+
export declare const ServiceFunctionCriticality: {
|
|
246
|
+
readonly PRIMARY: "PRIMARY";
|
|
247
|
+
readonly SUPPLEMENTAL: "SUPPLEMENTAL";
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export type ServiceFunctionCriticality = (typeof ServiceFunctionCriticality)[keyof typeof ServiceFunctionCriticality];
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
* @enum
|
|
256
|
+
*/
|
|
257
|
+
export declare const ServiceFunctionSource: {
|
|
258
|
+
readonly AI_GENERATED: "AI_GENERATED";
|
|
259
|
+
readonly USER: "USER";
|
|
260
|
+
};
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
*/
|
|
264
|
+
export type ServiceFunctionSource = (typeof ServiceFunctionSource)[keyof typeof ServiceFunctionSource];
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
* @enum
|
|
268
|
+
*/
|
|
269
|
+
export declare const DependencyCriticality: {
|
|
270
|
+
readonly HARD: "HARD";
|
|
271
|
+
readonly SOFT: "SOFT";
|
|
272
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
273
|
+
};
|
|
274
|
+
/**
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
export type DependencyCriticality = (typeof DependencyCriticality)[keyof typeof DependencyCriticality];
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
* @enum
|
|
281
|
+
*/
|
|
282
|
+
export declare const QueryGranularity: {
|
|
283
|
+
readonly DAILY: "DAILY";
|
|
284
|
+
readonly HOURLY: "HOURLY";
|
|
285
|
+
};
|
|
286
|
+
/**
|
|
287
|
+
* @public
|
|
288
|
+
*/
|
|
289
|
+
export type QueryGranularity = (typeof QueryGranularity)[keyof typeof QueryGranularity];
|
|
290
|
+
/**
|
|
291
|
+
* @public
|
|
292
|
+
* @enum
|
|
293
|
+
*/
|
|
294
|
+
export declare const TopologyType: {
|
|
295
|
+
readonly CONTAINMENT: "CONTAINMENT";
|
|
296
|
+
readonly DATA_FLOW: "DATA_FLOW";
|
|
297
|
+
readonly OBSERVABILITY: "OBSERVABILITY";
|
|
298
|
+
readonly PERMISSIONS: "PERMISSIONS";
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
export type TopologyType = (typeof TopologyType)[keyof typeof TopologyType];
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
* @enum
|
|
307
|
+
*/
|
|
308
|
+
export declare const FailureCategory: {
|
|
309
|
+
readonly EXCESSIVE_LATENCY: "EXCESSIVE_LATENCY";
|
|
310
|
+
readonly EXCESSIVE_LOAD: "EXCESSIVE_LOAD";
|
|
311
|
+
readonly MISCONFIGURATION_AND_BUGS: "MISCONFIGURATION_AND_BUGS";
|
|
312
|
+
readonly SHARED_FATE: "SHARED_FATE";
|
|
313
|
+
readonly SINGLE_POINT_OF_FAILURE: "SINGLE_POINT_OF_FAILURE";
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
export type FailureCategory = (typeof FailureCategory)[keyof typeof FailureCategory];
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
* @enum
|
|
322
|
+
*/
|
|
323
|
+
export declare const PolicyComponent: {
|
|
324
|
+
readonly AVAILABILITY_SLO: "AVAILABILITY_SLO";
|
|
325
|
+
readonly DATA_RECOVERY: "DATA_RECOVERY";
|
|
326
|
+
readonly MULTI_AZ_DISASTER_RECOVERY: "MULTI_AZ_DISASTER_RECOVERY";
|
|
327
|
+
readonly MULTI_REGION_DISASTER_RECOVERY: "MULTI_REGION_DISASTER_RECOVERY";
|
|
328
|
+
};
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
export type PolicyComponent = (typeof PolicyComponent)[keyof typeof PolicyComponent];
|
|
333
|
+
/**
|
|
334
|
+
* @public
|
|
335
|
+
* @enum
|
|
336
|
+
*/
|
|
337
|
+
export declare const FindingSeverity: {
|
|
338
|
+
readonly HIGH: "HIGH";
|
|
339
|
+
readonly LOW: "LOW";
|
|
340
|
+
readonly MEDIUM: "MEDIUM";
|
|
341
|
+
};
|
|
342
|
+
/**
|
|
343
|
+
* @public
|
|
344
|
+
*/
|
|
345
|
+
export type FindingSeverity = (typeof FindingSeverity)[keyof typeof FindingSeverity];
|
|
346
|
+
/**
|
|
347
|
+
* @public
|
|
348
|
+
* @enum
|
|
349
|
+
*/
|
|
350
|
+
export declare const FindingStatus: {
|
|
351
|
+
readonly IRRELEVANT: "IRRELEVANT";
|
|
352
|
+
readonly OPEN: "OPEN";
|
|
353
|
+
readonly RESOLVED: "RESOLVED";
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
*/
|
|
358
|
+
export type FindingStatus = (typeof FindingStatus)[keyof typeof FindingStatus];
|
|
359
|
+
/**
|
|
360
|
+
* @public
|
|
361
|
+
* @enum
|
|
362
|
+
*/
|
|
363
|
+
export declare const InputSourceType: {
|
|
364
|
+
readonly CFN_STACK: "CFN_STACK";
|
|
365
|
+
readonly DESIGN_FILE: "DESIGN_FILE";
|
|
366
|
+
readonly EKS: "EKS";
|
|
367
|
+
readonly MONITORING: "MONITORING";
|
|
368
|
+
readonly TAGS: "TAGS";
|
|
369
|
+
readonly TERRAFORM: "TERRAFORM";
|
|
370
|
+
};
|
|
371
|
+
/**
|
|
372
|
+
* @public
|
|
373
|
+
*/
|
|
374
|
+
export type InputSourceType = (typeof InputSourceType)[keyof typeof InputSourceType];
|
|
375
|
+
/**
|
|
376
|
+
* @public
|
|
377
|
+
* @enum
|
|
378
|
+
*/
|
|
379
|
+
export declare const ServiceEventType: {
|
|
380
|
+
readonly ASSERTION_CREATED: "ASSERTION_CREATED";
|
|
381
|
+
readonly ASSERTION_DELETED: "ASSERTION_DELETED";
|
|
382
|
+
readonly ASSERTION_UPDATED: "ASSERTION_UPDATED";
|
|
383
|
+
readonly SERVICE_ACHIEVABILITY_UPDATED: "SERVICE_ACHIEVABILITY_UPDATED";
|
|
384
|
+
readonly SERVICE_CREATED: "SERVICE_CREATED";
|
|
385
|
+
readonly SERVICE_DELETED: "SERVICE_DELETED";
|
|
386
|
+
readonly SERVICE_FUNCTION_CREATED: "SERVICE_FUNCTION_CREATED";
|
|
387
|
+
readonly SERVICE_FUNCTION_DELETED: "SERVICE_FUNCTION_DELETED";
|
|
388
|
+
readonly SERVICE_FUNCTION_RESOURCES_ADDED: "SERVICE_FUNCTION_RESOURCES_ADDED";
|
|
389
|
+
readonly SERVICE_FUNCTION_RESOURCES_REMOVED: "SERVICE_FUNCTION_RESOURCES_REMOVED";
|
|
390
|
+
readonly SERVICE_FUNCTION_UPDATED: "SERVICE_FUNCTION_UPDATED";
|
|
391
|
+
readonly SERVICE_INPUT_SOURCES_UPDATED: "SERVICE_INPUT_SOURCES_UPDATED";
|
|
392
|
+
readonly SERVICE_POLICY_ASSOCIATED: "SERVICE_POLICY_ASSOCIATED";
|
|
393
|
+
readonly SERVICE_POLICY_DISASSOCIATED: "SERVICE_POLICY_DISASSOCIATED";
|
|
394
|
+
readonly SERVICE_RESOURCES_ASSOCIATED: "SERVICE_RESOURCES_ASSOCIATED";
|
|
395
|
+
readonly SERVICE_RESOURCES_DISASSOCIATED: "SERVICE_RESOURCES_DISASSOCIATED";
|
|
396
|
+
readonly SERVICE_SYSTEM_ASSOCIATED: "SERVICE_SYSTEM_ASSOCIATED";
|
|
397
|
+
readonly SERVICE_SYSTEM_DISASSOCIATED: "SERVICE_SYSTEM_DISASSOCIATED";
|
|
398
|
+
readonly SERVICE_WORKFLOW_UPDATED: "SERVICE_WORKFLOW_UPDATED";
|
|
399
|
+
};
|
|
400
|
+
/**
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
export type ServiceEventType = (typeof ServiceEventType)[keyof typeof ServiceEventType];
|
|
404
|
+
/**
|
|
405
|
+
* @public
|
|
406
|
+
* @enum
|
|
407
|
+
*/
|
|
408
|
+
export declare const SystemEventType: {
|
|
409
|
+
readonly SYSTEM_CREATED: "SYSTEM_CREATED";
|
|
410
|
+
readonly SYSTEM_DELETED: "SYSTEM_DELETED";
|
|
411
|
+
readonly SYSTEM_POLICY_ASSOCIATED: "SYSTEM_POLICY_ASSOCIATED";
|
|
412
|
+
readonly SYSTEM_POLICY_DISASSOCIATED: "SYSTEM_POLICY_DISASSOCIATED";
|
|
413
|
+
readonly SYSTEM_SERVICE_ASSOCIATED: "SYSTEM_SERVICE_ASSOCIATED";
|
|
414
|
+
readonly SYSTEM_SERVICE_DISASSOCIATED: "SYSTEM_SERVICE_DISASSOCIATED";
|
|
415
|
+
readonly SYSTEM_USER_JOURNEY_CREATED: "SYSTEM_USER_JOURNEY_CREATED";
|
|
416
|
+
readonly SYSTEM_USER_JOURNEY_DELETED: "SYSTEM_USER_JOURNEY_DELETED";
|
|
417
|
+
readonly SYSTEM_USER_JOURNEY_UPDATED: "SYSTEM_USER_JOURNEY_UPDATED";
|
|
418
|
+
};
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
export type SystemEventType = (typeof SystemEventType)[keyof typeof SystemEventType];
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
|
+
import type { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import type { ValidationExceptionField } from "./models_0";
|
|
4
|
+
import { Resiliencehubv2ServiceException as __BaseException } from "./Resiliencehubv2ServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>Conflict — resource already exists.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class ConflictException extends __BaseException {
|
|
22
|
+
readonly name: "ConflictException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Internal service error.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class InternalServerException extends __BaseException {
|
|
34
|
+
readonly name: "InternalServerException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>Resource not found.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceNotFoundException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
/**
|
|
49
|
+
* <p>The identifier of the resource that was not found.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
resourceId?: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The type of the resource that was not found.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
resourceType?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>Service quota exceeded.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
68
|
+
readonly name: "ServiceQuotaExceededException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class ValidationException extends __BaseException {
|
|
80
|
+
readonly name: "ValidationException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* <p>The reason for the validation failure.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
reason?: ValidationExceptionReason | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The list of fields that failed validation.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* <p>Too many requests — rate limit exceeded.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export declare class ThrottlingException extends __BaseException {
|
|
102
|
+
readonly name: "ThrottlingException";
|
|
103
|
+
readonly $fault: "client";
|
|
104
|
+
/**
|
|
105
|
+
* <p>The number of seconds to wait before retrying the request.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
retryAfterSeconds?: number | undefined;
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
112
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
113
|
+
}
|