@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,4947 @@
|
|
|
1
|
+
import type { AchievabilityStatus, ActorType, AssertionSource, AssessmentErrorCode, AssessmentStatus, AssessmentStep, CostCurrency, DependencyCriticality, DependencyDiscoveryInput, DependencyDiscoveryStatus, FailureCategory, FindingSeverity, FindingStatus, InputSourceType, MultiAzDisasterRecoveryApproach, MultiRegionDisasterRecoveryApproach, PolicyComponent, PolicyValueSource, QueryGranularity, ReportGenerationErrorCode, ReportGenerationStatus, ReportType, ResourceDiscoveryErrorCode, ResourceDiscoveryRunStatus, ServiceEventType, ServiceFunctionCriticality, ServiceFunctionSource, SystemEventType, TopologyType } from "./enums";
|
|
2
|
+
/**
|
|
3
|
+
* <p>Describes the achievability status of a service's resilience targets based on the most recent assessment.</p>
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface Achievability {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The achievability status of the availability SLO target for the service.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
availabilitySlo?: AchievabilityStatus | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The achievability status of the multi-AZ RTO and RPO targets for the service.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
multiAzRtoRpo?: AchievabilityStatus | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The achievability status of the multi-Region RTO and RPO targets for the service.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
multiRegionRtoRpo?: AchievabilityStatus | undefined;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* <p>Represents a resilience assertion for a service.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export interface Assertion {
|
|
28
|
+
/**
|
|
29
|
+
* <p>ARN identifier.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
serviceArn: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The unique identifier of the assertion.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
assertionId: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The text content of the assertion.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
text: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The source of the assertion, indicating whether it was AI-generated or created by a user.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
source: AssertionSource | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The timestamp when the assertion was created.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
createdAt?: Date | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The timestamp when the assertion was last updated.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
updatedAt?: Date | undefined;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>Metadata for an assertion created event.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export interface AssertionCreatedMetadata {
|
|
64
|
+
/**
|
|
65
|
+
* <p>The unique identifier of the created assertion.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
assertionId?: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The name of the created assertion.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
assertionName?: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>Metadata for an assertion deleted event.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export interface AssertionDeletedMetadata {
|
|
80
|
+
/**
|
|
81
|
+
* <p>The unique identifier of the deleted assertion.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
assertionId?: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The name of the deleted assertion.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
assertionName?: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* <p>Metadata for an assertion updated event.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export interface AssertionUpdatedMetadata {
|
|
96
|
+
/**
|
|
97
|
+
* <p>The unique identifier of the updated assertion.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
assertionId?: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The name of the updated assertion.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
assertionName?: string | undefined;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>Represents the cost of running a failure mode assessment.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface AssessmentCost {
|
|
112
|
+
/**
|
|
113
|
+
* <p>The cost amount for the assessment.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
amount?: number | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The currency of the assessment cost.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
currency?: CostCurrency | undefined;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>Contains summary information about a failure mode assessment.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export interface AssessmentSummary {
|
|
128
|
+
/**
|
|
129
|
+
* <p>The unique identifier of the assessment.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
assessmentId: string | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>ARN identifier.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
serviceArn: string | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* <p>The current status of the assessment.</p>
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
assessmentStatus?: AssessmentStatus | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* <p>The current step of the assessment process.</p>
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
assessmentStep?: AssessmentStep | undefined;
|
|
148
|
+
/**
|
|
149
|
+
* <p>The total number of findings generated by the assessment.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
totalFindings?: number | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* <p>The timestamp when the assessment started.</p>
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
startedAt?: Date | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* <p>The timestamp when the assessment ended.</p>
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
endedAt?: Date | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* <p>A message describing the error if the assessment failed.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
errorMessage?: string | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* <p>The error code if the assessment failed.</p>
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
errorCode?: AssessmentErrorCode | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* <p>The cost of the assessment.</p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
assessmentCost?: AssessmentCost | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* <p>The number of billable assessment units consumed by the assessment.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
billableAssessmentUnitCount?: number | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* <p>The achievability results from the assessment.</p>
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
achievability?: Achievability | undefined;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* <p>Represents a system associated with a service.</p>
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export interface AssociatedSystem {
|
|
194
|
+
/**
|
|
195
|
+
* <p>ARN identifier.</p>
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
systemArn: string | undefined;
|
|
199
|
+
/**
|
|
200
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
systemName?: string | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* <p>The list of user journey identifiers that associate this system with the service.</p>
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
userJourneyIds?: string[] | undefined;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* <p>Defines the availability service level objective (SLO) for a resilience policy.</p>
|
|
212
|
+
* @public
|
|
213
|
+
*/
|
|
214
|
+
export interface AvailabilitySlo {
|
|
215
|
+
/**
|
|
216
|
+
* <p>The target availability percentage, expressed as a value between 0 and 100.</p>
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
target?: number | undefined;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export interface CreateAssertionRequest {
|
|
225
|
+
/**
|
|
226
|
+
* <p>ARN identifier.</p>
|
|
227
|
+
* @public
|
|
228
|
+
*/
|
|
229
|
+
serviceArn: string | undefined;
|
|
230
|
+
/**
|
|
231
|
+
* <p>The text content of the assertion.</p>
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
text: string | undefined;
|
|
235
|
+
/**
|
|
236
|
+
* <p>Idempotency token.</p>
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
clientToken?: string | undefined;
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
export interface CreateAssertionResponse {
|
|
245
|
+
/**
|
|
246
|
+
* <p>The created assertion.</p>
|
|
247
|
+
* @public
|
|
248
|
+
*/
|
|
249
|
+
assertion: Assertion | undefined;
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* <p>Describes a field that failed validation.</p>
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
255
|
+
export interface ValidationExceptionField {
|
|
256
|
+
/**
|
|
257
|
+
* <p>The name of the field that failed validation.</p>
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
name: string | undefined;
|
|
261
|
+
/**
|
|
262
|
+
* <p>The validation error message for the field.</p>
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
265
|
+
message: string | undefined;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* <p>Defines an Amazon EKS cluster and its namespaces as an input source for resource discovery.</p>
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export interface EksSource {
|
|
272
|
+
/**
|
|
273
|
+
* <p>ARN identifier.</p>
|
|
274
|
+
* @public
|
|
275
|
+
*/
|
|
276
|
+
clusterArn: string | undefined;
|
|
277
|
+
/**
|
|
278
|
+
* <p>The list of Kubernetes namespaces within the EKS cluster.</p>
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
namespaces: string[] | undefined;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* <p>A tag key-value pair used for resource discovery.</p>
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
287
|
+
export interface ResourceTag {
|
|
288
|
+
/**
|
|
289
|
+
* <p>Tag key.</p>
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
key: string | undefined;
|
|
293
|
+
/**
|
|
294
|
+
* <p>The list of tag values.</p>
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
values: string[] | undefined;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* <p>Resource configuration for an input source. Provide exactly one field.</p>
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
export type ResourceConfiguration = ResourceConfiguration.CfnStackArnMember | ResourceConfiguration.DesignFileS3UrlMember | ResourceConfiguration.EksMember | ResourceConfiguration.ResourceTagsMember | ResourceConfiguration.TfStateFileUrlMember | ResourceConfiguration.$UnknownMember;
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
export declare namespace ResourceConfiguration {
|
|
308
|
+
/**
|
|
309
|
+
* <p>The resource tags for tag-based resource discovery.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
interface ResourceTagsMember {
|
|
313
|
+
resourceTags: ResourceTag[];
|
|
314
|
+
cfnStackArn?: never;
|
|
315
|
+
tfStateFileUrl?: never;
|
|
316
|
+
eks?: never;
|
|
317
|
+
designFileS3Url?: never;
|
|
318
|
+
$unknown?: never;
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* <p>ARN identifier.</p>
|
|
322
|
+
* @public
|
|
323
|
+
*/
|
|
324
|
+
interface CfnStackArnMember {
|
|
325
|
+
resourceTags?: never;
|
|
326
|
+
cfnStackArn: string;
|
|
327
|
+
tfStateFileUrl?: never;
|
|
328
|
+
eks?: never;
|
|
329
|
+
designFileS3Url?: never;
|
|
330
|
+
$unknown?: never;
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* <p>S3 URL — virtual hosted-style or s3:// URI.</p>
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
interface TfStateFileUrlMember {
|
|
337
|
+
resourceTags?: never;
|
|
338
|
+
cfnStackArn?: never;
|
|
339
|
+
tfStateFileUrl: string;
|
|
340
|
+
eks?: never;
|
|
341
|
+
designFileS3Url?: never;
|
|
342
|
+
$unknown?: never;
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* <p>The Amazon EKS configuration for resource discovery.</p>
|
|
346
|
+
* @public
|
|
347
|
+
*/
|
|
348
|
+
interface EksMember {
|
|
349
|
+
resourceTags?: never;
|
|
350
|
+
cfnStackArn?: never;
|
|
351
|
+
tfStateFileUrl?: never;
|
|
352
|
+
eks: EksSource;
|
|
353
|
+
designFileS3Url?: never;
|
|
354
|
+
$unknown?: never;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* <p>S3 URL — virtual hosted-style or s3:// URI.</p>
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
interface DesignFileS3UrlMember {
|
|
361
|
+
resourceTags?: never;
|
|
362
|
+
cfnStackArn?: never;
|
|
363
|
+
tfStateFileUrl?: never;
|
|
364
|
+
eks?: never;
|
|
365
|
+
designFileS3Url: string;
|
|
366
|
+
$unknown?: never;
|
|
367
|
+
}
|
|
368
|
+
/**
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
interface $UnknownMember {
|
|
372
|
+
resourceTags?: never;
|
|
373
|
+
cfnStackArn?: never;
|
|
374
|
+
tfStateFileUrl?: never;
|
|
375
|
+
eks?: never;
|
|
376
|
+
designFileS3Url?: never;
|
|
377
|
+
$unknown: [string, any];
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* @deprecated unused in schema-serde mode.
|
|
381
|
+
*
|
|
382
|
+
*/
|
|
383
|
+
interface Visitor<T> {
|
|
384
|
+
resourceTags: (value: ResourceTag[]) => T;
|
|
385
|
+
cfnStackArn: (value: string) => T;
|
|
386
|
+
tfStateFileUrl: (value: string) => T;
|
|
387
|
+
eks: (value: EksSource) => T;
|
|
388
|
+
designFileS3Url: (value: string) => T;
|
|
389
|
+
_: (name: string, value: any) => T;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* @public
|
|
394
|
+
*/
|
|
395
|
+
export interface CreateInputSourceRequest {
|
|
396
|
+
/**
|
|
397
|
+
* <p>ARN identifier.</p>
|
|
398
|
+
* @public
|
|
399
|
+
*/
|
|
400
|
+
serviceArn: string | undefined;
|
|
401
|
+
/**
|
|
402
|
+
* <p>Resource configuration for an input source. Provide exactly one field.</p>
|
|
403
|
+
* @public
|
|
404
|
+
*/
|
|
405
|
+
resourceConfiguration: ResourceConfiguration | undefined;
|
|
406
|
+
/**
|
|
407
|
+
* <p>Idempotency token.</p>
|
|
408
|
+
* @public
|
|
409
|
+
*/
|
|
410
|
+
clientToken?: string | undefined;
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
415
|
+
export interface CreateInputSourceResponse {
|
|
416
|
+
/**
|
|
417
|
+
* <p>ARN identifier.</p>
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
serviceArn: string | undefined;
|
|
421
|
+
/**
|
|
422
|
+
* <p>The unique identifier assigned to the created input source.</p>
|
|
423
|
+
* @public
|
|
424
|
+
*/
|
|
425
|
+
inputSourceId: string | undefined;
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* <p>Defines data recovery targets for a resilience policy.</p>
|
|
429
|
+
* @public
|
|
430
|
+
*/
|
|
431
|
+
export interface DataRecoveryTargets {
|
|
432
|
+
/**
|
|
433
|
+
* <p>The target time between backups, in minutes.</p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
timeBetweenBackupsInMinutes?: number | undefined;
|
|
437
|
+
}
|
|
438
|
+
/**
|
|
439
|
+
* <p>Defines the multi-AZ disaster recovery targets for a resilience policy.</p>
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
export interface MultiAzTargets {
|
|
443
|
+
/**
|
|
444
|
+
* <p>The recovery time objective (RTO) target for multi-AZ, in minutes.</p>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
rtoInMinutes?: number | undefined;
|
|
448
|
+
/**
|
|
449
|
+
* <p>The recovery point objective (RPO) target for multi-AZ, in minutes.</p>
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
rpoInMinutes?: number | undefined;
|
|
453
|
+
/**
|
|
454
|
+
* <p>The disaster recovery approach for multi-AZ.</p>
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
457
|
+
disasterRecoveryApproach?: MultiAzDisasterRecoveryApproach | undefined;
|
|
458
|
+
}
|
|
459
|
+
/**
|
|
460
|
+
* <p>Defines the multi-Region disaster recovery targets for a resilience policy.</p>
|
|
461
|
+
* @public
|
|
462
|
+
*/
|
|
463
|
+
export interface MultiRegionTargets {
|
|
464
|
+
/**
|
|
465
|
+
* <p>The recovery time objective (RTO) target for multi-Region, in minutes.</p>
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
rtoInMinutes?: number | undefined;
|
|
469
|
+
/**
|
|
470
|
+
* <p>The recovery point objective (RPO) target for multi-Region, in minutes.</p>
|
|
471
|
+
* @public
|
|
472
|
+
*/
|
|
473
|
+
rpoInMinutes?: number | undefined;
|
|
474
|
+
/**
|
|
475
|
+
* <p>The disaster recovery approach for multi-Region.</p>
|
|
476
|
+
* @public
|
|
477
|
+
*/
|
|
478
|
+
disasterRecoveryApproach?: MultiRegionDisasterRecoveryApproach | undefined;
|
|
479
|
+
}
|
|
480
|
+
/**
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
483
|
+
export interface CreatePolicyRequest {
|
|
484
|
+
/**
|
|
485
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
486
|
+
* @public
|
|
487
|
+
*/
|
|
488
|
+
name: string | undefined;
|
|
489
|
+
/**
|
|
490
|
+
* <p>Resource description for services and policies.</p>
|
|
491
|
+
* @public
|
|
492
|
+
*/
|
|
493
|
+
description?: string | undefined;
|
|
494
|
+
/**
|
|
495
|
+
* <p>The availability SLO for the resilience policy.</p>
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
498
|
+
availabilitySlo?: AvailabilitySlo | undefined;
|
|
499
|
+
/**
|
|
500
|
+
* <p>The multi-AZ disaster recovery targets for the resilience policy.</p>
|
|
501
|
+
* @public
|
|
502
|
+
*/
|
|
503
|
+
multiAz?: MultiAzTargets | undefined;
|
|
504
|
+
/**
|
|
505
|
+
* <p>The multi-Region disaster recovery targets for the resilience policy.</p>
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
multiRegion?: MultiRegionTargets | undefined;
|
|
509
|
+
/**
|
|
510
|
+
* <p>The data recovery targets for the resilience policy.</p>
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
dataRecovery?: DataRecoveryTargets | undefined;
|
|
514
|
+
/**
|
|
515
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
kmsKeyId?: string | undefined;
|
|
519
|
+
/**
|
|
520
|
+
* <p>Resource tags.</p>
|
|
521
|
+
* @public
|
|
522
|
+
*/
|
|
523
|
+
tags?: Record<string, string> | undefined;
|
|
524
|
+
/**
|
|
525
|
+
* <p>Idempotency token.</p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
clientToken?: string | undefined;
|
|
529
|
+
}
|
|
530
|
+
/**
|
|
531
|
+
* <p>Represents a resilience policy that defines availability and disaster recovery requirements.</p>
|
|
532
|
+
* @public
|
|
533
|
+
*/
|
|
534
|
+
export interface Policy {
|
|
535
|
+
/**
|
|
536
|
+
* <p>ARN identifier.</p>
|
|
537
|
+
* @public
|
|
538
|
+
*/
|
|
539
|
+
policyArn: string | undefined;
|
|
540
|
+
/**
|
|
541
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
544
|
+
name: string | undefined;
|
|
545
|
+
/**
|
|
546
|
+
* <p>Resource description for services and policies.</p>
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
549
|
+
description?: string | undefined;
|
|
550
|
+
/**
|
|
551
|
+
* <p>The availability SLO defined in the policy.</p>
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
availabilitySlo?: AvailabilitySlo | undefined;
|
|
555
|
+
/**
|
|
556
|
+
* <p>The multi-AZ disaster recovery targets defined in the policy.</p>
|
|
557
|
+
* @public
|
|
558
|
+
*/
|
|
559
|
+
multiAz?: MultiAzTargets | undefined;
|
|
560
|
+
/**
|
|
561
|
+
* <p>The multi-Region disaster recovery targets defined in the policy.</p>
|
|
562
|
+
* @public
|
|
563
|
+
*/
|
|
564
|
+
multiRegion?: MultiRegionTargets | undefined;
|
|
565
|
+
/**
|
|
566
|
+
* <p>The data recovery targets defined in the policy.</p>
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
dataRecovery?: DataRecoveryTargets | undefined;
|
|
570
|
+
/**
|
|
571
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
574
|
+
kmsKeyId?: string | undefined;
|
|
575
|
+
/**
|
|
576
|
+
* <p>Resource tags.</p>
|
|
577
|
+
* @public
|
|
578
|
+
*/
|
|
579
|
+
tags?: Record<string, string> | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* <p>The number of services associated with this policy.</p>
|
|
582
|
+
* @public
|
|
583
|
+
*/
|
|
584
|
+
associatedServiceCount?: number | undefined;
|
|
585
|
+
/**
|
|
586
|
+
* <p>The timestamp when the policy was created.</p>
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
createdAt?: Date | undefined;
|
|
590
|
+
/**
|
|
591
|
+
* <p>The timestamp when the policy was last updated.</p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
updatedAt?: Date | undefined;
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
export interface CreatePolicyResponse {
|
|
600
|
+
/**
|
|
601
|
+
* <p>The created resilience policy.</p>
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
policy: Policy | undefined;
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* @public
|
|
608
|
+
*/
|
|
609
|
+
export interface CreateReportRequest {
|
|
610
|
+
/**
|
|
611
|
+
* <p>ARN identifier.</p>
|
|
612
|
+
* @public
|
|
613
|
+
*/
|
|
614
|
+
serviceArn: string | undefined;
|
|
615
|
+
/**
|
|
616
|
+
* <p>The type of report to generate.</p>
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
reportType: ReportType | undefined;
|
|
620
|
+
/**
|
|
621
|
+
* <p>Idempotency token.</p>
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
624
|
+
clientToken?: string | undefined;
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* <p>Details when report generation failed.</p>
|
|
628
|
+
* @public
|
|
629
|
+
*/
|
|
630
|
+
export interface FailedReportOutput {
|
|
631
|
+
/**
|
|
632
|
+
* <p>The error code describing why the report generation failed.</p>
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
errorCode: ReportGenerationErrorCode | undefined;
|
|
636
|
+
/**
|
|
637
|
+
* <p>The error message describing why the report generation failed.</p>
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
640
|
+
errorMessage?: string | undefined;
|
|
641
|
+
}
|
|
642
|
+
/**
|
|
643
|
+
* <p>S3 location where report was written.</p>
|
|
644
|
+
* @public
|
|
645
|
+
*/
|
|
646
|
+
export interface S3ReportOutput {
|
|
647
|
+
/**
|
|
648
|
+
* <p>The S3 object key for the generated report.</p>
|
|
649
|
+
* @public
|
|
650
|
+
*/
|
|
651
|
+
s3ObjectKey: string | undefined;
|
|
652
|
+
}
|
|
653
|
+
/**
|
|
654
|
+
* <p>Union of possible report outputs.</p>
|
|
655
|
+
* @public
|
|
656
|
+
*/
|
|
657
|
+
export type ReportOutput = ReportOutput.FailedReportOutputMember | ReportOutput.S3ReportOutputMember | ReportOutput.$UnknownMember;
|
|
658
|
+
/**
|
|
659
|
+
* @public
|
|
660
|
+
*/
|
|
661
|
+
export declare namespace ReportOutput {
|
|
662
|
+
/**
|
|
663
|
+
* <p>The S3 location where the report was written.</p>
|
|
664
|
+
* @public
|
|
665
|
+
*/
|
|
666
|
+
interface S3ReportOutputMember {
|
|
667
|
+
s3ReportOutput: S3ReportOutput;
|
|
668
|
+
failedReportOutput?: never;
|
|
669
|
+
$unknown?: never;
|
|
670
|
+
}
|
|
671
|
+
/**
|
|
672
|
+
* <p>Details when report generation failed.</p>
|
|
673
|
+
* @public
|
|
674
|
+
*/
|
|
675
|
+
interface FailedReportOutputMember {
|
|
676
|
+
s3ReportOutput?: never;
|
|
677
|
+
failedReportOutput: FailedReportOutput;
|
|
678
|
+
$unknown?: never;
|
|
679
|
+
}
|
|
680
|
+
/**
|
|
681
|
+
* @public
|
|
682
|
+
*/
|
|
683
|
+
interface $UnknownMember {
|
|
684
|
+
s3ReportOutput?: never;
|
|
685
|
+
failedReportOutput?: never;
|
|
686
|
+
$unknown: [string, any];
|
|
687
|
+
}
|
|
688
|
+
/**
|
|
689
|
+
* @deprecated unused in schema-serde mode.
|
|
690
|
+
*
|
|
691
|
+
*/
|
|
692
|
+
interface Visitor<T> {
|
|
693
|
+
s3ReportOutput: (value: S3ReportOutput) => T;
|
|
694
|
+
failedReportOutput: (value: FailedReportOutput) => T;
|
|
695
|
+
_: (name: string, value: any) => T;
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* <p>Result of a report generation attempt.</p>
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
702
|
+
export interface ReportGenerationResult {
|
|
703
|
+
/**
|
|
704
|
+
* <p>The type of the generated report.</p>
|
|
705
|
+
* @public
|
|
706
|
+
*/
|
|
707
|
+
reportType: ReportType | undefined;
|
|
708
|
+
/**
|
|
709
|
+
* <p>The status of the report generation.</p>
|
|
710
|
+
* @public
|
|
711
|
+
*/
|
|
712
|
+
status: ReportGenerationStatus | undefined;
|
|
713
|
+
/**
|
|
714
|
+
* <p>The service this report was generated for.</p>
|
|
715
|
+
* @public
|
|
716
|
+
*/
|
|
717
|
+
serviceArn?: string | undefined;
|
|
718
|
+
/**
|
|
719
|
+
* <p>Present for FAILURE_MODE reports.</p>
|
|
720
|
+
* @public
|
|
721
|
+
*/
|
|
722
|
+
assessmentId?: string | undefined;
|
|
723
|
+
/**
|
|
724
|
+
* <p>The timestamp when the report was created.</p>
|
|
725
|
+
* @public
|
|
726
|
+
*/
|
|
727
|
+
createdAt?: Date | undefined;
|
|
728
|
+
/**
|
|
729
|
+
* <p>Present when status is SUCCEEDED or FAILED.</p>
|
|
730
|
+
* @public
|
|
731
|
+
*/
|
|
732
|
+
reportOutput?: ReportOutput | undefined;
|
|
733
|
+
}
|
|
734
|
+
/**
|
|
735
|
+
* @public
|
|
736
|
+
*/
|
|
737
|
+
export interface CreateReportResponse {
|
|
738
|
+
/**
|
|
739
|
+
* <p>The result of the report generation request.</p>
|
|
740
|
+
* @public
|
|
741
|
+
*/
|
|
742
|
+
reportGenerationResult: ReportGenerationResult | undefined;
|
|
743
|
+
}
|
|
744
|
+
/**
|
|
745
|
+
* <p>Specifies a cross-account IAM role ARN and optional external ID.</p>
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
export interface CrossAccountRole {
|
|
749
|
+
/**
|
|
750
|
+
* <p>ARN of the IAM Role for the profile. Null if the permission profile is the 'Admin' profile.</p>
|
|
751
|
+
* @public
|
|
752
|
+
*/
|
|
753
|
+
crossAccountRoleArn: string | undefined;
|
|
754
|
+
/**
|
|
755
|
+
* <p>The external ID used for assuming the cross-account role.</p>
|
|
756
|
+
* @public
|
|
757
|
+
*/
|
|
758
|
+
externalId?: string | undefined;
|
|
759
|
+
}
|
|
760
|
+
/**
|
|
761
|
+
* <p>Defines the permission model for a service.</p>
|
|
762
|
+
* @public
|
|
763
|
+
*/
|
|
764
|
+
export interface PermissionModel {
|
|
765
|
+
/**
|
|
766
|
+
* <p>IAM role name (supports up to 64 characters per IAM limits).</p>
|
|
767
|
+
* @public
|
|
768
|
+
*/
|
|
769
|
+
invokerRoleName: string | undefined;
|
|
770
|
+
/**
|
|
771
|
+
* <p>The list of cross-account IAM role ARNs.</p>
|
|
772
|
+
* @public
|
|
773
|
+
*/
|
|
774
|
+
crossAccountRoles?: CrossAccountRole[] | undefined;
|
|
775
|
+
}
|
|
776
|
+
/**
|
|
777
|
+
* <p>S3 configuration for report output.</p>
|
|
778
|
+
* @public
|
|
779
|
+
*/
|
|
780
|
+
export interface S3ReportOutputConfiguration {
|
|
781
|
+
/**
|
|
782
|
+
* <p>S3 bucket path where reports will be written (e.g., my-bucket/ngrh-reports/).</p>
|
|
783
|
+
* @public
|
|
784
|
+
*/
|
|
785
|
+
bucketPath: string | undefined;
|
|
786
|
+
/**
|
|
787
|
+
* <p>Account ID of the bucket owner for cross-account access verification.</p>
|
|
788
|
+
* @public
|
|
789
|
+
*/
|
|
790
|
+
bucketOwner: string | undefined;
|
|
791
|
+
}
|
|
792
|
+
/**
|
|
793
|
+
* <p>Configuration for a report output destination.</p>
|
|
794
|
+
* @public
|
|
795
|
+
*/
|
|
796
|
+
export type ReportOutputConfiguration = ReportOutputConfiguration.S3Member | ReportOutputConfiguration.$UnknownMember;
|
|
797
|
+
/**
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
800
|
+
export declare namespace ReportOutputConfiguration {
|
|
801
|
+
/**
|
|
802
|
+
* <p>S3 configuration for report output.</p>
|
|
803
|
+
* @public
|
|
804
|
+
*/
|
|
805
|
+
interface S3Member {
|
|
806
|
+
s3: S3ReportOutputConfiguration;
|
|
807
|
+
$unknown?: never;
|
|
808
|
+
}
|
|
809
|
+
/**
|
|
810
|
+
* @public
|
|
811
|
+
*/
|
|
812
|
+
interface $UnknownMember {
|
|
813
|
+
s3?: never;
|
|
814
|
+
$unknown: [string, any];
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* @deprecated unused in schema-serde mode.
|
|
818
|
+
*
|
|
819
|
+
*/
|
|
820
|
+
interface Visitor<T> {
|
|
821
|
+
s3: (value: S3ReportOutputConfiguration) => T;
|
|
822
|
+
_: (name: string, value: any) => T;
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
/**
|
|
826
|
+
* <p>Configuration for automatic report generation on a Service.</p>
|
|
827
|
+
* @public
|
|
828
|
+
*/
|
|
829
|
+
export interface ServiceReportConfiguration {
|
|
830
|
+
/**
|
|
831
|
+
* <p>Output destinations for generated reports.</p>
|
|
832
|
+
* @public
|
|
833
|
+
*/
|
|
834
|
+
reportOutputs: ReportOutputConfiguration[] | undefined;
|
|
835
|
+
}
|
|
836
|
+
/**
|
|
837
|
+
* @public
|
|
838
|
+
*/
|
|
839
|
+
export interface CreateServiceRequest {
|
|
840
|
+
/**
|
|
841
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
842
|
+
* @public
|
|
843
|
+
*/
|
|
844
|
+
name: string | undefined;
|
|
845
|
+
/**
|
|
846
|
+
* <p>Resource description for services and policies.</p>
|
|
847
|
+
* @public
|
|
848
|
+
*/
|
|
849
|
+
description?: string | undefined;
|
|
850
|
+
/**
|
|
851
|
+
* <p>The systems to associate with the service.</p>
|
|
852
|
+
* @public
|
|
853
|
+
*/
|
|
854
|
+
associatedSystems?: AssociatedSystem[] | undefined;
|
|
855
|
+
/**
|
|
856
|
+
* <p>ARN identifier.</p>
|
|
857
|
+
* @public
|
|
858
|
+
*/
|
|
859
|
+
policyArn?: string | undefined;
|
|
860
|
+
/**
|
|
861
|
+
* <p>The AWS Regions where the service operates.</p>
|
|
862
|
+
* @public
|
|
863
|
+
*/
|
|
864
|
+
regions: string[] | undefined;
|
|
865
|
+
/**
|
|
866
|
+
* <p>The permission model for the service.</p>
|
|
867
|
+
* @public
|
|
868
|
+
*/
|
|
869
|
+
permissionModel: PermissionModel | undefined;
|
|
870
|
+
/**
|
|
871
|
+
* <p>Caller-settable values for dependency discovery. INITIALIZING is system-managed.</p>
|
|
872
|
+
* @public
|
|
873
|
+
*/
|
|
874
|
+
dependencyDiscovery?: DependencyDiscoveryInput | undefined;
|
|
875
|
+
/**
|
|
876
|
+
* <p>Configuration for automatic report generation on a Service.</p>
|
|
877
|
+
* @public
|
|
878
|
+
*/
|
|
879
|
+
reportConfiguration?: ServiceReportConfiguration | undefined;
|
|
880
|
+
/**
|
|
881
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
882
|
+
* @public
|
|
883
|
+
*/
|
|
884
|
+
kmsKeyId?: string | undefined;
|
|
885
|
+
/**
|
|
886
|
+
* <p>Resource tags.</p>
|
|
887
|
+
* @public
|
|
888
|
+
*/
|
|
889
|
+
tags?: Record<string, string> | undefined;
|
|
890
|
+
/**
|
|
891
|
+
* <p>Idempotency token.</p>
|
|
892
|
+
* @public
|
|
893
|
+
*/
|
|
894
|
+
clientToken?: string | undefined;
|
|
895
|
+
}
|
|
896
|
+
/**
|
|
897
|
+
* <p>Configuration for dependency discovery on a service.</p>
|
|
898
|
+
* @public
|
|
899
|
+
*/
|
|
900
|
+
export interface DependencyDiscoveryConfig {
|
|
901
|
+
/**
|
|
902
|
+
* <p>The current status of dependency discovery.</p>
|
|
903
|
+
* @public
|
|
904
|
+
*/
|
|
905
|
+
status: DependencyDiscoveryStatus | undefined;
|
|
906
|
+
/**
|
|
907
|
+
* <p>The timestamp when dependency discovery was last updated.</p>
|
|
908
|
+
* @public
|
|
909
|
+
*/
|
|
910
|
+
updatedAt?: Date | undefined;
|
|
911
|
+
}
|
|
912
|
+
/**
|
|
913
|
+
* <p>Contains the effective availability SLO value and its source.</p>
|
|
914
|
+
* @public
|
|
915
|
+
*/
|
|
916
|
+
export interface SloSource {
|
|
917
|
+
/**
|
|
918
|
+
* <p>The availability SLO percentage value.</p>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
value?: number | undefined;
|
|
922
|
+
/**
|
|
923
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
924
|
+
* @public
|
|
925
|
+
*/
|
|
926
|
+
policyName?: string | undefined;
|
|
927
|
+
/**
|
|
928
|
+
* <p>Indicates whether the value comes from the service's own account or a cross-account policy.</p>
|
|
929
|
+
* @public
|
|
930
|
+
*/
|
|
931
|
+
source?: PolicyValueSource | undefined;
|
|
932
|
+
}
|
|
933
|
+
/**
|
|
934
|
+
* <p>Contains an effective RTO or RPO value and its source.</p>
|
|
935
|
+
* @public
|
|
936
|
+
*/
|
|
937
|
+
export interface TargetSource {
|
|
938
|
+
/**
|
|
939
|
+
* <p>The RTO or RPO value in minutes.</p>
|
|
940
|
+
* @public
|
|
941
|
+
*/
|
|
942
|
+
value?: number | undefined;
|
|
943
|
+
/**
|
|
944
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
945
|
+
* @public
|
|
946
|
+
*/
|
|
947
|
+
policyName?: string | undefined;
|
|
948
|
+
/**
|
|
949
|
+
* <p>Indicates whether the value comes from the service's own account or a cross-account policy.</p>
|
|
950
|
+
* @public
|
|
951
|
+
*/
|
|
952
|
+
source?: PolicyValueSource | undefined;
|
|
953
|
+
}
|
|
954
|
+
/**
|
|
955
|
+
* <p>Contains the effective disaster recovery approach value for a service.</p>
|
|
956
|
+
* @public
|
|
957
|
+
*/
|
|
958
|
+
export interface DisasterRecoverySource {
|
|
959
|
+
/**
|
|
960
|
+
* <p>The disaster recovery approach value.</p>
|
|
961
|
+
* @public
|
|
962
|
+
*/
|
|
963
|
+
value?: string | undefined;
|
|
964
|
+
/**
|
|
965
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
966
|
+
* @public
|
|
967
|
+
*/
|
|
968
|
+
policyName?: string | undefined;
|
|
969
|
+
/**
|
|
970
|
+
* <p>Indicates whether the value comes from the service's own account or a cross-account policy.</p>
|
|
971
|
+
* @public
|
|
972
|
+
*/
|
|
973
|
+
source?: PolicyValueSource | undefined;
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
* <p>Contains the effective resilience policy values for a service.</p>
|
|
977
|
+
* @public
|
|
978
|
+
*/
|
|
979
|
+
export interface EffectivePolicyValues {
|
|
980
|
+
/**
|
|
981
|
+
* <p>The effective availability SLO value for the service.</p>
|
|
982
|
+
* @public
|
|
983
|
+
*/
|
|
984
|
+
availabilitySlo?: SloSource | undefined;
|
|
985
|
+
/**
|
|
986
|
+
* <p>The effective multi-AZ RTO value for the service, in minutes.</p>
|
|
987
|
+
* @public
|
|
988
|
+
*/
|
|
989
|
+
multiAzRto?: TargetSource | undefined;
|
|
990
|
+
/**
|
|
991
|
+
* <p>The effective multi-AZ RPO value for the service, in minutes.</p>
|
|
992
|
+
* @public
|
|
993
|
+
*/
|
|
994
|
+
multiAzRpo?: TargetSource | undefined;
|
|
995
|
+
/**
|
|
996
|
+
* <p>The effective multi-AZ disaster recovery approach for the service.</p>
|
|
997
|
+
* @public
|
|
998
|
+
*/
|
|
999
|
+
multiAzDrApproach?: DisasterRecoverySource | undefined;
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The effective multi-Region RTO value for the service, in minutes.</p>
|
|
1002
|
+
* @public
|
|
1003
|
+
*/
|
|
1004
|
+
multiRegionRto?: TargetSource | undefined;
|
|
1005
|
+
/**
|
|
1006
|
+
* <p>The effective multi-Region RPO value for the service, in minutes.</p>
|
|
1007
|
+
* @public
|
|
1008
|
+
*/
|
|
1009
|
+
multiRegionRpo?: TargetSource | undefined;
|
|
1010
|
+
/**
|
|
1011
|
+
* <p>The effective multi-Region disaster recovery approach for the service.</p>
|
|
1012
|
+
* @public
|
|
1013
|
+
*/
|
|
1014
|
+
multiRegionDrApproach?: DisasterRecoverySource | undefined;
|
|
1015
|
+
/**
|
|
1016
|
+
* <p>The effective data recovery time between backups value for the service.</p>
|
|
1017
|
+
* @public
|
|
1018
|
+
*/
|
|
1019
|
+
dataRecoveryTimeBetweenBackups?: TargetSource | undefined;
|
|
1020
|
+
}
|
|
1021
|
+
/**
|
|
1022
|
+
* <p>Contains the status of resource discovery for a service.</p>
|
|
1023
|
+
* @public
|
|
1024
|
+
*/
|
|
1025
|
+
export interface ResourceDiscoveryStatus {
|
|
1026
|
+
/**
|
|
1027
|
+
* <p>The current status of resource discovery.</p>
|
|
1028
|
+
* @public
|
|
1029
|
+
*/
|
|
1030
|
+
status?: ResourceDiscoveryRunStatus | undefined;
|
|
1031
|
+
/**
|
|
1032
|
+
* <p>The timestamp of the last resource discovery run.</p>
|
|
1033
|
+
* @public
|
|
1034
|
+
*/
|
|
1035
|
+
lastRunAt?: Date | undefined;
|
|
1036
|
+
/**
|
|
1037
|
+
* <p>The error code if resource discovery failed.</p>
|
|
1038
|
+
* @public
|
|
1039
|
+
*/
|
|
1040
|
+
errorCode?: ResourceDiscoveryErrorCode | undefined;
|
|
1041
|
+
/**
|
|
1042
|
+
* <p>A message describing the error if resource discovery failed.</p>
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
errorMessage?: string | undefined;
|
|
1046
|
+
}
|
|
1047
|
+
/**
|
|
1048
|
+
* <p>Represents a service in Resilience Hub. A service is the primary unit of resilience assessment.</p>
|
|
1049
|
+
* @public
|
|
1050
|
+
*/
|
|
1051
|
+
export interface Service {
|
|
1052
|
+
/**
|
|
1053
|
+
* <p>ARN identifier.</p>
|
|
1054
|
+
* @public
|
|
1055
|
+
*/
|
|
1056
|
+
serviceArn: string | undefined;
|
|
1057
|
+
/**
|
|
1058
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
1059
|
+
* @public
|
|
1060
|
+
*/
|
|
1061
|
+
name: string | undefined;
|
|
1062
|
+
/**
|
|
1063
|
+
* <p>Resource description for services and policies.</p>
|
|
1064
|
+
* @public
|
|
1065
|
+
*/
|
|
1066
|
+
description?: string | undefined;
|
|
1067
|
+
/**
|
|
1068
|
+
* <p>The systems associated with the service.</p>
|
|
1069
|
+
* @public
|
|
1070
|
+
*/
|
|
1071
|
+
associatedSystems?: AssociatedSystem[] | undefined;
|
|
1072
|
+
/**
|
|
1073
|
+
* <p>ARN identifier.</p>
|
|
1074
|
+
* @public
|
|
1075
|
+
*/
|
|
1076
|
+
policyArn?: string | undefined;
|
|
1077
|
+
/**
|
|
1078
|
+
* <p>The AWS Regions where the service operates.</p>
|
|
1079
|
+
* @public
|
|
1080
|
+
*/
|
|
1081
|
+
regions?: string[] | undefined;
|
|
1082
|
+
/**
|
|
1083
|
+
* <p>The permission model for the service.</p>
|
|
1084
|
+
* @public
|
|
1085
|
+
*/
|
|
1086
|
+
permissionModel?: PermissionModel | undefined;
|
|
1087
|
+
/**
|
|
1088
|
+
* <p>The dependency discovery configuration for the service.</p>
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
1091
|
+
dependencyDiscovery?: DependencyDiscoveryConfig | undefined;
|
|
1092
|
+
/**
|
|
1093
|
+
* <p>The effective policy values for the service.</p>
|
|
1094
|
+
* @public
|
|
1095
|
+
*/
|
|
1096
|
+
effectivePolicyValues?: EffectivePolicyValues | undefined;
|
|
1097
|
+
/**
|
|
1098
|
+
* <p>The achievability status of the service's resilience targets.</p>
|
|
1099
|
+
* @public
|
|
1100
|
+
*/
|
|
1101
|
+
achievability?: Achievability | undefined;
|
|
1102
|
+
/**
|
|
1103
|
+
* <p>Configuration for automatic report generation on a Service.</p>
|
|
1104
|
+
* @public
|
|
1105
|
+
*/
|
|
1106
|
+
reportConfiguration?: ServiceReportConfiguration | undefined;
|
|
1107
|
+
/**
|
|
1108
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
1109
|
+
* @public
|
|
1110
|
+
*/
|
|
1111
|
+
kmsKeyId?: string | undefined;
|
|
1112
|
+
/**
|
|
1113
|
+
* <p>Resource tags.</p>
|
|
1114
|
+
* @public
|
|
1115
|
+
*/
|
|
1116
|
+
tags?: Record<string, string> | undefined;
|
|
1117
|
+
/**
|
|
1118
|
+
* <p>The estimated cost of running an assessment on the service.</p>
|
|
1119
|
+
* @public
|
|
1120
|
+
*/
|
|
1121
|
+
estimatedAssessmentCost?: AssessmentCost | undefined;
|
|
1122
|
+
/**
|
|
1123
|
+
* <p>The resource discovery status for the service.</p>
|
|
1124
|
+
* @public
|
|
1125
|
+
*/
|
|
1126
|
+
resourceDiscovery?: ResourceDiscoveryStatus | undefined;
|
|
1127
|
+
/**
|
|
1128
|
+
* <p>The current assessment status of the service.</p>
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1131
|
+
assessmentStatus?: AssessmentStatus | undefined;
|
|
1132
|
+
/**
|
|
1133
|
+
* <p>Indicates whether the assessment should be rerun.</p>
|
|
1134
|
+
* @public
|
|
1135
|
+
*/
|
|
1136
|
+
rerunAssessment?: boolean | undefined;
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>The number of open findings for the service.</p>
|
|
1139
|
+
* @public
|
|
1140
|
+
*/
|
|
1141
|
+
openFindingsCount?: number | undefined;
|
|
1142
|
+
/**
|
|
1143
|
+
* <p>The number of resolved findings for the service.</p>
|
|
1144
|
+
* @public
|
|
1145
|
+
*/
|
|
1146
|
+
resolvedFindingsCount?: number | undefined;
|
|
1147
|
+
/**
|
|
1148
|
+
* <p>The AWS Organizations identifier for the service.</p>
|
|
1149
|
+
* @public
|
|
1150
|
+
*/
|
|
1151
|
+
organizationId?: string | undefined;
|
|
1152
|
+
/**
|
|
1153
|
+
* <p>The organizational unit (OU) identifier for the service.</p>
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
ouId?: string | undefined;
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>The AWS account ID that owns the service.</p>
|
|
1159
|
+
* @public
|
|
1160
|
+
*/
|
|
1161
|
+
accountId?: string | undefined;
|
|
1162
|
+
/**
|
|
1163
|
+
* <p>The timestamp when the service was created.</p>
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1166
|
+
createdAt?: Date | undefined;
|
|
1167
|
+
/**
|
|
1168
|
+
* <p>The timestamp when the service was last updated.</p>
|
|
1169
|
+
* @public
|
|
1170
|
+
*/
|
|
1171
|
+
updatedAt?: Date | undefined;
|
|
1172
|
+
}
|
|
1173
|
+
/**
|
|
1174
|
+
* @public
|
|
1175
|
+
*/
|
|
1176
|
+
export interface CreateServiceResponse {
|
|
1177
|
+
/**
|
|
1178
|
+
* <p>The created service.</p>
|
|
1179
|
+
* @public
|
|
1180
|
+
*/
|
|
1181
|
+
service: Service | undefined;
|
|
1182
|
+
}
|
|
1183
|
+
/**
|
|
1184
|
+
* @public
|
|
1185
|
+
*/
|
|
1186
|
+
export interface CreateServiceFunctionRequest {
|
|
1187
|
+
/**
|
|
1188
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
1189
|
+
* @public
|
|
1190
|
+
*/
|
|
1191
|
+
name: string | undefined;
|
|
1192
|
+
/**
|
|
1193
|
+
* <p>ARN identifier.</p>
|
|
1194
|
+
* @public
|
|
1195
|
+
*/
|
|
1196
|
+
serviceArn: string | undefined;
|
|
1197
|
+
/**
|
|
1198
|
+
* <p>Resource description.</p>
|
|
1199
|
+
* @public
|
|
1200
|
+
*/
|
|
1201
|
+
description?: string | undefined;
|
|
1202
|
+
/**
|
|
1203
|
+
* <p>The criticality level of the service function.</p>
|
|
1204
|
+
* @public
|
|
1205
|
+
*/
|
|
1206
|
+
criticality: ServiceFunctionCriticality | undefined;
|
|
1207
|
+
/**
|
|
1208
|
+
* <p>Idempotency token.</p>
|
|
1209
|
+
* @public
|
|
1210
|
+
*/
|
|
1211
|
+
clientToken?: string | undefined;
|
|
1212
|
+
}
|
|
1213
|
+
/**
|
|
1214
|
+
* <p>Represents a logical component of a service.</p>
|
|
1215
|
+
* @public
|
|
1216
|
+
*/
|
|
1217
|
+
export interface ServiceFunction {
|
|
1218
|
+
/**
|
|
1219
|
+
* <p>ARN identifier.</p>
|
|
1220
|
+
* @public
|
|
1221
|
+
*/
|
|
1222
|
+
serviceArn: string | undefined;
|
|
1223
|
+
/**
|
|
1224
|
+
* <p>The unique identifier of the service function.</p>
|
|
1225
|
+
* @public
|
|
1226
|
+
*/
|
|
1227
|
+
serviceFunctionId: string | undefined;
|
|
1228
|
+
/**
|
|
1229
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
1230
|
+
* @public
|
|
1231
|
+
*/
|
|
1232
|
+
name: string | undefined;
|
|
1233
|
+
/**
|
|
1234
|
+
* <p>Resource description.</p>
|
|
1235
|
+
* @public
|
|
1236
|
+
*/
|
|
1237
|
+
description?: string | undefined;
|
|
1238
|
+
/**
|
|
1239
|
+
* <p>The criticality level of the service function.</p>
|
|
1240
|
+
* @public
|
|
1241
|
+
*/
|
|
1242
|
+
criticality: ServiceFunctionCriticality | undefined;
|
|
1243
|
+
/**
|
|
1244
|
+
* <p>The number of resources associated with the service function.</p>
|
|
1245
|
+
* @public
|
|
1246
|
+
*/
|
|
1247
|
+
resourceCount?: number | undefined;
|
|
1248
|
+
/**
|
|
1249
|
+
* <p>The source of the service function.</p>
|
|
1250
|
+
* @public
|
|
1251
|
+
*/
|
|
1252
|
+
source?: ServiceFunctionSource | undefined;
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>The timestamp when the service function was created.</p>
|
|
1255
|
+
* @public
|
|
1256
|
+
*/
|
|
1257
|
+
createdAt?: Date | undefined;
|
|
1258
|
+
/**
|
|
1259
|
+
* <p>The timestamp when the service function was last updated.</p>
|
|
1260
|
+
* @public
|
|
1261
|
+
*/
|
|
1262
|
+
updatedAt?: Date | undefined;
|
|
1263
|
+
}
|
|
1264
|
+
/**
|
|
1265
|
+
* @public
|
|
1266
|
+
*/
|
|
1267
|
+
export interface CreateServiceFunctionResponse {
|
|
1268
|
+
/**
|
|
1269
|
+
* <p>The created service function.</p>
|
|
1270
|
+
* @public
|
|
1271
|
+
*/
|
|
1272
|
+
serviceFunction: ServiceFunction | undefined;
|
|
1273
|
+
}
|
|
1274
|
+
/**
|
|
1275
|
+
* @public
|
|
1276
|
+
*/
|
|
1277
|
+
export interface CreateServiceFunctionResourcesRequest {
|
|
1278
|
+
/**
|
|
1279
|
+
* <p>ARN identifier.</p>
|
|
1280
|
+
* @public
|
|
1281
|
+
*/
|
|
1282
|
+
serviceArn: string | undefined;
|
|
1283
|
+
/**
|
|
1284
|
+
* <p>The identifier of the service function to associate resources with.</p>
|
|
1285
|
+
* @public
|
|
1286
|
+
*/
|
|
1287
|
+
serviceFunctionId: string | undefined;
|
|
1288
|
+
/**
|
|
1289
|
+
* <p>The list of resources to associate with the service function.</p>
|
|
1290
|
+
* @public
|
|
1291
|
+
*/
|
|
1292
|
+
resources: string[] | undefined;
|
|
1293
|
+
}
|
|
1294
|
+
/**
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
export interface CreateServiceFunctionResourcesResponse {
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>ARN identifier.</p>
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
serviceArn?: string | undefined;
|
|
1303
|
+
/**
|
|
1304
|
+
* <p>The identifier of the service function.</p>
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
serviceFunctionId?: string | undefined;
|
|
1308
|
+
/**
|
|
1309
|
+
* <p>The list of resources that were associated.</p>
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1312
|
+
resources?: string[] | undefined;
|
|
1313
|
+
}
|
|
1314
|
+
/**
|
|
1315
|
+
* @public
|
|
1316
|
+
*/
|
|
1317
|
+
export interface CreateSystemRequest {
|
|
1318
|
+
/**
|
|
1319
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
1320
|
+
* @public
|
|
1321
|
+
*/
|
|
1322
|
+
name: string | undefined;
|
|
1323
|
+
/**
|
|
1324
|
+
* <p>Resource description.</p>
|
|
1325
|
+
* @public
|
|
1326
|
+
*/
|
|
1327
|
+
description?: string | undefined;
|
|
1328
|
+
/**
|
|
1329
|
+
* <p>Indicates whether cross-account sharing is enabled for the system.</p>
|
|
1330
|
+
* @public
|
|
1331
|
+
*/
|
|
1332
|
+
sharingEnabled?: boolean | undefined;
|
|
1333
|
+
/**
|
|
1334
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
kmsKeyId?: string | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>Resource tags.</p>
|
|
1340
|
+
* @public
|
|
1341
|
+
*/
|
|
1342
|
+
tags?: Record<string, string> | undefined;
|
|
1343
|
+
/**
|
|
1344
|
+
* <p>Idempotency token.</p>
|
|
1345
|
+
* @public
|
|
1346
|
+
*/
|
|
1347
|
+
clientToken?: string | undefined;
|
|
1348
|
+
}
|
|
1349
|
+
/**
|
|
1350
|
+
* <p>Represents a system in Resilience Hub. A system is a logical grouping of services.</p>
|
|
1351
|
+
* @public
|
|
1352
|
+
*/
|
|
1353
|
+
export interface System {
|
|
1354
|
+
/**
|
|
1355
|
+
* <p>ARN identifier.</p>
|
|
1356
|
+
* @public
|
|
1357
|
+
*/
|
|
1358
|
+
systemArn: string | undefined;
|
|
1359
|
+
/**
|
|
1360
|
+
* <p>System ID for cross-account use without exposing account structure.</p>
|
|
1361
|
+
* @public
|
|
1362
|
+
*/
|
|
1363
|
+
systemId: string | undefined;
|
|
1364
|
+
/**
|
|
1365
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
1366
|
+
* @public
|
|
1367
|
+
*/
|
|
1368
|
+
name: string | undefined;
|
|
1369
|
+
/**
|
|
1370
|
+
* <p>Resource description.</p>
|
|
1371
|
+
* @public
|
|
1372
|
+
*/
|
|
1373
|
+
description?: string | undefined;
|
|
1374
|
+
/**
|
|
1375
|
+
* <p>Indicates whether cross-account sharing is enabled.</p>
|
|
1376
|
+
* @public
|
|
1377
|
+
*/
|
|
1378
|
+
sharingEnabled?: boolean | undefined;
|
|
1379
|
+
/**
|
|
1380
|
+
* <p>Resource tags.</p>
|
|
1381
|
+
* @public
|
|
1382
|
+
*/
|
|
1383
|
+
tags?: Record<string, string> | undefined;
|
|
1384
|
+
/**
|
|
1385
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
1386
|
+
* @public
|
|
1387
|
+
*/
|
|
1388
|
+
kmsKeyId?: string | undefined;
|
|
1389
|
+
/**
|
|
1390
|
+
* <p>The AWS Organizations identifier for the system.</p>
|
|
1391
|
+
* @public
|
|
1392
|
+
*/
|
|
1393
|
+
organizationId?: string | undefined;
|
|
1394
|
+
/**
|
|
1395
|
+
* <p>The organizational unit (OU) identifier for the system.</p>
|
|
1396
|
+
* @public
|
|
1397
|
+
*/
|
|
1398
|
+
ouId?: string | undefined;
|
|
1399
|
+
/**
|
|
1400
|
+
* <p>The timestamp when the system was created.</p>
|
|
1401
|
+
* @public
|
|
1402
|
+
*/
|
|
1403
|
+
createdAt?: Date | undefined;
|
|
1404
|
+
/**
|
|
1405
|
+
* <p>The timestamp when the system was last updated.</p>
|
|
1406
|
+
* @public
|
|
1407
|
+
*/
|
|
1408
|
+
updatedAt?: Date | undefined;
|
|
1409
|
+
}
|
|
1410
|
+
/**
|
|
1411
|
+
* @public
|
|
1412
|
+
*/
|
|
1413
|
+
export interface CreateSystemResponse {
|
|
1414
|
+
/**
|
|
1415
|
+
* <p>The created system.</p>
|
|
1416
|
+
* @public
|
|
1417
|
+
*/
|
|
1418
|
+
system: System | undefined;
|
|
1419
|
+
}
|
|
1420
|
+
/**
|
|
1421
|
+
* @public
|
|
1422
|
+
*/
|
|
1423
|
+
export interface CreateUserJourneyRequest {
|
|
1424
|
+
/**
|
|
1425
|
+
* <p>ARN identifier.</p>
|
|
1426
|
+
* @public
|
|
1427
|
+
*/
|
|
1428
|
+
systemArn: string | undefined;
|
|
1429
|
+
/**
|
|
1430
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1433
|
+
name: string | undefined;
|
|
1434
|
+
/**
|
|
1435
|
+
* <p>Resource description.</p>
|
|
1436
|
+
* @public
|
|
1437
|
+
*/
|
|
1438
|
+
description?: string | undefined;
|
|
1439
|
+
/**
|
|
1440
|
+
* <p>ARN identifier.</p>
|
|
1441
|
+
* @public
|
|
1442
|
+
*/
|
|
1443
|
+
policyArn?: string | undefined;
|
|
1444
|
+
/**
|
|
1445
|
+
* <p>Idempotency token.</p>
|
|
1446
|
+
* @public
|
|
1447
|
+
*/
|
|
1448
|
+
clientToken?: string | undefined;
|
|
1449
|
+
}
|
|
1450
|
+
/**
|
|
1451
|
+
* <p>Represents a user journey that defines a critical path through a system.</p>
|
|
1452
|
+
* @public
|
|
1453
|
+
*/
|
|
1454
|
+
export interface UserJourney {
|
|
1455
|
+
/**
|
|
1456
|
+
* <p>The unique identifier of the user journey.</p>
|
|
1457
|
+
* @public
|
|
1458
|
+
*/
|
|
1459
|
+
userJourneyId: string | undefined;
|
|
1460
|
+
/**
|
|
1461
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
1462
|
+
* @public
|
|
1463
|
+
*/
|
|
1464
|
+
name: string | undefined;
|
|
1465
|
+
/**
|
|
1466
|
+
* <p>Resource description.</p>
|
|
1467
|
+
* @public
|
|
1468
|
+
*/
|
|
1469
|
+
description?: string | undefined;
|
|
1470
|
+
/**
|
|
1471
|
+
* <p>ARN identifier.</p>
|
|
1472
|
+
* @public
|
|
1473
|
+
*/
|
|
1474
|
+
policyArn?: string | undefined;
|
|
1475
|
+
/**
|
|
1476
|
+
* <p>The timestamp when the user journey was created.</p>
|
|
1477
|
+
* @public
|
|
1478
|
+
*/
|
|
1479
|
+
createdAt?: Date | undefined;
|
|
1480
|
+
/**
|
|
1481
|
+
* <p>The timestamp when the user journey was last updated.</p>
|
|
1482
|
+
* @public
|
|
1483
|
+
*/
|
|
1484
|
+
updatedAt?: Date | undefined;
|
|
1485
|
+
}
|
|
1486
|
+
/**
|
|
1487
|
+
* @public
|
|
1488
|
+
*/
|
|
1489
|
+
export interface CreateUserJourneyResponse {
|
|
1490
|
+
/**
|
|
1491
|
+
* <p>The created user journey.</p>
|
|
1492
|
+
* @public
|
|
1493
|
+
*/
|
|
1494
|
+
userJourney: UserJourney | undefined;
|
|
1495
|
+
}
|
|
1496
|
+
/**
|
|
1497
|
+
* @public
|
|
1498
|
+
*/
|
|
1499
|
+
export interface DeleteAssertionRequest {
|
|
1500
|
+
/**
|
|
1501
|
+
* <p>ARN identifier.</p>
|
|
1502
|
+
* @public
|
|
1503
|
+
*/
|
|
1504
|
+
serviceArn: string | undefined;
|
|
1505
|
+
/**
|
|
1506
|
+
* <p>The unique identifier of the assertion to delete.</p>
|
|
1507
|
+
* @public
|
|
1508
|
+
*/
|
|
1509
|
+
assertionId: string | undefined;
|
|
1510
|
+
}
|
|
1511
|
+
/**
|
|
1512
|
+
* @public
|
|
1513
|
+
*/
|
|
1514
|
+
export interface DeleteAssertionResponse {
|
|
1515
|
+
/**
|
|
1516
|
+
* <p>The unique identifier of the deleted assertion.</p>
|
|
1517
|
+
* @public
|
|
1518
|
+
*/
|
|
1519
|
+
assertionId?: string | undefined;
|
|
1520
|
+
}
|
|
1521
|
+
/**
|
|
1522
|
+
* @public
|
|
1523
|
+
*/
|
|
1524
|
+
export interface DeleteInputSourceRequest {
|
|
1525
|
+
/**
|
|
1526
|
+
* <p>ARN identifier.</p>
|
|
1527
|
+
* @public
|
|
1528
|
+
*/
|
|
1529
|
+
serviceArn: string | undefined;
|
|
1530
|
+
/**
|
|
1531
|
+
* <p>The identifier of the input source to delete.</p>
|
|
1532
|
+
* @public
|
|
1533
|
+
*/
|
|
1534
|
+
inputSourceId: string | undefined;
|
|
1535
|
+
}
|
|
1536
|
+
/**
|
|
1537
|
+
* @public
|
|
1538
|
+
*/
|
|
1539
|
+
export interface DeleteInputSourceResponse {
|
|
1540
|
+
/**
|
|
1541
|
+
* <p>ARN identifier.</p>
|
|
1542
|
+
* @public
|
|
1543
|
+
*/
|
|
1544
|
+
serviceArn: string | undefined;
|
|
1545
|
+
/**
|
|
1546
|
+
* <p>The identifier of the deleted input source.</p>
|
|
1547
|
+
* @public
|
|
1548
|
+
*/
|
|
1549
|
+
inputSourceId: string | undefined;
|
|
1550
|
+
}
|
|
1551
|
+
/**
|
|
1552
|
+
* @public
|
|
1553
|
+
*/
|
|
1554
|
+
export interface DeletePolicyRequest {
|
|
1555
|
+
/**
|
|
1556
|
+
* <p>ARN identifier.</p>
|
|
1557
|
+
* @public
|
|
1558
|
+
*/
|
|
1559
|
+
policyArn: string | undefined;
|
|
1560
|
+
}
|
|
1561
|
+
/**
|
|
1562
|
+
* @public
|
|
1563
|
+
*/
|
|
1564
|
+
export interface DeletePolicyResponse {
|
|
1565
|
+
/**
|
|
1566
|
+
* <p>ARN identifier.</p>
|
|
1567
|
+
* @public
|
|
1568
|
+
*/
|
|
1569
|
+
policyArn: string | undefined;
|
|
1570
|
+
}
|
|
1571
|
+
/**
|
|
1572
|
+
* @public
|
|
1573
|
+
*/
|
|
1574
|
+
export interface DeleteServiceRequest {
|
|
1575
|
+
/**
|
|
1576
|
+
* <p>ARN identifier.</p>
|
|
1577
|
+
* @public
|
|
1578
|
+
*/
|
|
1579
|
+
serviceArn: string | undefined;
|
|
1580
|
+
}
|
|
1581
|
+
/**
|
|
1582
|
+
* @public
|
|
1583
|
+
*/
|
|
1584
|
+
export interface DeleteServiceResponse {
|
|
1585
|
+
/**
|
|
1586
|
+
* <p>ARN identifier.</p>
|
|
1587
|
+
* @public
|
|
1588
|
+
*/
|
|
1589
|
+
serviceArn: string | undefined;
|
|
1590
|
+
}
|
|
1591
|
+
/**
|
|
1592
|
+
* @public
|
|
1593
|
+
*/
|
|
1594
|
+
export interface DeleteServiceFunctionRequest {
|
|
1595
|
+
/**
|
|
1596
|
+
* <p>ARN identifier.</p>
|
|
1597
|
+
* @public
|
|
1598
|
+
*/
|
|
1599
|
+
serviceArn: string | undefined;
|
|
1600
|
+
/**
|
|
1601
|
+
* <p>The identifier of the service function to delete.</p>
|
|
1602
|
+
* @public
|
|
1603
|
+
*/
|
|
1604
|
+
serviceFunctionId: string | undefined;
|
|
1605
|
+
}
|
|
1606
|
+
/**
|
|
1607
|
+
* @public
|
|
1608
|
+
*/
|
|
1609
|
+
export interface DeleteServiceFunctionResponse {
|
|
1610
|
+
/**
|
|
1611
|
+
* <p>The identifier of the deleted service function.</p>
|
|
1612
|
+
* @public
|
|
1613
|
+
*/
|
|
1614
|
+
serviceFunctionId?: string | undefined;
|
|
1615
|
+
}
|
|
1616
|
+
/**
|
|
1617
|
+
* @public
|
|
1618
|
+
*/
|
|
1619
|
+
export interface DeleteServiceFunctionResourcesRequest {
|
|
1620
|
+
/**
|
|
1621
|
+
* <p>ARN identifier.</p>
|
|
1622
|
+
* @public
|
|
1623
|
+
*/
|
|
1624
|
+
serviceArn: string | undefined;
|
|
1625
|
+
/**
|
|
1626
|
+
* <p>The identifier of the service function to remove resources from.</p>
|
|
1627
|
+
* @public
|
|
1628
|
+
*/
|
|
1629
|
+
serviceFunctionId: string | undefined;
|
|
1630
|
+
/**
|
|
1631
|
+
* <p>The list of resources to remove from the service function.</p>
|
|
1632
|
+
* @public
|
|
1633
|
+
*/
|
|
1634
|
+
resources: string[] | undefined;
|
|
1635
|
+
}
|
|
1636
|
+
/**
|
|
1637
|
+
* @public
|
|
1638
|
+
*/
|
|
1639
|
+
export interface DeleteServiceFunctionResourcesResponse {
|
|
1640
|
+
/**
|
|
1641
|
+
* <p>ARN identifier.</p>
|
|
1642
|
+
* @public
|
|
1643
|
+
*/
|
|
1644
|
+
serviceArn?: string | undefined;
|
|
1645
|
+
/**
|
|
1646
|
+
* <p>The identifier of the service function.</p>
|
|
1647
|
+
* @public
|
|
1648
|
+
*/
|
|
1649
|
+
serviceFunctionId?: string | undefined;
|
|
1650
|
+
/**
|
|
1651
|
+
* <p>The list of resources that were removed.</p>
|
|
1652
|
+
* @public
|
|
1653
|
+
*/
|
|
1654
|
+
resources?: string[] | undefined;
|
|
1655
|
+
}
|
|
1656
|
+
/**
|
|
1657
|
+
* @public
|
|
1658
|
+
*/
|
|
1659
|
+
export interface DeleteSystemRequest {
|
|
1660
|
+
/**
|
|
1661
|
+
* <p>ARN identifier.</p>
|
|
1662
|
+
* @public
|
|
1663
|
+
*/
|
|
1664
|
+
systemArn: string | undefined;
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* @public
|
|
1668
|
+
*/
|
|
1669
|
+
export interface DeleteSystemResponse {
|
|
1670
|
+
/**
|
|
1671
|
+
* <p>ARN identifier.</p>
|
|
1672
|
+
* @public
|
|
1673
|
+
*/
|
|
1674
|
+
systemArn: string | undefined;
|
|
1675
|
+
}
|
|
1676
|
+
/**
|
|
1677
|
+
* @public
|
|
1678
|
+
*/
|
|
1679
|
+
export interface DeleteUserJourneyRequest {
|
|
1680
|
+
/**
|
|
1681
|
+
* <p>ARN identifier.</p>
|
|
1682
|
+
* @public
|
|
1683
|
+
*/
|
|
1684
|
+
systemArn: string | undefined;
|
|
1685
|
+
/**
|
|
1686
|
+
* <p>The identifier of the user journey to delete.</p>
|
|
1687
|
+
* @public
|
|
1688
|
+
*/
|
|
1689
|
+
userJourneyId: string | undefined;
|
|
1690
|
+
}
|
|
1691
|
+
/**
|
|
1692
|
+
* @public
|
|
1693
|
+
*/
|
|
1694
|
+
export interface DeleteUserJourneyResponse {
|
|
1695
|
+
/**
|
|
1696
|
+
* <p>The identifier of the deleted user journey.</p>
|
|
1697
|
+
* @public
|
|
1698
|
+
*/
|
|
1699
|
+
userJourneyId: string | undefined;
|
|
1700
|
+
}
|
|
1701
|
+
/**
|
|
1702
|
+
* <p>A data point in a dependency query range.</p>
|
|
1703
|
+
* @public
|
|
1704
|
+
*/
|
|
1705
|
+
export interface QueryDataPoint {
|
|
1706
|
+
/**
|
|
1707
|
+
* <p>The timestamp of the data point.</p>
|
|
1708
|
+
* @public
|
|
1709
|
+
*/
|
|
1710
|
+
timestamp: Date | undefined;
|
|
1711
|
+
/**
|
|
1712
|
+
* <p>The number of queries at this data point.</p>
|
|
1713
|
+
* @public
|
|
1714
|
+
*/
|
|
1715
|
+
queryCount: number | undefined;
|
|
1716
|
+
}
|
|
1717
|
+
/**
|
|
1718
|
+
* <p>Defines a time range for dependency query data.</p>
|
|
1719
|
+
* @public
|
|
1720
|
+
*/
|
|
1721
|
+
export interface QueryRange {
|
|
1722
|
+
/**
|
|
1723
|
+
* <p>The start time of the query range.</p>
|
|
1724
|
+
* @public
|
|
1725
|
+
*/
|
|
1726
|
+
startTime: Date | undefined;
|
|
1727
|
+
/**
|
|
1728
|
+
* <p>The end time of the query range.</p>
|
|
1729
|
+
* @public
|
|
1730
|
+
*/
|
|
1731
|
+
endTime: Date | undefined;
|
|
1732
|
+
/**
|
|
1733
|
+
* <p>The granularity of the query range data points.</p>
|
|
1734
|
+
* @public
|
|
1735
|
+
*/
|
|
1736
|
+
granularity: QueryGranularity | undefined;
|
|
1737
|
+
/**
|
|
1738
|
+
* <p>The data points within the query range.</p>
|
|
1739
|
+
* @public
|
|
1740
|
+
*/
|
|
1741
|
+
dataPoints: QueryDataPoint[] | undefined;
|
|
1742
|
+
}
|
|
1743
|
+
/**
|
|
1744
|
+
* <p>Contains summary information about a discovered dependency.</p>
|
|
1745
|
+
* @public
|
|
1746
|
+
*/
|
|
1747
|
+
export interface DependencySummary {
|
|
1748
|
+
/**
|
|
1749
|
+
* <p>The unique identifier of the dependency.</p>
|
|
1750
|
+
* @public
|
|
1751
|
+
*/
|
|
1752
|
+
dependencyId: string | undefined;
|
|
1753
|
+
/**
|
|
1754
|
+
* <p>ARN identifier.</p>
|
|
1755
|
+
* @public
|
|
1756
|
+
*/
|
|
1757
|
+
serviceArn: string | undefined;
|
|
1758
|
+
/**
|
|
1759
|
+
* <p>The name of the dependency.</p>
|
|
1760
|
+
* @public
|
|
1761
|
+
*/
|
|
1762
|
+
dependencyName: string | undefined;
|
|
1763
|
+
/**
|
|
1764
|
+
* <p>The DNS name associated with the dependency.</p>
|
|
1765
|
+
* @public
|
|
1766
|
+
*/
|
|
1767
|
+
dnsName: string | undefined;
|
|
1768
|
+
/**
|
|
1769
|
+
* <p>The location of the dependency.</p>
|
|
1770
|
+
* @public
|
|
1771
|
+
*/
|
|
1772
|
+
location: string | undefined;
|
|
1773
|
+
/**
|
|
1774
|
+
* <p>The timestamp when the dependency was last detected.</p>
|
|
1775
|
+
* @public
|
|
1776
|
+
*/
|
|
1777
|
+
lastDetectedTime: Date | undefined;
|
|
1778
|
+
/**
|
|
1779
|
+
* <p>The source Regions from which the dependency was detected.</p>
|
|
1780
|
+
* @public
|
|
1781
|
+
*/
|
|
1782
|
+
sourceRegions: string[] | undefined;
|
|
1783
|
+
/**
|
|
1784
|
+
* <p>The provider of the dependency.</p>
|
|
1785
|
+
* @public
|
|
1786
|
+
*/
|
|
1787
|
+
provider?: string | undefined;
|
|
1788
|
+
/**
|
|
1789
|
+
* <p>The query range data for the dependency.</p>
|
|
1790
|
+
* @public
|
|
1791
|
+
*/
|
|
1792
|
+
queryRange: QueryRange | undefined;
|
|
1793
|
+
/**
|
|
1794
|
+
* <p>The criticality level of the dependency.</p>
|
|
1795
|
+
* @public
|
|
1796
|
+
*/
|
|
1797
|
+
criticality: DependencyCriticality | undefined;
|
|
1798
|
+
/**
|
|
1799
|
+
* <p>A user-provided comment about the dependency.</p>
|
|
1800
|
+
* @public
|
|
1801
|
+
*/
|
|
1802
|
+
comment?: string | undefined;
|
|
1803
|
+
}
|
|
1804
|
+
/**
|
|
1805
|
+
* <p>Contains property information for a service topology edge.</p>
|
|
1806
|
+
* @public
|
|
1807
|
+
*/
|
|
1808
|
+
export interface EdgePropertySummary {
|
|
1809
|
+
/**
|
|
1810
|
+
* <p>The topology type of the edge.</p>
|
|
1811
|
+
* @public
|
|
1812
|
+
*/
|
|
1813
|
+
topologyType?: TopologyType | undefined;
|
|
1814
|
+
/**
|
|
1815
|
+
* <p>Human-readable relationship description. Only present for LLM-inferred edges.</p>
|
|
1816
|
+
* @public
|
|
1817
|
+
*/
|
|
1818
|
+
label?: string | undefined;
|
|
1819
|
+
}
|
|
1820
|
+
/**
|
|
1821
|
+
* <p>Identifies the actor that triggered an event.</p>
|
|
1822
|
+
* @public
|
|
1823
|
+
*/
|
|
1824
|
+
export interface EventActor {
|
|
1825
|
+
/**
|
|
1826
|
+
* <p>The type of actor, either USER or SYSTEM.</p>
|
|
1827
|
+
* @public
|
|
1828
|
+
*/
|
|
1829
|
+
type: ActorType | undefined;
|
|
1830
|
+
/**
|
|
1831
|
+
* <p>The principal ID of the actor.</p>
|
|
1832
|
+
* @public
|
|
1833
|
+
*/
|
|
1834
|
+
principalId: string | undefined;
|
|
1835
|
+
/**
|
|
1836
|
+
* <p>The AWS account ID of the actor.</p>
|
|
1837
|
+
* @public
|
|
1838
|
+
*/
|
|
1839
|
+
accountId?: string | undefined;
|
|
1840
|
+
/**
|
|
1841
|
+
* <p>The user name of the actor.</p>
|
|
1842
|
+
* @public
|
|
1843
|
+
*/
|
|
1844
|
+
userName?: string | undefined;
|
|
1845
|
+
}
|
|
1846
|
+
/**
|
|
1847
|
+
* <p>An infrastructure and code recommendation to address a finding.</p>
|
|
1848
|
+
* @public
|
|
1849
|
+
*/
|
|
1850
|
+
export interface InfrastructureAndCodeRecommendation {
|
|
1851
|
+
/**
|
|
1852
|
+
* <p>The list of suggested changes.</p>
|
|
1853
|
+
* @public
|
|
1854
|
+
*/
|
|
1855
|
+
suggestedChanges?: string[] | undefined;
|
|
1856
|
+
}
|
|
1857
|
+
/**
|
|
1858
|
+
* <p>An observability recommendation to address a finding.</p>
|
|
1859
|
+
* @public
|
|
1860
|
+
*/
|
|
1861
|
+
export interface ObservabilityRecommendation {
|
|
1862
|
+
/**
|
|
1863
|
+
* <p>The list of suggested observability changes.</p>
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
suggestedChanges?: string[] | undefined;
|
|
1867
|
+
}
|
|
1868
|
+
/**
|
|
1869
|
+
* <p>A testing recommendation to address a finding.</p>
|
|
1870
|
+
* @public
|
|
1871
|
+
*/
|
|
1872
|
+
export interface TestingRecommendation {
|
|
1873
|
+
/**
|
|
1874
|
+
* <p>The list of suggested testing changes.</p>
|
|
1875
|
+
* @public
|
|
1876
|
+
*/
|
|
1877
|
+
suggestedChanges?: string[] | undefined;
|
|
1878
|
+
}
|
|
1879
|
+
/**
|
|
1880
|
+
* <p>Represents a resilience finding from a failure mode assessment.</p>
|
|
1881
|
+
* @public
|
|
1882
|
+
*/
|
|
1883
|
+
export interface Finding {
|
|
1884
|
+
/**
|
|
1885
|
+
* <p>The unique identifier of the finding.</p>
|
|
1886
|
+
* @public
|
|
1887
|
+
*/
|
|
1888
|
+
findingId?: string | undefined;
|
|
1889
|
+
/**
|
|
1890
|
+
* <p>The name of the finding.</p>
|
|
1891
|
+
* @public
|
|
1892
|
+
*/
|
|
1893
|
+
name?: string | undefined;
|
|
1894
|
+
/**
|
|
1895
|
+
* <p>Resource description.</p>
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
description?: string | undefined;
|
|
1899
|
+
/**
|
|
1900
|
+
* <p>The failure category of the finding.</p>
|
|
1901
|
+
* @public
|
|
1902
|
+
*/
|
|
1903
|
+
failureCategory?: FailureCategory | undefined;
|
|
1904
|
+
/**
|
|
1905
|
+
* <p>The current status of the finding.</p>
|
|
1906
|
+
* @public
|
|
1907
|
+
*/
|
|
1908
|
+
status?: FindingStatus | undefined;
|
|
1909
|
+
/**
|
|
1910
|
+
* <p>The reasoning behind the finding.</p>
|
|
1911
|
+
* @public
|
|
1912
|
+
*/
|
|
1913
|
+
reasoning?: string | undefined;
|
|
1914
|
+
/**
|
|
1915
|
+
* <p>A user-provided comment about the finding.</p>
|
|
1916
|
+
* @public
|
|
1917
|
+
*/
|
|
1918
|
+
comment?: string | undefined;
|
|
1919
|
+
/**
|
|
1920
|
+
* <p>The severity of the finding.</p>
|
|
1921
|
+
* @public
|
|
1922
|
+
*/
|
|
1923
|
+
severity?: FindingSeverity | undefined;
|
|
1924
|
+
/**
|
|
1925
|
+
* <p>The service functions associated with the finding.</p>
|
|
1926
|
+
* @public
|
|
1927
|
+
*/
|
|
1928
|
+
serviceFunctions?: string[] | undefined;
|
|
1929
|
+
/**
|
|
1930
|
+
* <p>The policy component associated with the finding.</p>
|
|
1931
|
+
* @public
|
|
1932
|
+
*/
|
|
1933
|
+
policyComponent?: PolicyComponent | undefined;
|
|
1934
|
+
/**
|
|
1935
|
+
* <p>Infrastructure and code recommendations to address the finding.</p>
|
|
1936
|
+
* @public
|
|
1937
|
+
*/
|
|
1938
|
+
infrastructureAndCodeRecommendations?: InfrastructureAndCodeRecommendation[] | undefined;
|
|
1939
|
+
/**
|
|
1940
|
+
* <p>Observability recommendations to address the finding.</p>
|
|
1941
|
+
* @public
|
|
1942
|
+
*/
|
|
1943
|
+
observabilityRecommendations?: ObservabilityRecommendation[] | undefined;
|
|
1944
|
+
/**
|
|
1945
|
+
* <p>Testing recommendations to address the finding.</p>
|
|
1946
|
+
* @public
|
|
1947
|
+
*/
|
|
1948
|
+
testingRecommendations?: TestingRecommendation[] | undefined;
|
|
1949
|
+
/**
|
|
1950
|
+
* <p>The timestamp when the finding was last updated.</p>
|
|
1951
|
+
* @public
|
|
1952
|
+
*/
|
|
1953
|
+
updatedAt?: Date | undefined;
|
|
1954
|
+
}
|
|
1955
|
+
/**
|
|
1956
|
+
* <p>Contains summary information about a finding.</p>
|
|
1957
|
+
* @public
|
|
1958
|
+
*/
|
|
1959
|
+
export interface FindingSummary {
|
|
1960
|
+
/**
|
|
1961
|
+
* <p>ARN identifier.</p>
|
|
1962
|
+
* @public
|
|
1963
|
+
*/
|
|
1964
|
+
serviceArn?: string | undefined;
|
|
1965
|
+
/**
|
|
1966
|
+
* <p>The unique identifier of the finding.</p>
|
|
1967
|
+
* @public
|
|
1968
|
+
*/
|
|
1969
|
+
findingId?: string | undefined;
|
|
1970
|
+
/**
|
|
1971
|
+
* <p>The name of the finding.</p>
|
|
1972
|
+
* @public
|
|
1973
|
+
*/
|
|
1974
|
+
name?: string | undefined;
|
|
1975
|
+
/**
|
|
1976
|
+
* <p>Resource description.</p>
|
|
1977
|
+
* @public
|
|
1978
|
+
*/
|
|
1979
|
+
description?: string | undefined;
|
|
1980
|
+
/**
|
|
1981
|
+
* <p>The failure category of the finding.</p>
|
|
1982
|
+
* @public
|
|
1983
|
+
*/
|
|
1984
|
+
failureCategory?: FailureCategory | undefined;
|
|
1985
|
+
/**
|
|
1986
|
+
* <p>The severity of the finding.</p>
|
|
1987
|
+
* @public
|
|
1988
|
+
*/
|
|
1989
|
+
severity?: FindingSeverity | undefined;
|
|
1990
|
+
/**
|
|
1991
|
+
* <p>The current status of the finding.</p>
|
|
1992
|
+
* @public
|
|
1993
|
+
*/
|
|
1994
|
+
status?: FindingStatus | undefined;
|
|
1995
|
+
/**
|
|
1996
|
+
* <p>The policy component associated with the finding.</p>
|
|
1997
|
+
* @public
|
|
1998
|
+
*/
|
|
1999
|
+
policyComponent?: PolicyComponent | undefined;
|
|
2000
|
+
/**
|
|
2001
|
+
* <p>The timestamp when the finding was last updated.</p>
|
|
2002
|
+
* @public
|
|
2003
|
+
*/
|
|
2004
|
+
updatedAt?: Date | undefined;
|
|
2005
|
+
}
|
|
2006
|
+
/**
|
|
2007
|
+
* @public
|
|
2008
|
+
*/
|
|
2009
|
+
export interface GetFailureModeFindingRequest {
|
|
2010
|
+
/**
|
|
2011
|
+
* <p>The unique identifier of the finding to retrieve.</p>
|
|
2012
|
+
* @public
|
|
2013
|
+
*/
|
|
2014
|
+
findingId: string | undefined;
|
|
2015
|
+
/**
|
|
2016
|
+
* <p>ARN identifier.</p>
|
|
2017
|
+
* @public
|
|
2018
|
+
*/
|
|
2019
|
+
serviceArn: string | undefined;
|
|
2020
|
+
}
|
|
2021
|
+
/**
|
|
2022
|
+
* @public
|
|
2023
|
+
*/
|
|
2024
|
+
export interface GetFailureModeFindingResponse {
|
|
2025
|
+
/**
|
|
2026
|
+
* <p>The requested finding.</p>
|
|
2027
|
+
* @public
|
|
2028
|
+
*/
|
|
2029
|
+
finding?: Finding | undefined;
|
|
2030
|
+
}
|
|
2031
|
+
/**
|
|
2032
|
+
* @public
|
|
2033
|
+
*/
|
|
2034
|
+
export interface GetPolicyRequest {
|
|
2035
|
+
/**
|
|
2036
|
+
* <p>ARN identifier.</p>
|
|
2037
|
+
* @public
|
|
2038
|
+
*/
|
|
2039
|
+
policyArn: string | undefined;
|
|
2040
|
+
}
|
|
2041
|
+
/**
|
|
2042
|
+
* @public
|
|
2043
|
+
*/
|
|
2044
|
+
export interface GetPolicyResponse {
|
|
2045
|
+
/**
|
|
2046
|
+
* <p>The requested resilience policy.</p>
|
|
2047
|
+
* @public
|
|
2048
|
+
*/
|
|
2049
|
+
policy: Policy | undefined;
|
|
2050
|
+
}
|
|
2051
|
+
/**
|
|
2052
|
+
* @public
|
|
2053
|
+
*/
|
|
2054
|
+
export interface GetServiceRequest {
|
|
2055
|
+
/**
|
|
2056
|
+
* <p>ARN identifier.</p>
|
|
2057
|
+
* @public
|
|
2058
|
+
*/
|
|
2059
|
+
serviceArn: string | undefined;
|
|
2060
|
+
}
|
|
2061
|
+
/**
|
|
2062
|
+
* @public
|
|
2063
|
+
*/
|
|
2064
|
+
export interface GetServiceResponse {
|
|
2065
|
+
/**
|
|
2066
|
+
* <p>The requested service.</p>
|
|
2067
|
+
* @public
|
|
2068
|
+
*/
|
|
2069
|
+
service: Service | undefined;
|
|
2070
|
+
}
|
|
2071
|
+
/**
|
|
2072
|
+
* @public
|
|
2073
|
+
*/
|
|
2074
|
+
export interface GetSystemRequest {
|
|
2075
|
+
/**
|
|
2076
|
+
* <p>ARN identifier.</p>
|
|
2077
|
+
* @public
|
|
2078
|
+
*/
|
|
2079
|
+
systemArn: string | undefined;
|
|
2080
|
+
}
|
|
2081
|
+
/**
|
|
2082
|
+
* @public
|
|
2083
|
+
*/
|
|
2084
|
+
export interface GetSystemResponse {
|
|
2085
|
+
/**
|
|
2086
|
+
* <p>The requested system.</p>
|
|
2087
|
+
* @public
|
|
2088
|
+
*/
|
|
2089
|
+
system: System | undefined;
|
|
2090
|
+
}
|
|
2091
|
+
/**
|
|
2092
|
+
* @public
|
|
2093
|
+
*/
|
|
2094
|
+
export interface GetUserJourneyRequest {
|
|
2095
|
+
/**
|
|
2096
|
+
* <p>ARN identifier.</p>
|
|
2097
|
+
* @public
|
|
2098
|
+
*/
|
|
2099
|
+
systemArn: string | undefined;
|
|
2100
|
+
/**
|
|
2101
|
+
* <p>The identifier of the user journey to retrieve.</p>
|
|
2102
|
+
* @public
|
|
2103
|
+
*/
|
|
2104
|
+
userJourneyId: string | undefined;
|
|
2105
|
+
}
|
|
2106
|
+
/**
|
|
2107
|
+
* @public
|
|
2108
|
+
*/
|
|
2109
|
+
export interface GetUserJourneyResponse {
|
|
2110
|
+
/**
|
|
2111
|
+
* <p>The requested user journey.</p>
|
|
2112
|
+
* @public
|
|
2113
|
+
*/
|
|
2114
|
+
userJourney: UserJourney | undefined;
|
|
2115
|
+
}
|
|
2116
|
+
/**
|
|
2117
|
+
* @public
|
|
2118
|
+
*/
|
|
2119
|
+
export interface ImportAppRequest {
|
|
2120
|
+
/**
|
|
2121
|
+
* <p>ARN identifier.</p>
|
|
2122
|
+
* @public
|
|
2123
|
+
*/
|
|
2124
|
+
v1AppArn: string | undefined;
|
|
2125
|
+
/**
|
|
2126
|
+
* <p>ARN identifier.</p>
|
|
2127
|
+
* @public
|
|
2128
|
+
*/
|
|
2129
|
+
policyArn?: string | undefined;
|
|
2130
|
+
/**
|
|
2131
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
2132
|
+
* @public
|
|
2133
|
+
*/
|
|
2134
|
+
kmsKeyId?: string | undefined;
|
|
2135
|
+
/**
|
|
2136
|
+
* <p>Whether to skip manually added resources during import.</p>
|
|
2137
|
+
* @public
|
|
2138
|
+
*/
|
|
2139
|
+
skipManuallyAddedResources?: boolean | undefined;
|
|
2140
|
+
/**
|
|
2141
|
+
* <p>The systems to associate with the imported service.</p>
|
|
2142
|
+
* @public
|
|
2143
|
+
*/
|
|
2144
|
+
associatedSystems?: AssociatedSystem[] | undefined;
|
|
2145
|
+
/**
|
|
2146
|
+
* <p>Resource tags.</p>
|
|
2147
|
+
* @public
|
|
2148
|
+
*/
|
|
2149
|
+
tags?: Record<string, string> | undefined;
|
|
2150
|
+
/**
|
|
2151
|
+
* <p>Idempotency token.</p>
|
|
2152
|
+
* @public
|
|
2153
|
+
*/
|
|
2154
|
+
clientToken?: string | undefined;
|
|
2155
|
+
}
|
|
2156
|
+
/**
|
|
2157
|
+
* @public
|
|
2158
|
+
*/
|
|
2159
|
+
export interface ImportAppResponse {
|
|
2160
|
+
/**
|
|
2161
|
+
* <p>The imported service.</p>
|
|
2162
|
+
* @public
|
|
2163
|
+
*/
|
|
2164
|
+
service: Service | undefined;
|
|
2165
|
+
}
|
|
2166
|
+
/**
|
|
2167
|
+
* @public
|
|
2168
|
+
*/
|
|
2169
|
+
export interface ImportPolicyRequest {
|
|
2170
|
+
/**
|
|
2171
|
+
* <p>ARN identifier.</p>
|
|
2172
|
+
* @public
|
|
2173
|
+
*/
|
|
2174
|
+
v1PolicyArn: string | undefined;
|
|
2175
|
+
/**
|
|
2176
|
+
* <p>KMS key identifier — accepts key ID, key ARN, alias name, or alias ARN.</p>
|
|
2177
|
+
* @public
|
|
2178
|
+
*/
|
|
2179
|
+
kmsKeyId?: string | undefined;
|
|
2180
|
+
/**
|
|
2181
|
+
* <p>The availability SLO to set on the imported policy.</p>
|
|
2182
|
+
* @public
|
|
2183
|
+
*/
|
|
2184
|
+
availabilitySlo?: AvailabilitySlo | undefined;
|
|
2185
|
+
/**
|
|
2186
|
+
* <p>The multi-AZ disaster recovery approach for the imported policy.</p>
|
|
2187
|
+
* @public
|
|
2188
|
+
*/
|
|
2189
|
+
multiAzDisasterRecoveryApproach?: MultiAzDisasterRecoveryApproach | undefined;
|
|
2190
|
+
/**
|
|
2191
|
+
* <p>The multi-Region disaster recovery approach for the imported policy.</p>
|
|
2192
|
+
* @public
|
|
2193
|
+
*/
|
|
2194
|
+
multiRegionDisasterRecoveryApproach?: MultiRegionDisasterRecoveryApproach | undefined;
|
|
2195
|
+
/**
|
|
2196
|
+
* <p>Resource tags.</p>
|
|
2197
|
+
* @public
|
|
2198
|
+
*/
|
|
2199
|
+
tags?: Record<string, string> | undefined;
|
|
2200
|
+
/**
|
|
2201
|
+
* <p>Idempotency token.</p>
|
|
2202
|
+
* @public
|
|
2203
|
+
*/
|
|
2204
|
+
clientToken?: string | undefined;
|
|
2205
|
+
}
|
|
2206
|
+
/**
|
|
2207
|
+
* @public
|
|
2208
|
+
*/
|
|
2209
|
+
export interface ImportPolicyResponse {
|
|
2210
|
+
/**
|
|
2211
|
+
* <p>The imported policy.</p>
|
|
2212
|
+
* @public
|
|
2213
|
+
*/
|
|
2214
|
+
policy: Policy | undefined;
|
|
2215
|
+
}
|
|
2216
|
+
/**
|
|
2217
|
+
* <p>Identifies an input source by its identifier and type.</p>
|
|
2218
|
+
* @public
|
|
2219
|
+
*/
|
|
2220
|
+
export interface InputSource {
|
|
2221
|
+
/**
|
|
2222
|
+
* <p>The identifier of the input source.</p>
|
|
2223
|
+
* @public
|
|
2224
|
+
*/
|
|
2225
|
+
identifier: string | undefined;
|
|
2226
|
+
/**
|
|
2227
|
+
* <p>The type of the input source.</p>
|
|
2228
|
+
* @public
|
|
2229
|
+
*/
|
|
2230
|
+
type: InputSourceType | undefined;
|
|
2231
|
+
}
|
|
2232
|
+
/**
|
|
2233
|
+
* <p>Contains summary information about an input source for a service.</p>
|
|
2234
|
+
* @public
|
|
2235
|
+
*/
|
|
2236
|
+
export interface InputSourceSummary {
|
|
2237
|
+
/**
|
|
2238
|
+
* <p>The unique identifier of the input source.</p>
|
|
2239
|
+
* @public
|
|
2240
|
+
*/
|
|
2241
|
+
inputSourceId: string | undefined;
|
|
2242
|
+
/**
|
|
2243
|
+
* <p>The type of the input source.</p>
|
|
2244
|
+
* @public
|
|
2245
|
+
*/
|
|
2246
|
+
type?: InputSourceType | undefined;
|
|
2247
|
+
/**
|
|
2248
|
+
* <p>The resource tags used for discovery, if this input source uses tags.</p>
|
|
2249
|
+
* @public
|
|
2250
|
+
*/
|
|
2251
|
+
resourceTags?: ResourceTag[] | undefined;
|
|
2252
|
+
/**
|
|
2253
|
+
* <p>ARN identifier.</p>
|
|
2254
|
+
* @public
|
|
2255
|
+
*/
|
|
2256
|
+
cfnStackArn?: string | undefined;
|
|
2257
|
+
/**
|
|
2258
|
+
* <p>S3 URL — virtual hosted-style or s3:// URI.</p>
|
|
2259
|
+
* @public
|
|
2260
|
+
*/
|
|
2261
|
+
tfStateFileUrl?: string | undefined;
|
|
2262
|
+
/**
|
|
2263
|
+
* <p>The Amazon EKS configuration, if this input source uses EKS.</p>
|
|
2264
|
+
* @public
|
|
2265
|
+
*/
|
|
2266
|
+
eks?: EksSource | undefined;
|
|
2267
|
+
/**
|
|
2268
|
+
* <p>S3 URL — virtual hosted-style or s3:// URI.</p>
|
|
2269
|
+
* @public
|
|
2270
|
+
*/
|
|
2271
|
+
designFileS3Url?: string | undefined;
|
|
2272
|
+
/**
|
|
2273
|
+
* <p>The timestamp when the input source was created.</p>
|
|
2274
|
+
* @public
|
|
2275
|
+
*/
|
|
2276
|
+
createdAt?: Date | undefined;
|
|
2277
|
+
}
|
|
2278
|
+
/**
|
|
2279
|
+
* @public
|
|
2280
|
+
*/
|
|
2281
|
+
export interface ListAssertionsRequest {
|
|
2282
|
+
/**
|
|
2283
|
+
* <p>ARN identifier.</p>
|
|
2284
|
+
* @public
|
|
2285
|
+
*/
|
|
2286
|
+
serviceArn: string | undefined;
|
|
2287
|
+
/**
|
|
2288
|
+
* <p>Filter assertions by source type.</p>
|
|
2289
|
+
* @public
|
|
2290
|
+
*/
|
|
2291
|
+
source?: AssertionSource | undefined;
|
|
2292
|
+
/**
|
|
2293
|
+
* <p>Pagination page size.</p>
|
|
2294
|
+
* @public
|
|
2295
|
+
*/
|
|
2296
|
+
maxResults?: number | undefined;
|
|
2297
|
+
/**
|
|
2298
|
+
* <p>Pagination token.</p>
|
|
2299
|
+
* @public
|
|
2300
|
+
*/
|
|
2301
|
+
nextToken?: string | undefined;
|
|
2302
|
+
}
|
|
2303
|
+
/**
|
|
2304
|
+
* @public
|
|
2305
|
+
*/
|
|
2306
|
+
export interface ListAssertionsResponse {
|
|
2307
|
+
/**
|
|
2308
|
+
* <p>The list of assertions.</p>
|
|
2309
|
+
* @public
|
|
2310
|
+
*/
|
|
2311
|
+
assertions: Assertion[] | undefined;
|
|
2312
|
+
/**
|
|
2313
|
+
* <p>Pagination token.</p>
|
|
2314
|
+
* @public
|
|
2315
|
+
*/
|
|
2316
|
+
nextToken?: string | undefined;
|
|
2317
|
+
}
|
|
2318
|
+
/**
|
|
2319
|
+
* @public
|
|
2320
|
+
*/
|
|
2321
|
+
export interface ListDependenciesRequest {
|
|
2322
|
+
/**
|
|
2323
|
+
* <p>ARN identifier.</p>
|
|
2324
|
+
* @public
|
|
2325
|
+
*/
|
|
2326
|
+
serviceArn?: string | undefined;
|
|
2327
|
+
/**
|
|
2328
|
+
* <p>The start time for the dependency query range.</p>
|
|
2329
|
+
* @public
|
|
2330
|
+
*/
|
|
2331
|
+
queryRangeStartTime?: Date | undefined;
|
|
2332
|
+
/**
|
|
2333
|
+
* <p>The end time for the dependency query range.</p>
|
|
2334
|
+
* @public
|
|
2335
|
+
*/
|
|
2336
|
+
queryRangeEndTime?: Date | undefined;
|
|
2337
|
+
/**
|
|
2338
|
+
* <p>The granularity for the dependency query range.</p>
|
|
2339
|
+
* @public
|
|
2340
|
+
*/
|
|
2341
|
+
queryRangeGranularity?: QueryGranularity | undefined;
|
|
2342
|
+
/**
|
|
2343
|
+
* <p>Pagination page size.</p>
|
|
2344
|
+
* @public
|
|
2345
|
+
*/
|
|
2346
|
+
maxResults?: number | undefined;
|
|
2347
|
+
/**
|
|
2348
|
+
* <p>Pagination token.</p>
|
|
2349
|
+
* @public
|
|
2350
|
+
*/
|
|
2351
|
+
nextToken?: string | undefined;
|
|
2352
|
+
}
|
|
2353
|
+
/**
|
|
2354
|
+
* @public
|
|
2355
|
+
*/
|
|
2356
|
+
export interface ListDependenciesResponse {
|
|
2357
|
+
/**
|
|
2358
|
+
* <p>The list of dependency summaries.</p>
|
|
2359
|
+
* @public
|
|
2360
|
+
*/
|
|
2361
|
+
dependencySummaries: DependencySummary[] | undefined;
|
|
2362
|
+
/**
|
|
2363
|
+
* <p>Pagination token.</p>
|
|
2364
|
+
* @public
|
|
2365
|
+
*/
|
|
2366
|
+
nextToken?: string | undefined;
|
|
2367
|
+
}
|
|
2368
|
+
/**
|
|
2369
|
+
* @public
|
|
2370
|
+
*/
|
|
2371
|
+
export interface ListFailureModeAssessmentsRequest {
|
|
2372
|
+
/**
|
|
2373
|
+
* <p>ARN identifier.</p>
|
|
2374
|
+
* @public
|
|
2375
|
+
*/
|
|
2376
|
+
serviceArn: string | undefined;
|
|
2377
|
+
/**
|
|
2378
|
+
* <p>Pagination page size.</p>
|
|
2379
|
+
* @public
|
|
2380
|
+
*/
|
|
2381
|
+
maxResults?: number | undefined;
|
|
2382
|
+
/**
|
|
2383
|
+
* <p>Pagination token.</p>
|
|
2384
|
+
* @public
|
|
2385
|
+
*/
|
|
2386
|
+
nextToken?: string | undefined;
|
|
2387
|
+
}
|
|
2388
|
+
/**
|
|
2389
|
+
* @public
|
|
2390
|
+
*/
|
|
2391
|
+
export interface ListFailureModeAssessmentsResponse {
|
|
2392
|
+
/**
|
|
2393
|
+
* <p>The list of assessment summaries.</p>
|
|
2394
|
+
* @public
|
|
2395
|
+
*/
|
|
2396
|
+
assessmentSummaries: AssessmentSummary[] | undefined;
|
|
2397
|
+
/**
|
|
2398
|
+
* <p>Pagination token.</p>
|
|
2399
|
+
* @public
|
|
2400
|
+
*/
|
|
2401
|
+
nextToken?: string | undefined;
|
|
2402
|
+
}
|
|
2403
|
+
/**
|
|
2404
|
+
* @public
|
|
2405
|
+
*/
|
|
2406
|
+
export interface ListFailureModeFindingsRequest {
|
|
2407
|
+
/**
|
|
2408
|
+
* <p>ARN identifier.</p>
|
|
2409
|
+
* @public
|
|
2410
|
+
*/
|
|
2411
|
+
serviceArn: string | undefined;
|
|
2412
|
+
/**
|
|
2413
|
+
* <p>Filter findings by severity.</p>
|
|
2414
|
+
* @public
|
|
2415
|
+
*/
|
|
2416
|
+
severity?: FindingSeverity | undefined;
|
|
2417
|
+
/**
|
|
2418
|
+
* <p>Filter findings by failure category.</p>
|
|
2419
|
+
* @public
|
|
2420
|
+
*/
|
|
2421
|
+
failureCategory?: FailureCategory | undefined;
|
|
2422
|
+
/**
|
|
2423
|
+
* <p>Filter findings by status.</p>
|
|
2424
|
+
* @public
|
|
2425
|
+
*/
|
|
2426
|
+
status?: FindingStatus | undefined;
|
|
2427
|
+
/**
|
|
2428
|
+
* <p>Pagination page size.</p>
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2431
|
+
maxResults?: number | undefined;
|
|
2432
|
+
/**
|
|
2433
|
+
* <p>Pagination token.</p>
|
|
2434
|
+
* @public
|
|
2435
|
+
*/
|
|
2436
|
+
nextToken?: string | undefined;
|
|
2437
|
+
}
|
|
2438
|
+
/**
|
|
2439
|
+
* @public
|
|
2440
|
+
*/
|
|
2441
|
+
export interface ListFailureModeFindingsResponse {
|
|
2442
|
+
/**
|
|
2443
|
+
* <p>The list of finding summaries.</p>
|
|
2444
|
+
* @public
|
|
2445
|
+
*/
|
|
2446
|
+
findingsSummary: FindingSummary[] | undefined;
|
|
2447
|
+
/**
|
|
2448
|
+
* <p>Pagination token.</p>
|
|
2449
|
+
* @public
|
|
2450
|
+
*/
|
|
2451
|
+
nextToken?: string | undefined;
|
|
2452
|
+
}
|
|
2453
|
+
/**
|
|
2454
|
+
* @public
|
|
2455
|
+
*/
|
|
2456
|
+
export interface ListInputSourcesRequest {
|
|
2457
|
+
/**
|
|
2458
|
+
* <p>ARN identifier.</p>
|
|
2459
|
+
* @public
|
|
2460
|
+
*/
|
|
2461
|
+
serviceArn: string | undefined;
|
|
2462
|
+
/**
|
|
2463
|
+
* <p>Filter input sources by type.</p>
|
|
2464
|
+
* @public
|
|
2465
|
+
*/
|
|
2466
|
+
type?: InputSourceType | undefined;
|
|
2467
|
+
/**
|
|
2468
|
+
* <p>Pagination page size.</p>
|
|
2469
|
+
* @public
|
|
2470
|
+
*/
|
|
2471
|
+
maxResults?: number | undefined;
|
|
2472
|
+
/**
|
|
2473
|
+
* <p>Pagination token.</p>
|
|
2474
|
+
* @public
|
|
2475
|
+
*/
|
|
2476
|
+
nextToken?: string | undefined;
|
|
2477
|
+
}
|
|
2478
|
+
/**
|
|
2479
|
+
* @public
|
|
2480
|
+
*/
|
|
2481
|
+
export interface ListInputSourcesResponse {
|
|
2482
|
+
/**
|
|
2483
|
+
* <p>The list of input source summaries.</p>
|
|
2484
|
+
* @public
|
|
2485
|
+
*/
|
|
2486
|
+
inputSourceSummaries: InputSourceSummary[] | undefined;
|
|
2487
|
+
/**
|
|
2488
|
+
* <p>Pagination token.</p>
|
|
2489
|
+
* @public
|
|
2490
|
+
*/
|
|
2491
|
+
nextToken?: string | undefined;
|
|
2492
|
+
}
|
|
2493
|
+
/**
|
|
2494
|
+
* @public
|
|
2495
|
+
*/
|
|
2496
|
+
export interface ListPoliciesRequest {
|
|
2497
|
+
/**
|
|
2498
|
+
* <p>Pagination page size.</p>
|
|
2499
|
+
* @public
|
|
2500
|
+
*/
|
|
2501
|
+
maxResults?: number | undefined;
|
|
2502
|
+
/**
|
|
2503
|
+
* <p>Pagination token.</p>
|
|
2504
|
+
* @public
|
|
2505
|
+
*/
|
|
2506
|
+
nextToken?: string | undefined;
|
|
2507
|
+
}
|
|
2508
|
+
/**
|
|
2509
|
+
* <p>Contains summary information about a resilience policy.</p>
|
|
2510
|
+
* @public
|
|
2511
|
+
*/
|
|
2512
|
+
export interface PolicySummary {
|
|
2513
|
+
/**
|
|
2514
|
+
* <p>ARN identifier.</p>
|
|
2515
|
+
* @public
|
|
2516
|
+
*/
|
|
2517
|
+
policyArn: string | undefined;
|
|
2518
|
+
/**
|
|
2519
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
2520
|
+
* @public
|
|
2521
|
+
*/
|
|
2522
|
+
name: string | undefined;
|
|
2523
|
+
/**
|
|
2524
|
+
* <p>The availability SLO defined in the policy.</p>
|
|
2525
|
+
* @public
|
|
2526
|
+
*/
|
|
2527
|
+
availabilitySlo?: AvailabilitySlo | undefined;
|
|
2528
|
+
/**
|
|
2529
|
+
* <p>The multi-AZ disaster recovery targets defined in the policy.</p>
|
|
2530
|
+
* @public
|
|
2531
|
+
*/
|
|
2532
|
+
multiAz?: MultiAzTargets | undefined;
|
|
2533
|
+
/**
|
|
2534
|
+
* <p>The multi-Region disaster recovery targets defined in the policy.</p>
|
|
2535
|
+
* @public
|
|
2536
|
+
*/
|
|
2537
|
+
multiRegion?: MultiRegionTargets | undefined;
|
|
2538
|
+
/**
|
|
2539
|
+
* <p>The data recovery targets defined in the policy.</p>
|
|
2540
|
+
* @public
|
|
2541
|
+
*/
|
|
2542
|
+
dataRecovery?: DataRecoveryTargets | undefined;
|
|
2543
|
+
/**
|
|
2544
|
+
* <p>The number of services associated with this policy.</p>
|
|
2545
|
+
* @public
|
|
2546
|
+
*/
|
|
2547
|
+
associatedServiceCount?: number | undefined;
|
|
2548
|
+
/**
|
|
2549
|
+
* <p>The timestamp when the policy was created.</p>
|
|
2550
|
+
* @public
|
|
2551
|
+
*/
|
|
2552
|
+
createdAt?: Date | undefined;
|
|
2553
|
+
/**
|
|
2554
|
+
* <p>The timestamp when the policy was last updated.</p>
|
|
2555
|
+
* @public
|
|
2556
|
+
*/
|
|
2557
|
+
updatedAt?: Date | undefined;
|
|
2558
|
+
}
|
|
2559
|
+
/**
|
|
2560
|
+
* @public
|
|
2561
|
+
*/
|
|
2562
|
+
export interface ListPoliciesResponse {
|
|
2563
|
+
/**
|
|
2564
|
+
* <p>The list of policy summaries.</p>
|
|
2565
|
+
* @public
|
|
2566
|
+
*/
|
|
2567
|
+
policySummaries: PolicySummary[] | undefined;
|
|
2568
|
+
/**
|
|
2569
|
+
* <p>Pagination token.</p>
|
|
2570
|
+
* @public
|
|
2571
|
+
*/
|
|
2572
|
+
nextToken?: string | undefined;
|
|
2573
|
+
}
|
|
2574
|
+
/**
|
|
2575
|
+
* @public
|
|
2576
|
+
*/
|
|
2577
|
+
export interface ListReportsRequest {
|
|
2578
|
+
/**
|
|
2579
|
+
* <p>Optional. If not provided, lists all reports owned by the account.</p>
|
|
2580
|
+
* @public
|
|
2581
|
+
*/
|
|
2582
|
+
serviceArn?: string | undefined;
|
|
2583
|
+
/**
|
|
2584
|
+
* <p>Filter reports by type.</p>
|
|
2585
|
+
* @public
|
|
2586
|
+
*/
|
|
2587
|
+
reportType?: ReportType | undefined;
|
|
2588
|
+
/**
|
|
2589
|
+
* <p>Pagination page size.</p>
|
|
2590
|
+
* @public
|
|
2591
|
+
*/
|
|
2592
|
+
maxResults?: number | undefined;
|
|
2593
|
+
/**
|
|
2594
|
+
* <p>Pagination token.</p>
|
|
2595
|
+
* @public
|
|
2596
|
+
*/
|
|
2597
|
+
nextToken?: string | undefined;
|
|
2598
|
+
}
|
|
2599
|
+
/**
|
|
2600
|
+
* @public
|
|
2601
|
+
*/
|
|
2602
|
+
export interface ListReportsResponse {
|
|
2603
|
+
/**
|
|
2604
|
+
* <p>The list of report generation results.</p>
|
|
2605
|
+
* @public
|
|
2606
|
+
*/
|
|
2607
|
+
reportGenerationResults: ReportGenerationResult[] | undefined;
|
|
2608
|
+
/**
|
|
2609
|
+
* <p>Pagination token.</p>
|
|
2610
|
+
* @public
|
|
2611
|
+
*/
|
|
2612
|
+
nextToken?: string | undefined;
|
|
2613
|
+
}
|
|
2614
|
+
/**
|
|
2615
|
+
* @public
|
|
2616
|
+
*/
|
|
2617
|
+
export interface ListResourcesRequest {
|
|
2618
|
+
/**
|
|
2619
|
+
* <p>ARN identifier.</p>
|
|
2620
|
+
* @public
|
|
2621
|
+
*/
|
|
2622
|
+
serviceArn: string | undefined;
|
|
2623
|
+
/**
|
|
2624
|
+
* <p>Filter resources by service function identifier.</p>
|
|
2625
|
+
* @public
|
|
2626
|
+
*/
|
|
2627
|
+
serviceFunctionId?: string | undefined;
|
|
2628
|
+
/**
|
|
2629
|
+
* <p>Filter resources by AWS Region.</p>
|
|
2630
|
+
* @public
|
|
2631
|
+
*/
|
|
2632
|
+
awsRegion?: string | undefined;
|
|
2633
|
+
/**
|
|
2634
|
+
* <p>Pagination page size.</p>
|
|
2635
|
+
* @public
|
|
2636
|
+
*/
|
|
2637
|
+
maxResults?: number | undefined;
|
|
2638
|
+
/**
|
|
2639
|
+
* <p>Pagination token.</p>
|
|
2640
|
+
* @public
|
|
2641
|
+
*/
|
|
2642
|
+
nextToken?: string | undefined;
|
|
2643
|
+
}
|
|
2644
|
+
/**
|
|
2645
|
+
* <p>Represents an AWS resource discovered by Resilience Hub.</p>
|
|
2646
|
+
* @public
|
|
2647
|
+
*/
|
|
2648
|
+
export interface Resource {
|
|
2649
|
+
/**
|
|
2650
|
+
* <p>The identifier of the resource.</p>
|
|
2651
|
+
* @public
|
|
2652
|
+
*/
|
|
2653
|
+
identifier: string | undefined;
|
|
2654
|
+
/**
|
|
2655
|
+
* <p>The AWS Region where the resource is located.</p>
|
|
2656
|
+
* @public
|
|
2657
|
+
*/
|
|
2658
|
+
awsRegion?: string | undefined;
|
|
2659
|
+
/**
|
|
2660
|
+
* <p>The AWS account ID that owns the resource.</p>
|
|
2661
|
+
* @public
|
|
2662
|
+
*/
|
|
2663
|
+
awsAccountId?: string | undefined;
|
|
2664
|
+
/**
|
|
2665
|
+
* <p>The type of the resource.</p>
|
|
2666
|
+
* @public
|
|
2667
|
+
*/
|
|
2668
|
+
resourceType?: string | undefined;
|
|
2669
|
+
}
|
|
2670
|
+
/**
|
|
2671
|
+
* <p>Represents a resource associated with a service.</p>
|
|
2672
|
+
* @public
|
|
2673
|
+
*/
|
|
2674
|
+
export interface ServiceResource {
|
|
2675
|
+
/**
|
|
2676
|
+
* <p>The identifier of the resource.</p>
|
|
2677
|
+
* @public
|
|
2678
|
+
*/
|
|
2679
|
+
resourceIdentifier: string | undefined;
|
|
2680
|
+
/**
|
|
2681
|
+
* <p>The input source that discovered the resource.</p>
|
|
2682
|
+
* @public
|
|
2683
|
+
*/
|
|
2684
|
+
inputSource?: InputSource | undefined;
|
|
2685
|
+
/**
|
|
2686
|
+
* <p>The resource details.</p>
|
|
2687
|
+
* @public
|
|
2688
|
+
*/
|
|
2689
|
+
resource: Resource | undefined;
|
|
2690
|
+
}
|
|
2691
|
+
/**
|
|
2692
|
+
* @public
|
|
2693
|
+
*/
|
|
2694
|
+
export interface ListResourcesResponse {
|
|
2695
|
+
/**
|
|
2696
|
+
* <p>The service function identifier for the returned resources.</p>
|
|
2697
|
+
* @public
|
|
2698
|
+
*/
|
|
2699
|
+
serviceFunctionId?: string | undefined;
|
|
2700
|
+
/**
|
|
2701
|
+
* <p>The list of service resources.</p>
|
|
2702
|
+
* @public
|
|
2703
|
+
*/
|
|
2704
|
+
serviceResources?: ServiceResource[] | undefined;
|
|
2705
|
+
/**
|
|
2706
|
+
* <p>Pagination token.</p>
|
|
2707
|
+
* @public
|
|
2708
|
+
*/
|
|
2709
|
+
nextToken?: string | undefined;
|
|
2710
|
+
}
|
|
2711
|
+
/**
|
|
2712
|
+
* @public
|
|
2713
|
+
*/
|
|
2714
|
+
export interface ListServiceEventsRequest {
|
|
2715
|
+
/**
|
|
2716
|
+
* <p>ARN identifier.</p>
|
|
2717
|
+
* @public
|
|
2718
|
+
*/
|
|
2719
|
+
serviceArn: string | undefined;
|
|
2720
|
+
/**
|
|
2721
|
+
* <p>Filter events by type.</p>
|
|
2722
|
+
* @public
|
|
2723
|
+
*/
|
|
2724
|
+
eventTypes?: ServiceEventType[] | undefined;
|
|
2725
|
+
/**
|
|
2726
|
+
* <p>The start time for filtering events.</p>
|
|
2727
|
+
* @public
|
|
2728
|
+
*/
|
|
2729
|
+
startTime?: Date | undefined;
|
|
2730
|
+
/**
|
|
2731
|
+
* <p>The end time for filtering events.</p>
|
|
2732
|
+
* @public
|
|
2733
|
+
*/
|
|
2734
|
+
endTime?: Date | undefined;
|
|
2735
|
+
/**
|
|
2736
|
+
* <p>Pagination page size.</p>
|
|
2737
|
+
* @public
|
|
2738
|
+
*/
|
|
2739
|
+
maxResults?: number | undefined;
|
|
2740
|
+
/**
|
|
2741
|
+
* <p>Pagination token.</p>
|
|
2742
|
+
* @public
|
|
2743
|
+
*/
|
|
2744
|
+
nextToken?: string | undefined;
|
|
2745
|
+
}
|
|
2746
|
+
/**
|
|
2747
|
+
* <p>Metadata for a service achievability updated event.</p>
|
|
2748
|
+
* @public
|
|
2749
|
+
*/
|
|
2750
|
+
export interface ServiceAchievabilityUpdatedMetadata {
|
|
2751
|
+
/**
|
|
2752
|
+
* <p>The assessment identifier that triggered the update.</p>
|
|
2753
|
+
* @public
|
|
2754
|
+
*/
|
|
2755
|
+
assessmentId?: string | undefined;
|
|
2756
|
+
/**
|
|
2757
|
+
* <p>The updated achievability status of the availability SLO.</p>
|
|
2758
|
+
* @public
|
|
2759
|
+
*/
|
|
2760
|
+
availabilitySlo?: string | undefined;
|
|
2761
|
+
/**
|
|
2762
|
+
* <p>The updated achievability status of the multi-AZ RTO and RPO targets.</p>
|
|
2763
|
+
* @public
|
|
2764
|
+
*/
|
|
2765
|
+
multiAzRtoRpo?: string | undefined;
|
|
2766
|
+
/**
|
|
2767
|
+
* <p>The updated achievability status of the multi-Region RTO and RPO targets.</p>
|
|
2768
|
+
* @public
|
|
2769
|
+
*/
|
|
2770
|
+
multiRegionRtoRpo?: string | undefined;
|
|
2771
|
+
}
|
|
2772
|
+
/**
|
|
2773
|
+
* <p>Metadata for a service created event.</p>
|
|
2774
|
+
* @public
|
|
2775
|
+
*/
|
|
2776
|
+
export interface ServiceCreatedMetadata {
|
|
2777
|
+
}
|
|
2778
|
+
/**
|
|
2779
|
+
* <p>Metadata for a service deleted event.</p>
|
|
2780
|
+
* @public
|
|
2781
|
+
*/
|
|
2782
|
+
export interface ServiceDeletedMetadata {
|
|
2783
|
+
}
|
|
2784
|
+
/**
|
|
2785
|
+
* <p>Metadata for a service function created event.</p>
|
|
2786
|
+
* @public
|
|
2787
|
+
*/
|
|
2788
|
+
export interface ServiceFunctionCreatedMetadata {
|
|
2789
|
+
/**
|
|
2790
|
+
* <p>The identifier of the created service function.</p>
|
|
2791
|
+
* @public
|
|
2792
|
+
*/
|
|
2793
|
+
serviceFunctionId?: string | undefined;
|
|
2794
|
+
/**
|
|
2795
|
+
* <p>The name of the created service function.</p>
|
|
2796
|
+
* @public
|
|
2797
|
+
*/
|
|
2798
|
+
serviceFunctionName?: string | undefined;
|
|
2799
|
+
}
|
|
2800
|
+
/**
|
|
2801
|
+
* <p>Metadata for a service function deleted event.</p>
|
|
2802
|
+
* @public
|
|
2803
|
+
*/
|
|
2804
|
+
export interface ServiceFunctionDeletedMetadata {
|
|
2805
|
+
/**
|
|
2806
|
+
* <p>The identifier of the deleted service function.</p>
|
|
2807
|
+
* @public
|
|
2808
|
+
*/
|
|
2809
|
+
serviceFunctionId?: string | undefined;
|
|
2810
|
+
/**
|
|
2811
|
+
* <p>The name of the deleted service function.</p>
|
|
2812
|
+
* @public
|
|
2813
|
+
*/
|
|
2814
|
+
serviceFunctionName?: string | undefined;
|
|
2815
|
+
}
|
|
2816
|
+
/**
|
|
2817
|
+
* <p>Metadata for a service function resources added event.</p>
|
|
2818
|
+
* @public
|
|
2819
|
+
*/
|
|
2820
|
+
export interface ServiceFunctionResourcesAddedMetadata {
|
|
2821
|
+
/**
|
|
2822
|
+
* <p>The identifier of the service function.</p>
|
|
2823
|
+
* @public
|
|
2824
|
+
*/
|
|
2825
|
+
serviceFunctionId?: string | undefined;
|
|
2826
|
+
/**
|
|
2827
|
+
* <p>The name of the service function.</p>
|
|
2828
|
+
* @public
|
|
2829
|
+
*/
|
|
2830
|
+
serviceFunctionName?: string | undefined;
|
|
2831
|
+
/**
|
|
2832
|
+
* <p>The list of resource ARNs that were added.</p>
|
|
2833
|
+
* @public
|
|
2834
|
+
*/
|
|
2835
|
+
resourcesAdded?: string[] | undefined;
|
|
2836
|
+
}
|
|
2837
|
+
/**
|
|
2838
|
+
* <p>Metadata for a service function resources removed event.</p>
|
|
2839
|
+
* @public
|
|
2840
|
+
*/
|
|
2841
|
+
export interface ServiceFunctionResourcesRemovedMetadata {
|
|
2842
|
+
/**
|
|
2843
|
+
* <p>The identifier of the service function.</p>
|
|
2844
|
+
* @public
|
|
2845
|
+
*/
|
|
2846
|
+
serviceFunctionId?: string | undefined;
|
|
2847
|
+
/**
|
|
2848
|
+
* <p>The name of the service function.</p>
|
|
2849
|
+
* @public
|
|
2850
|
+
*/
|
|
2851
|
+
serviceFunctionName?: string | undefined;
|
|
2852
|
+
/**
|
|
2853
|
+
* <p>The list of resource ARNs that were removed.</p>
|
|
2854
|
+
* @public
|
|
2855
|
+
*/
|
|
2856
|
+
resourcesRemoved?: string[] | undefined;
|
|
2857
|
+
}
|
|
2858
|
+
/**
|
|
2859
|
+
* <p>Metadata for a service function updated event.</p>
|
|
2860
|
+
* @public
|
|
2861
|
+
*/
|
|
2862
|
+
export interface ServiceFunctionUpdatedMetadata {
|
|
2863
|
+
/**
|
|
2864
|
+
* <p>The identifier of the service function.</p>
|
|
2865
|
+
* @public
|
|
2866
|
+
*/
|
|
2867
|
+
serviceFunctionId?: string | undefined;
|
|
2868
|
+
/**
|
|
2869
|
+
* <p>The name of the service function.</p>
|
|
2870
|
+
* @public
|
|
2871
|
+
*/
|
|
2872
|
+
serviceFunctionName?: string | undefined;
|
|
2873
|
+
/**
|
|
2874
|
+
* <p>The list of resource ARNs that were added.</p>
|
|
2875
|
+
* @public
|
|
2876
|
+
*/
|
|
2877
|
+
resourcesAdded?: string[] | undefined;
|
|
2878
|
+
/**
|
|
2879
|
+
* <p>The list of resource ARNs that were removed.</p>
|
|
2880
|
+
* @public
|
|
2881
|
+
*/
|
|
2882
|
+
resourcesRemoved?: string[] | undefined;
|
|
2883
|
+
}
|
|
2884
|
+
/**
|
|
2885
|
+
* <p>Metadata for a service input sources updated event.</p>
|
|
2886
|
+
* @public
|
|
2887
|
+
*/
|
|
2888
|
+
export interface ServiceInputSourcesUpdatedMetadata {
|
|
2889
|
+
}
|
|
2890
|
+
/**
|
|
2891
|
+
* <p>Metadata for a service policy associated event.</p>
|
|
2892
|
+
* @public
|
|
2893
|
+
*/
|
|
2894
|
+
export interface ServicePolicyAssociatedMetadata {
|
|
2895
|
+
/**
|
|
2896
|
+
* <p>The name of the associated policy.</p>
|
|
2897
|
+
* @public
|
|
2898
|
+
*/
|
|
2899
|
+
policyName?: string | undefined;
|
|
2900
|
+
/**
|
|
2901
|
+
* <p>ARN identifier.</p>
|
|
2902
|
+
* @public
|
|
2903
|
+
*/
|
|
2904
|
+
policyArn?: string | undefined;
|
|
2905
|
+
}
|
|
2906
|
+
/**
|
|
2907
|
+
* <p>Metadata for a service policy disassociated event.</p>
|
|
2908
|
+
* @public
|
|
2909
|
+
*/
|
|
2910
|
+
export interface ServicePolicyDisassociatedMetadata {
|
|
2911
|
+
/**
|
|
2912
|
+
* <p>The name of the disassociated policy.</p>
|
|
2913
|
+
* @public
|
|
2914
|
+
*/
|
|
2915
|
+
policyName?: string | undefined;
|
|
2916
|
+
/**
|
|
2917
|
+
* <p>ARN identifier.</p>
|
|
2918
|
+
* @public
|
|
2919
|
+
*/
|
|
2920
|
+
policyArn?: string | undefined;
|
|
2921
|
+
}
|
|
2922
|
+
/**
|
|
2923
|
+
* <p>Metadata for a service resources associated event.</p>
|
|
2924
|
+
* @public
|
|
2925
|
+
*/
|
|
2926
|
+
export interface ServiceResourcesAssociatedMetadata {
|
|
2927
|
+
/**
|
|
2928
|
+
* <p>The number of resources associated.</p>
|
|
2929
|
+
* @public
|
|
2930
|
+
*/
|
|
2931
|
+
resourceCount?: number | undefined;
|
|
2932
|
+
/**
|
|
2933
|
+
* <p>The types of resources associated.</p>
|
|
2934
|
+
* @public
|
|
2935
|
+
*/
|
|
2936
|
+
resourceTypes?: string[] | undefined;
|
|
2937
|
+
}
|
|
2938
|
+
/**
|
|
2939
|
+
* <p>Metadata for a service resources disassociated event.</p>
|
|
2940
|
+
* @public
|
|
2941
|
+
*/
|
|
2942
|
+
export interface ServiceResourcesDisassociatedMetadata {
|
|
2943
|
+
/**
|
|
2944
|
+
* <p>The number of resources disassociated.</p>
|
|
2945
|
+
* @public
|
|
2946
|
+
*/
|
|
2947
|
+
resourceCount?: number | undefined;
|
|
2948
|
+
/**
|
|
2949
|
+
* <p>The types of resources disassociated.</p>
|
|
2950
|
+
* @public
|
|
2951
|
+
*/
|
|
2952
|
+
resourceTypes?: string[] | undefined;
|
|
2953
|
+
}
|
|
2954
|
+
/**
|
|
2955
|
+
* <p>Metadata for a service system associated event.</p>
|
|
2956
|
+
* @public
|
|
2957
|
+
*/
|
|
2958
|
+
export interface ServiceSystemAssociatedMetadata {
|
|
2959
|
+
/**
|
|
2960
|
+
* <p>The name of the associated system.</p>
|
|
2961
|
+
* @public
|
|
2962
|
+
*/
|
|
2963
|
+
systemName?: string | undefined;
|
|
2964
|
+
/**
|
|
2965
|
+
* <p>ARN identifier.</p>
|
|
2966
|
+
* @public
|
|
2967
|
+
*/
|
|
2968
|
+
systemArn?: string | undefined;
|
|
2969
|
+
}
|
|
2970
|
+
/**
|
|
2971
|
+
* <p>Metadata for a service system disassociated event.</p>
|
|
2972
|
+
* @public
|
|
2973
|
+
*/
|
|
2974
|
+
export interface ServiceSystemDisassociatedMetadata {
|
|
2975
|
+
/**
|
|
2976
|
+
* <p>The identifier of the disassociated system.</p>
|
|
2977
|
+
* @public
|
|
2978
|
+
*/
|
|
2979
|
+
systemId?: string | undefined;
|
|
2980
|
+
/**
|
|
2981
|
+
* <p>The name of the disassociated system.</p>
|
|
2982
|
+
* @public
|
|
2983
|
+
*/
|
|
2984
|
+
systemName?: string | undefined;
|
|
2985
|
+
/**
|
|
2986
|
+
* <p>ARN identifier.</p>
|
|
2987
|
+
* @public
|
|
2988
|
+
*/
|
|
2989
|
+
systemArn?: string | undefined;
|
|
2990
|
+
}
|
|
2991
|
+
/**
|
|
2992
|
+
* <p>Metadata for a service workflow updated event.</p>
|
|
2993
|
+
* @public
|
|
2994
|
+
*/
|
|
2995
|
+
export interface ServiceWorkflowUpdatedMetadata {
|
|
2996
|
+
/**
|
|
2997
|
+
* <p>The identifier of the service function.</p>
|
|
2998
|
+
* @public
|
|
2999
|
+
*/
|
|
3000
|
+
serviceFunctionId?: string | undefined;
|
|
3001
|
+
/**
|
|
3002
|
+
* <p>The name of the service function.</p>
|
|
3003
|
+
* @public
|
|
3004
|
+
*/
|
|
3005
|
+
serviceFunctionName?: string | undefined;
|
|
3006
|
+
}
|
|
3007
|
+
/**
|
|
3008
|
+
* <p>Type-specific metadata for each service event type.</p>
|
|
3009
|
+
* @public
|
|
3010
|
+
*/
|
|
3011
|
+
export type ServiceEventMetadata = ServiceEventMetadata.AssertionCreatedMember | ServiceEventMetadata.AssertionDeletedMember | ServiceEventMetadata.AssertionUpdatedMember | ServiceEventMetadata.ServiceAchievabilityUpdatedMember | ServiceEventMetadata.ServiceCreatedMember | ServiceEventMetadata.ServiceDeletedMember | ServiceEventMetadata.ServiceFunctionCreatedMember | ServiceEventMetadata.ServiceFunctionDeletedMember | ServiceEventMetadata.ServiceFunctionResourcesAddedMember | ServiceEventMetadata.ServiceFunctionResourcesRemovedMember | ServiceEventMetadata.ServiceFunctionUpdatedMember | ServiceEventMetadata.ServiceInputSourcesUpdatedMember | ServiceEventMetadata.ServicePolicyAssociatedMember | ServiceEventMetadata.ServicePolicyDisassociatedMember | ServiceEventMetadata.ServiceResourcesAssociatedMember | ServiceEventMetadata.ServiceResourcesDisassociatedMember | ServiceEventMetadata.ServiceSystemAssociatedMember | ServiceEventMetadata.ServiceSystemDisassociatedMember | ServiceEventMetadata.ServiceWorkflowUpdatedMember | ServiceEventMetadata.$UnknownMember;
|
|
3012
|
+
/**
|
|
3013
|
+
* @public
|
|
3014
|
+
*/
|
|
3015
|
+
export declare namespace ServiceEventMetadata {
|
|
3016
|
+
/**
|
|
3017
|
+
* <p>Metadata for a service created event.</p>
|
|
3018
|
+
* @public
|
|
3019
|
+
*/
|
|
3020
|
+
interface ServiceCreatedMember {
|
|
3021
|
+
serviceCreated: ServiceCreatedMetadata;
|
|
3022
|
+
serviceDeleted?: never;
|
|
3023
|
+
serviceSystemAssociated?: never;
|
|
3024
|
+
serviceSystemDisassociated?: never;
|
|
3025
|
+
serviceResourcesAssociated?: never;
|
|
3026
|
+
serviceResourcesDisassociated?: never;
|
|
3027
|
+
serviceWorkflowUpdated?: never;
|
|
3028
|
+
serviceInputSourcesUpdated?: never;
|
|
3029
|
+
servicePolicyAssociated?: never;
|
|
3030
|
+
servicePolicyDisassociated?: never;
|
|
3031
|
+
serviceFunctionCreated?: never;
|
|
3032
|
+
serviceFunctionUpdated?: never;
|
|
3033
|
+
serviceFunctionDeleted?: never;
|
|
3034
|
+
serviceFunctionResourcesAdded?: never;
|
|
3035
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3036
|
+
serviceAchievabilityUpdated?: never;
|
|
3037
|
+
assertionCreated?: never;
|
|
3038
|
+
assertionUpdated?: never;
|
|
3039
|
+
assertionDeleted?: never;
|
|
3040
|
+
$unknown?: never;
|
|
3041
|
+
}
|
|
3042
|
+
/**
|
|
3043
|
+
* <p>Metadata for a service deleted event.</p>
|
|
3044
|
+
* @public
|
|
3045
|
+
*/
|
|
3046
|
+
interface ServiceDeletedMember {
|
|
3047
|
+
serviceCreated?: never;
|
|
3048
|
+
serviceDeleted: ServiceDeletedMetadata;
|
|
3049
|
+
serviceSystemAssociated?: never;
|
|
3050
|
+
serviceSystemDisassociated?: never;
|
|
3051
|
+
serviceResourcesAssociated?: never;
|
|
3052
|
+
serviceResourcesDisassociated?: never;
|
|
3053
|
+
serviceWorkflowUpdated?: never;
|
|
3054
|
+
serviceInputSourcesUpdated?: never;
|
|
3055
|
+
servicePolicyAssociated?: never;
|
|
3056
|
+
servicePolicyDisassociated?: never;
|
|
3057
|
+
serviceFunctionCreated?: never;
|
|
3058
|
+
serviceFunctionUpdated?: never;
|
|
3059
|
+
serviceFunctionDeleted?: never;
|
|
3060
|
+
serviceFunctionResourcesAdded?: never;
|
|
3061
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3062
|
+
serviceAchievabilityUpdated?: never;
|
|
3063
|
+
assertionCreated?: never;
|
|
3064
|
+
assertionUpdated?: never;
|
|
3065
|
+
assertionDeleted?: never;
|
|
3066
|
+
$unknown?: never;
|
|
3067
|
+
}
|
|
3068
|
+
/**
|
|
3069
|
+
* <p>Metadata for a service system associated event.</p>
|
|
3070
|
+
* @public
|
|
3071
|
+
*/
|
|
3072
|
+
interface ServiceSystemAssociatedMember {
|
|
3073
|
+
serviceCreated?: never;
|
|
3074
|
+
serviceDeleted?: never;
|
|
3075
|
+
serviceSystemAssociated: ServiceSystemAssociatedMetadata;
|
|
3076
|
+
serviceSystemDisassociated?: never;
|
|
3077
|
+
serviceResourcesAssociated?: never;
|
|
3078
|
+
serviceResourcesDisassociated?: never;
|
|
3079
|
+
serviceWorkflowUpdated?: never;
|
|
3080
|
+
serviceInputSourcesUpdated?: never;
|
|
3081
|
+
servicePolicyAssociated?: never;
|
|
3082
|
+
servicePolicyDisassociated?: never;
|
|
3083
|
+
serviceFunctionCreated?: never;
|
|
3084
|
+
serviceFunctionUpdated?: never;
|
|
3085
|
+
serviceFunctionDeleted?: never;
|
|
3086
|
+
serviceFunctionResourcesAdded?: never;
|
|
3087
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3088
|
+
serviceAchievabilityUpdated?: never;
|
|
3089
|
+
assertionCreated?: never;
|
|
3090
|
+
assertionUpdated?: never;
|
|
3091
|
+
assertionDeleted?: never;
|
|
3092
|
+
$unknown?: never;
|
|
3093
|
+
}
|
|
3094
|
+
/**
|
|
3095
|
+
* <p>Metadata for a service system disassociated event.</p>
|
|
3096
|
+
* @public
|
|
3097
|
+
*/
|
|
3098
|
+
interface ServiceSystemDisassociatedMember {
|
|
3099
|
+
serviceCreated?: never;
|
|
3100
|
+
serviceDeleted?: never;
|
|
3101
|
+
serviceSystemAssociated?: never;
|
|
3102
|
+
serviceSystemDisassociated: ServiceSystemDisassociatedMetadata;
|
|
3103
|
+
serviceResourcesAssociated?: never;
|
|
3104
|
+
serviceResourcesDisassociated?: never;
|
|
3105
|
+
serviceWorkflowUpdated?: never;
|
|
3106
|
+
serviceInputSourcesUpdated?: never;
|
|
3107
|
+
servicePolicyAssociated?: never;
|
|
3108
|
+
servicePolicyDisassociated?: never;
|
|
3109
|
+
serviceFunctionCreated?: never;
|
|
3110
|
+
serviceFunctionUpdated?: never;
|
|
3111
|
+
serviceFunctionDeleted?: never;
|
|
3112
|
+
serviceFunctionResourcesAdded?: never;
|
|
3113
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3114
|
+
serviceAchievabilityUpdated?: never;
|
|
3115
|
+
assertionCreated?: never;
|
|
3116
|
+
assertionUpdated?: never;
|
|
3117
|
+
assertionDeleted?: never;
|
|
3118
|
+
$unknown?: never;
|
|
3119
|
+
}
|
|
3120
|
+
/**
|
|
3121
|
+
* <p>Metadata for a service resources associated event.</p>
|
|
3122
|
+
* @public
|
|
3123
|
+
*/
|
|
3124
|
+
interface ServiceResourcesAssociatedMember {
|
|
3125
|
+
serviceCreated?: never;
|
|
3126
|
+
serviceDeleted?: never;
|
|
3127
|
+
serviceSystemAssociated?: never;
|
|
3128
|
+
serviceSystemDisassociated?: never;
|
|
3129
|
+
serviceResourcesAssociated: ServiceResourcesAssociatedMetadata;
|
|
3130
|
+
serviceResourcesDisassociated?: never;
|
|
3131
|
+
serviceWorkflowUpdated?: never;
|
|
3132
|
+
serviceInputSourcesUpdated?: never;
|
|
3133
|
+
servicePolicyAssociated?: never;
|
|
3134
|
+
servicePolicyDisassociated?: never;
|
|
3135
|
+
serviceFunctionCreated?: never;
|
|
3136
|
+
serviceFunctionUpdated?: never;
|
|
3137
|
+
serviceFunctionDeleted?: never;
|
|
3138
|
+
serviceFunctionResourcesAdded?: never;
|
|
3139
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3140
|
+
serviceAchievabilityUpdated?: never;
|
|
3141
|
+
assertionCreated?: never;
|
|
3142
|
+
assertionUpdated?: never;
|
|
3143
|
+
assertionDeleted?: never;
|
|
3144
|
+
$unknown?: never;
|
|
3145
|
+
}
|
|
3146
|
+
/**
|
|
3147
|
+
* <p>Metadata for a service resources disassociated event.</p>
|
|
3148
|
+
* @public
|
|
3149
|
+
*/
|
|
3150
|
+
interface ServiceResourcesDisassociatedMember {
|
|
3151
|
+
serviceCreated?: never;
|
|
3152
|
+
serviceDeleted?: never;
|
|
3153
|
+
serviceSystemAssociated?: never;
|
|
3154
|
+
serviceSystemDisassociated?: never;
|
|
3155
|
+
serviceResourcesAssociated?: never;
|
|
3156
|
+
serviceResourcesDisassociated: ServiceResourcesDisassociatedMetadata;
|
|
3157
|
+
serviceWorkflowUpdated?: never;
|
|
3158
|
+
serviceInputSourcesUpdated?: never;
|
|
3159
|
+
servicePolicyAssociated?: never;
|
|
3160
|
+
servicePolicyDisassociated?: never;
|
|
3161
|
+
serviceFunctionCreated?: never;
|
|
3162
|
+
serviceFunctionUpdated?: never;
|
|
3163
|
+
serviceFunctionDeleted?: never;
|
|
3164
|
+
serviceFunctionResourcesAdded?: never;
|
|
3165
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3166
|
+
serviceAchievabilityUpdated?: never;
|
|
3167
|
+
assertionCreated?: never;
|
|
3168
|
+
assertionUpdated?: never;
|
|
3169
|
+
assertionDeleted?: never;
|
|
3170
|
+
$unknown?: never;
|
|
3171
|
+
}
|
|
3172
|
+
/**
|
|
3173
|
+
* <p>Metadata for a service workflow updated event.</p>
|
|
3174
|
+
* @public
|
|
3175
|
+
*/
|
|
3176
|
+
interface ServiceWorkflowUpdatedMember {
|
|
3177
|
+
serviceCreated?: never;
|
|
3178
|
+
serviceDeleted?: never;
|
|
3179
|
+
serviceSystemAssociated?: never;
|
|
3180
|
+
serviceSystemDisassociated?: never;
|
|
3181
|
+
serviceResourcesAssociated?: never;
|
|
3182
|
+
serviceResourcesDisassociated?: never;
|
|
3183
|
+
serviceWorkflowUpdated: ServiceWorkflowUpdatedMetadata;
|
|
3184
|
+
serviceInputSourcesUpdated?: never;
|
|
3185
|
+
servicePolicyAssociated?: never;
|
|
3186
|
+
servicePolicyDisassociated?: never;
|
|
3187
|
+
serviceFunctionCreated?: never;
|
|
3188
|
+
serviceFunctionUpdated?: never;
|
|
3189
|
+
serviceFunctionDeleted?: never;
|
|
3190
|
+
serviceFunctionResourcesAdded?: never;
|
|
3191
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3192
|
+
serviceAchievabilityUpdated?: never;
|
|
3193
|
+
assertionCreated?: never;
|
|
3194
|
+
assertionUpdated?: never;
|
|
3195
|
+
assertionDeleted?: never;
|
|
3196
|
+
$unknown?: never;
|
|
3197
|
+
}
|
|
3198
|
+
/**
|
|
3199
|
+
* <p>Metadata for a service input sources updated event.</p>
|
|
3200
|
+
* @public
|
|
3201
|
+
*/
|
|
3202
|
+
interface ServiceInputSourcesUpdatedMember {
|
|
3203
|
+
serviceCreated?: never;
|
|
3204
|
+
serviceDeleted?: never;
|
|
3205
|
+
serviceSystemAssociated?: never;
|
|
3206
|
+
serviceSystemDisassociated?: never;
|
|
3207
|
+
serviceResourcesAssociated?: never;
|
|
3208
|
+
serviceResourcesDisassociated?: never;
|
|
3209
|
+
serviceWorkflowUpdated?: never;
|
|
3210
|
+
serviceInputSourcesUpdated: ServiceInputSourcesUpdatedMetadata;
|
|
3211
|
+
servicePolicyAssociated?: never;
|
|
3212
|
+
servicePolicyDisassociated?: never;
|
|
3213
|
+
serviceFunctionCreated?: never;
|
|
3214
|
+
serviceFunctionUpdated?: never;
|
|
3215
|
+
serviceFunctionDeleted?: never;
|
|
3216
|
+
serviceFunctionResourcesAdded?: never;
|
|
3217
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3218
|
+
serviceAchievabilityUpdated?: never;
|
|
3219
|
+
assertionCreated?: never;
|
|
3220
|
+
assertionUpdated?: never;
|
|
3221
|
+
assertionDeleted?: never;
|
|
3222
|
+
$unknown?: never;
|
|
3223
|
+
}
|
|
3224
|
+
/**
|
|
3225
|
+
* <p>Metadata for a service policy associated event.</p>
|
|
3226
|
+
* @public
|
|
3227
|
+
*/
|
|
3228
|
+
interface ServicePolicyAssociatedMember {
|
|
3229
|
+
serviceCreated?: never;
|
|
3230
|
+
serviceDeleted?: never;
|
|
3231
|
+
serviceSystemAssociated?: never;
|
|
3232
|
+
serviceSystemDisassociated?: never;
|
|
3233
|
+
serviceResourcesAssociated?: never;
|
|
3234
|
+
serviceResourcesDisassociated?: never;
|
|
3235
|
+
serviceWorkflowUpdated?: never;
|
|
3236
|
+
serviceInputSourcesUpdated?: never;
|
|
3237
|
+
servicePolicyAssociated: ServicePolicyAssociatedMetadata;
|
|
3238
|
+
servicePolicyDisassociated?: never;
|
|
3239
|
+
serviceFunctionCreated?: never;
|
|
3240
|
+
serviceFunctionUpdated?: never;
|
|
3241
|
+
serviceFunctionDeleted?: never;
|
|
3242
|
+
serviceFunctionResourcesAdded?: never;
|
|
3243
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3244
|
+
serviceAchievabilityUpdated?: never;
|
|
3245
|
+
assertionCreated?: never;
|
|
3246
|
+
assertionUpdated?: never;
|
|
3247
|
+
assertionDeleted?: never;
|
|
3248
|
+
$unknown?: never;
|
|
3249
|
+
}
|
|
3250
|
+
/**
|
|
3251
|
+
* <p>Metadata for a service policy disassociated event.</p>
|
|
3252
|
+
* @public
|
|
3253
|
+
*/
|
|
3254
|
+
interface ServicePolicyDisassociatedMember {
|
|
3255
|
+
serviceCreated?: never;
|
|
3256
|
+
serviceDeleted?: never;
|
|
3257
|
+
serviceSystemAssociated?: never;
|
|
3258
|
+
serviceSystemDisassociated?: never;
|
|
3259
|
+
serviceResourcesAssociated?: never;
|
|
3260
|
+
serviceResourcesDisassociated?: never;
|
|
3261
|
+
serviceWorkflowUpdated?: never;
|
|
3262
|
+
serviceInputSourcesUpdated?: never;
|
|
3263
|
+
servicePolicyAssociated?: never;
|
|
3264
|
+
servicePolicyDisassociated: ServicePolicyDisassociatedMetadata;
|
|
3265
|
+
serviceFunctionCreated?: never;
|
|
3266
|
+
serviceFunctionUpdated?: never;
|
|
3267
|
+
serviceFunctionDeleted?: never;
|
|
3268
|
+
serviceFunctionResourcesAdded?: never;
|
|
3269
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3270
|
+
serviceAchievabilityUpdated?: never;
|
|
3271
|
+
assertionCreated?: never;
|
|
3272
|
+
assertionUpdated?: never;
|
|
3273
|
+
assertionDeleted?: never;
|
|
3274
|
+
$unknown?: never;
|
|
3275
|
+
}
|
|
3276
|
+
/**
|
|
3277
|
+
* <p>Metadata for a service function created event.</p>
|
|
3278
|
+
* @public
|
|
3279
|
+
*/
|
|
3280
|
+
interface ServiceFunctionCreatedMember {
|
|
3281
|
+
serviceCreated?: never;
|
|
3282
|
+
serviceDeleted?: never;
|
|
3283
|
+
serviceSystemAssociated?: never;
|
|
3284
|
+
serviceSystemDisassociated?: never;
|
|
3285
|
+
serviceResourcesAssociated?: never;
|
|
3286
|
+
serviceResourcesDisassociated?: never;
|
|
3287
|
+
serviceWorkflowUpdated?: never;
|
|
3288
|
+
serviceInputSourcesUpdated?: never;
|
|
3289
|
+
servicePolicyAssociated?: never;
|
|
3290
|
+
servicePolicyDisassociated?: never;
|
|
3291
|
+
serviceFunctionCreated: ServiceFunctionCreatedMetadata;
|
|
3292
|
+
serviceFunctionUpdated?: never;
|
|
3293
|
+
serviceFunctionDeleted?: never;
|
|
3294
|
+
serviceFunctionResourcesAdded?: never;
|
|
3295
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3296
|
+
serviceAchievabilityUpdated?: never;
|
|
3297
|
+
assertionCreated?: never;
|
|
3298
|
+
assertionUpdated?: never;
|
|
3299
|
+
assertionDeleted?: never;
|
|
3300
|
+
$unknown?: never;
|
|
3301
|
+
}
|
|
3302
|
+
/**
|
|
3303
|
+
* <p>Metadata for a service function updated event.</p>
|
|
3304
|
+
* @public
|
|
3305
|
+
*/
|
|
3306
|
+
interface ServiceFunctionUpdatedMember {
|
|
3307
|
+
serviceCreated?: never;
|
|
3308
|
+
serviceDeleted?: never;
|
|
3309
|
+
serviceSystemAssociated?: never;
|
|
3310
|
+
serviceSystemDisassociated?: never;
|
|
3311
|
+
serviceResourcesAssociated?: never;
|
|
3312
|
+
serviceResourcesDisassociated?: never;
|
|
3313
|
+
serviceWorkflowUpdated?: never;
|
|
3314
|
+
serviceInputSourcesUpdated?: never;
|
|
3315
|
+
servicePolicyAssociated?: never;
|
|
3316
|
+
servicePolicyDisassociated?: never;
|
|
3317
|
+
serviceFunctionCreated?: never;
|
|
3318
|
+
serviceFunctionUpdated: ServiceFunctionUpdatedMetadata;
|
|
3319
|
+
serviceFunctionDeleted?: never;
|
|
3320
|
+
serviceFunctionResourcesAdded?: never;
|
|
3321
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3322
|
+
serviceAchievabilityUpdated?: never;
|
|
3323
|
+
assertionCreated?: never;
|
|
3324
|
+
assertionUpdated?: never;
|
|
3325
|
+
assertionDeleted?: never;
|
|
3326
|
+
$unknown?: never;
|
|
3327
|
+
}
|
|
3328
|
+
/**
|
|
3329
|
+
* <p>Metadata for a service function deleted event.</p>
|
|
3330
|
+
* @public
|
|
3331
|
+
*/
|
|
3332
|
+
interface ServiceFunctionDeletedMember {
|
|
3333
|
+
serviceCreated?: never;
|
|
3334
|
+
serviceDeleted?: never;
|
|
3335
|
+
serviceSystemAssociated?: never;
|
|
3336
|
+
serviceSystemDisassociated?: never;
|
|
3337
|
+
serviceResourcesAssociated?: never;
|
|
3338
|
+
serviceResourcesDisassociated?: never;
|
|
3339
|
+
serviceWorkflowUpdated?: never;
|
|
3340
|
+
serviceInputSourcesUpdated?: never;
|
|
3341
|
+
servicePolicyAssociated?: never;
|
|
3342
|
+
servicePolicyDisassociated?: never;
|
|
3343
|
+
serviceFunctionCreated?: never;
|
|
3344
|
+
serviceFunctionUpdated?: never;
|
|
3345
|
+
serviceFunctionDeleted: ServiceFunctionDeletedMetadata;
|
|
3346
|
+
serviceFunctionResourcesAdded?: never;
|
|
3347
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3348
|
+
serviceAchievabilityUpdated?: never;
|
|
3349
|
+
assertionCreated?: never;
|
|
3350
|
+
assertionUpdated?: never;
|
|
3351
|
+
assertionDeleted?: never;
|
|
3352
|
+
$unknown?: never;
|
|
3353
|
+
}
|
|
3354
|
+
/**
|
|
3355
|
+
* <p>Metadata for a service function resources added event.</p>
|
|
3356
|
+
* @public
|
|
3357
|
+
*/
|
|
3358
|
+
interface ServiceFunctionResourcesAddedMember {
|
|
3359
|
+
serviceCreated?: never;
|
|
3360
|
+
serviceDeleted?: never;
|
|
3361
|
+
serviceSystemAssociated?: never;
|
|
3362
|
+
serviceSystemDisassociated?: never;
|
|
3363
|
+
serviceResourcesAssociated?: never;
|
|
3364
|
+
serviceResourcesDisassociated?: never;
|
|
3365
|
+
serviceWorkflowUpdated?: never;
|
|
3366
|
+
serviceInputSourcesUpdated?: never;
|
|
3367
|
+
servicePolicyAssociated?: never;
|
|
3368
|
+
servicePolicyDisassociated?: never;
|
|
3369
|
+
serviceFunctionCreated?: never;
|
|
3370
|
+
serviceFunctionUpdated?: never;
|
|
3371
|
+
serviceFunctionDeleted?: never;
|
|
3372
|
+
serviceFunctionResourcesAdded: ServiceFunctionResourcesAddedMetadata;
|
|
3373
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3374
|
+
serviceAchievabilityUpdated?: never;
|
|
3375
|
+
assertionCreated?: never;
|
|
3376
|
+
assertionUpdated?: never;
|
|
3377
|
+
assertionDeleted?: never;
|
|
3378
|
+
$unknown?: never;
|
|
3379
|
+
}
|
|
3380
|
+
/**
|
|
3381
|
+
* <p>Metadata for a service function resources removed event.</p>
|
|
3382
|
+
* @public
|
|
3383
|
+
*/
|
|
3384
|
+
interface ServiceFunctionResourcesRemovedMember {
|
|
3385
|
+
serviceCreated?: never;
|
|
3386
|
+
serviceDeleted?: never;
|
|
3387
|
+
serviceSystemAssociated?: never;
|
|
3388
|
+
serviceSystemDisassociated?: never;
|
|
3389
|
+
serviceResourcesAssociated?: never;
|
|
3390
|
+
serviceResourcesDisassociated?: never;
|
|
3391
|
+
serviceWorkflowUpdated?: never;
|
|
3392
|
+
serviceInputSourcesUpdated?: never;
|
|
3393
|
+
servicePolicyAssociated?: never;
|
|
3394
|
+
servicePolicyDisassociated?: never;
|
|
3395
|
+
serviceFunctionCreated?: never;
|
|
3396
|
+
serviceFunctionUpdated?: never;
|
|
3397
|
+
serviceFunctionDeleted?: never;
|
|
3398
|
+
serviceFunctionResourcesAdded?: never;
|
|
3399
|
+
serviceFunctionResourcesRemoved: ServiceFunctionResourcesRemovedMetadata;
|
|
3400
|
+
serviceAchievabilityUpdated?: never;
|
|
3401
|
+
assertionCreated?: never;
|
|
3402
|
+
assertionUpdated?: never;
|
|
3403
|
+
assertionDeleted?: never;
|
|
3404
|
+
$unknown?: never;
|
|
3405
|
+
}
|
|
3406
|
+
/**
|
|
3407
|
+
* <p>Metadata for a service achievability updated event.</p>
|
|
3408
|
+
* @public
|
|
3409
|
+
*/
|
|
3410
|
+
interface ServiceAchievabilityUpdatedMember {
|
|
3411
|
+
serviceCreated?: never;
|
|
3412
|
+
serviceDeleted?: never;
|
|
3413
|
+
serviceSystemAssociated?: never;
|
|
3414
|
+
serviceSystemDisassociated?: never;
|
|
3415
|
+
serviceResourcesAssociated?: never;
|
|
3416
|
+
serviceResourcesDisassociated?: never;
|
|
3417
|
+
serviceWorkflowUpdated?: never;
|
|
3418
|
+
serviceInputSourcesUpdated?: never;
|
|
3419
|
+
servicePolicyAssociated?: never;
|
|
3420
|
+
servicePolicyDisassociated?: never;
|
|
3421
|
+
serviceFunctionCreated?: never;
|
|
3422
|
+
serviceFunctionUpdated?: never;
|
|
3423
|
+
serviceFunctionDeleted?: never;
|
|
3424
|
+
serviceFunctionResourcesAdded?: never;
|
|
3425
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3426
|
+
serviceAchievabilityUpdated: ServiceAchievabilityUpdatedMetadata;
|
|
3427
|
+
assertionCreated?: never;
|
|
3428
|
+
assertionUpdated?: never;
|
|
3429
|
+
assertionDeleted?: never;
|
|
3430
|
+
$unknown?: never;
|
|
3431
|
+
}
|
|
3432
|
+
/**
|
|
3433
|
+
* <p>Metadata for an assertion created event.</p>
|
|
3434
|
+
* @public
|
|
3435
|
+
*/
|
|
3436
|
+
interface AssertionCreatedMember {
|
|
3437
|
+
serviceCreated?: never;
|
|
3438
|
+
serviceDeleted?: never;
|
|
3439
|
+
serviceSystemAssociated?: never;
|
|
3440
|
+
serviceSystemDisassociated?: never;
|
|
3441
|
+
serviceResourcesAssociated?: never;
|
|
3442
|
+
serviceResourcesDisassociated?: never;
|
|
3443
|
+
serviceWorkflowUpdated?: never;
|
|
3444
|
+
serviceInputSourcesUpdated?: never;
|
|
3445
|
+
servicePolicyAssociated?: never;
|
|
3446
|
+
servicePolicyDisassociated?: never;
|
|
3447
|
+
serviceFunctionCreated?: never;
|
|
3448
|
+
serviceFunctionUpdated?: never;
|
|
3449
|
+
serviceFunctionDeleted?: never;
|
|
3450
|
+
serviceFunctionResourcesAdded?: never;
|
|
3451
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3452
|
+
serviceAchievabilityUpdated?: never;
|
|
3453
|
+
assertionCreated: AssertionCreatedMetadata;
|
|
3454
|
+
assertionUpdated?: never;
|
|
3455
|
+
assertionDeleted?: never;
|
|
3456
|
+
$unknown?: never;
|
|
3457
|
+
}
|
|
3458
|
+
/**
|
|
3459
|
+
* <p>Metadata for an assertion updated event.</p>
|
|
3460
|
+
* @public
|
|
3461
|
+
*/
|
|
3462
|
+
interface AssertionUpdatedMember {
|
|
3463
|
+
serviceCreated?: never;
|
|
3464
|
+
serviceDeleted?: never;
|
|
3465
|
+
serviceSystemAssociated?: never;
|
|
3466
|
+
serviceSystemDisassociated?: never;
|
|
3467
|
+
serviceResourcesAssociated?: never;
|
|
3468
|
+
serviceResourcesDisassociated?: never;
|
|
3469
|
+
serviceWorkflowUpdated?: never;
|
|
3470
|
+
serviceInputSourcesUpdated?: never;
|
|
3471
|
+
servicePolicyAssociated?: never;
|
|
3472
|
+
servicePolicyDisassociated?: never;
|
|
3473
|
+
serviceFunctionCreated?: never;
|
|
3474
|
+
serviceFunctionUpdated?: never;
|
|
3475
|
+
serviceFunctionDeleted?: never;
|
|
3476
|
+
serviceFunctionResourcesAdded?: never;
|
|
3477
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3478
|
+
serviceAchievabilityUpdated?: never;
|
|
3479
|
+
assertionCreated?: never;
|
|
3480
|
+
assertionUpdated: AssertionUpdatedMetadata;
|
|
3481
|
+
assertionDeleted?: never;
|
|
3482
|
+
$unknown?: never;
|
|
3483
|
+
}
|
|
3484
|
+
/**
|
|
3485
|
+
* <p>Metadata for an assertion deleted event.</p>
|
|
3486
|
+
* @public
|
|
3487
|
+
*/
|
|
3488
|
+
interface AssertionDeletedMember {
|
|
3489
|
+
serviceCreated?: never;
|
|
3490
|
+
serviceDeleted?: never;
|
|
3491
|
+
serviceSystemAssociated?: never;
|
|
3492
|
+
serviceSystemDisassociated?: never;
|
|
3493
|
+
serviceResourcesAssociated?: never;
|
|
3494
|
+
serviceResourcesDisassociated?: never;
|
|
3495
|
+
serviceWorkflowUpdated?: never;
|
|
3496
|
+
serviceInputSourcesUpdated?: never;
|
|
3497
|
+
servicePolicyAssociated?: never;
|
|
3498
|
+
servicePolicyDisassociated?: never;
|
|
3499
|
+
serviceFunctionCreated?: never;
|
|
3500
|
+
serviceFunctionUpdated?: never;
|
|
3501
|
+
serviceFunctionDeleted?: never;
|
|
3502
|
+
serviceFunctionResourcesAdded?: never;
|
|
3503
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3504
|
+
serviceAchievabilityUpdated?: never;
|
|
3505
|
+
assertionCreated?: never;
|
|
3506
|
+
assertionUpdated?: never;
|
|
3507
|
+
assertionDeleted: AssertionDeletedMetadata;
|
|
3508
|
+
$unknown?: never;
|
|
3509
|
+
}
|
|
3510
|
+
/**
|
|
3511
|
+
* @public
|
|
3512
|
+
*/
|
|
3513
|
+
interface $UnknownMember {
|
|
3514
|
+
serviceCreated?: never;
|
|
3515
|
+
serviceDeleted?: never;
|
|
3516
|
+
serviceSystemAssociated?: never;
|
|
3517
|
+
serviceSystemDisassociated?: never;
|
|
3518
|
+
serviceResourcesAssociated?: never;
|
|
3519
|
+
serviceResourcesDisassociated?: never;
|
|
3520
|
+
serviceWorkflowUpdated?: never;
|
|
3521
|
+
serviceInputSourcesUpdated?: never;
|
|
3522
|
+
servicePolicyAssociated?: never;
|
|
3523
|
+
servicePolicyDisassociated?: never;
|
|
3524
|
+
serviceFunctionCreated?: never;
|
|
3525
|
+
serviceFunctionUpdated?: never;
|
|
3526
|
+
serviceFunctionDeleted?: never;
|
|
3527
|
+
serviceFunctionResourcesAdded?: never;
|
|
3528
|
+
serviceFunctionResourcesRemoved?: never;
|
|
3529
|
+
serviceAchievabilityUpdated?: never;
|
|
3530
|
+
assertionCreated?: never;
|
|
3531
|
+
assertionUpdated?: never;
|
|
3532
|
+
assertionDeleted?: never;
|
|
3533
|
+
$unknown: [string, any];
|
|
3534
|
+
}
|
|
3535
|
+
/**
|
|
3536
|
+
* @deprecated unused in schema-serde mode.
|
|
3537
|
+
*
|
|
3538
|
+
*/
|
|
3539
|
+
interface Visitor<T> {
|
|
3540
|
+
serviceCreated: (value: ServiceCreatedMetadata) => T;
|
|
3541
|
+
serviceDeleted: (value: ServiceDeletedMetadata) => T;
|
|
3542
|
+
serviceSystemAssociated: (value: ServiceSystemAssociatedMetadata) => T;
|
|
3543
|
+
serviceSystemDisassociated: (value: ServiceSystemDisassociatedMetadata) => T;
|
|
3544
|
+
serviceResourcesAssociated: (value: ServiceResourcesAssociatedMetadata) => T;
|
|
3545
|
+
serviceResourcesDisassociated: (value: ServiceResourcesDisassociatedMetadata) => T;
|
|
3546
|
+
serviceWorkflowUpdated: (value: ServiceWorkflowUpdatedMetadata) => T;
|
|
3547
|
+
serviceInputSourcesUpdated: (value: ServiceInputSourcesUpdatedMetadata) => T;
|
|
3548
|
+
servicePolicyAssociated: (value: ServicePolicyAssociatedMetadata) => T;
|
|
3549
|
+
servicePolicyDisassociated: (value: ServicePolicyDisassociatedMetadata) => T;
|
|
3550
|
+
serviceFunctionCreated: (value: ServiceFunctionCreatedMetadata) => T;
|
|
3551
|
+
serviceFunctionUpdated: (value: ServiceFunctionUpdatedMetadata) => T;
|
|
3552
|
+
serviceFunctionDeleted: (value: ServiceFunctionDeletedMetadata) => T;
|
|
3553
|
+
serviceFunctionResourcesAdded: (value: ServiceFunctionResourcesAddedMetadata) => T;
|
|
3554
|
+
serviceFunctionResourcesRemoved: (value: ServiceFunctionResourcesRemovedMetadata) => T;
|
|
3555
|
+
serviceAchievabilityUpdated: (value: ServiceAchievabilityUpdatedMetadata) => T;
|
|
3556
|
+
assertionCreated: (value: AssertionCreatedMetadata) => T;
|
|
3557
|
+
assertionUpdated: (value: AssertionUpdatedMetadata) => T;
|
|
3558
|
+
assertionDeleted: (value: AssertionDeletedMetadata) => T;
|
|
3559
|
+
_: (name: string, value: any) => T;
|
|
3560
|
+
}
|
|
3561
|
+
}
|
|
3562
|
+
/**
|
|
3563
|
+
* <p>Contains the details of a service event.</p>
|
|
3564
|
+
* @public
|
|
3565
|
+
*/
|
|
3566
|
+
export interface ServiceEventDetails {
|
|
3567
|
+
/**
|
|
3568
|
+
* <p>The title of the event.</p>
|
|
3569
|
+
* @public
|
|
3570
|
+
*/
|
|
3571
|
+
title: string | undefined;
|
|
3572
|
+
/**
|
|
3573
|
+
* <p>The description of the event.</p>
|
|
3574
|
+
* @public
|
|
3575
|
+
*/
|
|
3576
|
+
description: string | undefined;
|
|
3577
|
+
/**
|
|
3578
|
+
* <p>Type-specific metadata for each service event type.</p>
|
|
3579
|
+
* @public
|
|
3580
|
+
*/
|
|
3581
|
+
eventMetadata?: ServiceEventMetadata | undefined;
|
|
3582
|
+
}
|
|
3583
|
+
/**
|
|
3584
|
+
* <p>Represents an event in the service event log.</p>
|
|
3585
|
+
* @public
|
|
3586
|
+
*/
|
|
3587
|
+
export interface ServiceEvent {
|
|
3588
|
+
/**
|
|
3589
|
+
* <p>The unique identifier of the event.</p>
|
|
3590
|
+
* @public
|
|
3591
|
+
*/
|
|
3592
|
+
eventId: string | undefined;
|
|
3593
|
+
/**
|
|
3594
|
+
* <p>The timestamp of the event.</p>
|
|
3595
|
+
* @public
|
|
3596
|
+
*/
|
|
3597
|
+
timestamp: Date | undefined;
|
|
3598
|
+
/**
|
|
3599
|
+
* <p>The type of the event.</p>
|
|
3600
|
+
* @public
|
|
3601
|
+
*/
|
|
3602
|
+
eventType: ServiceEventType | undefined;
|
|
3603
|
+
/**
|
|
3604
|
+
* <p>ARN identifier.</p>
|
|
3605
|
+
* @public
|
|
3606
|
+
*/
|
|
3607
|
+
serviceArn: string | undefined;
|
|
3608
|
+
/**
|
|
3609
|
+
* <p>The actor that triggered the event.</p>
|
|
3610
|
+
* @public
|
|
3611
|
+
*/
|
|
3612
|
+
actor: EventActor | undefined;
|
|
3613
|
+
/**
|
|
3614
|
+
* <p>The details of the event.</p>
|
|
3615
|
+
* @public
|
|
3616
|
+
*/
|
|
3617
|
+
eventDetails: ServiceEventDetails | undefined;
|
|
3618
|
+
}
|
|
3619
|
+
/**
|
|
3620
|
+
* @public
|
|
3621
|
+
*/
|
|
3622
|
+
export interface ListServiceEventsResponse {
|
|
3623
|
+
/**
|
|
3624
|
+
* <p>The list of service events.</p>
|
|
3625
|
+
* @public
|
|
3626
|
+
*/
|
|
3627
|
+
events: ServiceEvent[] | undefined;
|
|
3628
|
+
/**
|
|
3629
|
+
* <p>Pagination token.</p>
|
|
3630
|
+
* @public
|
|
3631
|
+
*/
|
|
3632
|
+
nextToken?: string | undefined;
|
|
3633
|
+
}
|
|
3634
|
+
/**
|
|
3635
|
+
* @public
|
|
3636
|
+
*/
|
|
3637
|
+
export interface ListServiceFunctionsRequest {
|
|
3638
|
+
/**
|
|
3639
|
+
* <p>ARN identifier.</p>
|
|
3640
|
+
* @public
|
|
3641
|
+
*/
|
|
3642
|
+
serviceArn: string | undefined;
|
|
3643
|
+
/**
|
|
3644
|
+
* <p>Pagination page size.</p>
|
|
3645
|
+
* @public
|
|
3646
|
+
*/
|
|
3647
|
+
maxResults?: number | undefined;
|
|
3648
|
+
/**
|
|
3649
|
+
* <p>Pagination token.</p>
|
|
3650
|
+
* @public
|
|
3651
|
+
*/
|
|
3652
|
+
nextToken?: string | undefined;
|
|
3653
|
+
}
|
|
3654
|
+
/**
|
|
3655
|
+
* @public
|
|
3656
|
+
*/
|
|
3657
|
+
export interface ListServiceFunctionsResponse {
|
|
3658
|
+
/**
|
|
3659
|
+
* <p>The list of service functions.</p>
|
|
3660
|
+
* @public
|
|
3661
|
+
*/
|
|
3662
|
+
serviceFunctions: ServiceFunction[] | undefined;
|
|
3663
|
+
/**
|
|
3664
|
+
* <p>Pagination token.</p>
|
|
3665
|
+
* @public
|
|
3666
|
+
*/
|
|
3667
|
+
nextToken?: string | undefined;
|
|
3668
|
+
}
|
|
3669
|
+
/**
|
|
3670
|
+
* @public
|
|
3671
|
+
*/
|
|
3672
|
+
export interface ListServicesRequest {
|
|
3673
|
+
/**
|
|
3674
|
+
* <p>ARN identifier.</p>
|
|
3675
|
+
* @public
|
|
3676
|
+
*/
|
|
3677
|
+
systemArn?: string | undefined;
|
|
3678
|
+
/**
|
|
3679
|
+
* <p>Filter services by user journey identifier.</p>
|
|
3680
|
+
* @public
|
|
3681
|
+
*/
|
|
3682
|
+
userJourneyId?: string | undefined;
|
|
3683
|
+
/**
|
|
3684
|
+
* <p>Filter services by organizational unit (OU) identifier.</p>
|
|
3685
|
+
* @public
|
|
3686
|
+
*/
|
|
3687
|
+
ouId?: string | undefined;
|
|
3688
|
+
/**
|
|
3689
|
+
* <p>Filter services by AWS account ID.</p>
|
|
3690
|
+
* @public
|
|
3691
|
+
*/
|
|
3692
|
+
accountId?: string | undefined;
|
|
3693
|
+
/**
|
|
3694
|
+
* <p>Filter services by assessment status.</p>
|
|
3695
|
+
* @public
|
|
3696
|
+
*/
|
|
3697
|
+
assessmentStatus?: AssessmentStatus | undefined;
|
|
3698
|
+
/**
|
|
3699
|
+
* <p>ARN identifier.</p>
|
|
3700
|
+
* @public
|
|
3701
|
+
*/
|
|
3702
|
+
policyArn?: string | undefined;
|
|
3703
|
+
/**
|
|
3704
|
+
* <p>Pagination page size.</p>
|
|
3705
|
+
* @public
|
|
3706
|
+
*/
|
|
3707
|
+
maxResults?: number | undefined;
|
|
3708
|
+
/**
|
|
3709
|
+
* <p>Pagination token.</p>
|
|
3710
|
+
* @public
|
|
3711
|
+
*/
|
|
3712
|
+
nextToken?: string | undefined;
|
|
3713
|
+
}
|
|
3714
|
+
/**
|
|
3715
|
+
* <p>Contains summary information about a service.</p>
|
|
3716
|
+
* @public
|
|
3717
|
+
*/
|
|
3718
|
+
export interface ServiceSummary {
|
|
3719
|
+
/**
|
|
3720
|
+
* <p>ARN identifier.</p>
|
|
3721
|
+
* @public
|
|
3722
|
+
*/
|
|
3723
|
+
serviceArn: string | undefined;
|
|
3724
|
+
/**
|
|
3725
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
3726
|
+
* @public
|
|
3727
|
+
*/
|
|
3728
|
+
name: string | undefined;
|
|
3729
|
+
/**
|
|
3730
|
+
* <p>The systems associated with the service.</p>
|
|
3731
|
+
* @public
|
|
3732
|
+
*/
|
|
3733
|
+
associatedSystems?: AssociatedSystem[] | undefined;
|
|
3734
|
+
/**
|
|
3735
|
+
* <p>The AWS Regions where the service operates.</p>
|
|
3736
|
+
* @public
|
|
3737
|
+
*/
|
|
3738
|
+
regions?: string[] | undefined;
|
|
3739
|
+
/**
|
|
3740
|
+
* <p>ARN identifier.</p>
|
|
3741
|
+
* @public
|
|
3742
|
+
*/
|
|
3743
|
+
policyArn?: string | undefined;
|
|
3744
|
+
/**
|
|
3745
|
+
* <p>The current assessment status of the service.</p>
|
|
3746
|
+
* @public
|
|
3747
|
+
*/
|
|
3748
|
+
assessmentStatus?: AssessmentStatus | undefined;
|
|
3749
|
+
/**
|
|
3750
|
+
* <p>The number of open findings.</p>
|
|
3751
|
+
* @public
|
|
3752
|
+
*/
|
|
3753
|
+
openFindingsCount?: number | undefined;
|
|
3754
|
+
/**
|
|
3755
|
+
* <p>The number of resolved findings.</p>
|
|
3756
|
+
* @public
|
|
3757
|
+
*/
|
|
3758
|
+
resolvedFindingsCount?: number | undefined;
|
|
3759
|
+
/**
|
|
3760
|
+
* <p>The dependency discovery configuration.</p>
|
|
3761
|
+
* @public
|
|
3762
|
+
*/
|
|
3763
|
+
dependencyDiscovery?: DependencyDiscoveryConfig | undefined;
|
|
3764
|
+
/**
|
|
3765
|
+
* <p>The achievability status of the service's resilience targets.</p>
|
|
3766
|
+
* @public
|
|
3767
|
+
*/
|
|
3768
|
+
achievability?: Achievability | undefined;
|
|
3769
|
+
/**
|
|
3770
|
+
* <p>Displayed only if caller has access.</p>
|
|
3771
|
+
* @public
|
|
3772
|
+
*/
|
|
3773
|
+
organizationId?: string | undefined;
|
|
3774
|
+
/**
|
|
3775
|
+
* <p>Displayed only if caller has access.</p>
|
|
3776
|
+
* @public
|
|
3777
|
+
*/
|
|
3778
|
+
ouId?: string | undefined;
|
|
3779
|
+
/**
|
|
3780
|
+
* <p>Displayed only if caller has access.</p>
|
|
3781
|
+
* @public
|
|
3782
|
+
*/
|
|
3783
|
+
accountId?: string | undefined;
|
|
3784
|
+
/**
|
|
3785
|
+
* <p>The timestamp when the service was created.</p>
|
|
3786
|
+
* @public
|
|
3787
|
+
*/
|
|
3788
|
+
createdAt?: Date | undefined;
|
|
3789
|
+
/**
|
|
3790
|
+
* <p>The timestamp when the service was last updated.</p>
|
|
3791
|
+
* @public
|
|
3792
|
+
*/
|
|
3793
|
+
updatedAt?: Date | undefined;
|
|
3794
|
+
}
|
|
3795
|
+
/**
|
|
3796
|
+
* @public
|
|
3797
|
+
*/
|
|
3798
|
+
export interface ListServicesResponse {
|
|
3799
|
+
/**
|
|
3800
|
+
* <p>The list of service summaries.</p>
|
|
3801
|
+
* @public
|
|
3802
|
+
*/
|
|
3803
|
+
serviceSummaries: ServiceSummary[] | undefined;
|
|
3804
|
+
/**
|
|
3805
|
+
* <p>Pagination token.</p>
|
|
3806
|
+
* @public
|
|
3807
|
+
*/
|
|
3808
|
+
nextToken?: string | undefined;
|
|
3809
|
+
}
|
|
3810
|
+
/**
|
|
3811
|
+
* @public
|
|
3812
|
+
*/
|
|
3813
|
+
export interface ListServiceTopologyEdgesRequest {
|
|
3814
|
+
/**
|
|
3815
|
+
* <p>ARN identifier.</p>
|
|
3816
|
+
* @public
|
|
3817
|
+
*/
|
|
3818
|
+
serviceArn: string | undefined;
|
|
3819
|
+
/**
|
|
3820
|
+
* <p>Pagination page size.</p>
|
|
3821
|
+
* @public
|
|
3822
|
+
*/
|
|
3823
|
+
maxResults?: number | undefined;
|
|
3824
|
+
/**
|
|
3825
|
+
* <p>Pagination token.</p>
|
|
3826
|
+
* @public
|
|
3827
|
+
*/
|
|
3828
|
+
nextToken?: string | undefined;
|
|
3829
|
+
}
|
|
3830
|
+
/**
|
|
3831
|
+
* <p>Contains summary information about a service topology edge.</p>
|
|
3832
|
+
* @public
|
|
3833
|
+
*/
|
|
3834
|
+
export interface ServiceTopologyEdgeSummary {
|
|
3835
|
+
/**
|
|
3836
|
+
* <p>The identifier of the source resource.</p>
|
|
3837
|
+
* @public
|
|
3838
|
+
*/
|
|
3839
|
+
sourceResourceIdentifier: string | undefined;
|
|
3840
|
+
/**
|
|
3841
|
+
* <p>The identifier of the destination resource.</p>
|
|
3842
|
+
* @public
|
|
3843
|
+
*/
|
|
3844
|
+
destinationResourceIdentifier: string | undefined;
|
|
3845
|
+
/**
|
|
3846
|
+
* <p>The properties of the topology edge.</p>
|
|
3847
|
+
* @public
|
|
3848
|
+
*/
|
|
3849
|
+
properties?: EdgePropertySummary[] | undefined;
|
|
3850
|
+
}
|
|
3851
|
+
/**
|
|
3852
|
+
* @public
|
|
3853
|
+
*/
|
|
3854
|
+
export interface ListServiceTopologyEdgesResponse {
|
|
3855
|
+
/**
|
|
3856
|
+
* <p>The list of service topology edge summaries.</p>
|
|
3857
|
+
* @public
|
|
3858
|
+
*/
|
|
3859
|
+
serviceTopologyEdgeSummaries?: ServiceTopologyEdgeSummary[] | undefined;
|
|
3860
|
+
/**
|
|
3861
|
+
* <p>Pagination token.</p>
|
|
3862
|
+
* @public
|
|
3863
|
+
*/
|
|
3864
|
+
nextToken?: string | undefined;
|
|
3865
|
+
}
|
|
3866
|
+
/**
|
|
3867
|
+
* @public
|
|
3868
|
+
*/
|
|
3869
|
+
export interface ListSystemEventsRequest {
|
|
3870
|
+
/**
|
|
3871
|
+
* <p>ARN identifier.</p>
|
|
3872
|
+
* @public
|
|
3873
|
+
*/
|
|
3874
|
+
systemArn: string | undefined;
|
|
3875
|
+
/**
|
|
3876
|
+
* <p>Filter events by type.</p>
|
|
3877
|
+
* @public
|
|
3878
|
+
*/
|
|
3879
|
+
eventTypes?: SystemEventType[] | undefined;
|
|
3880
|
+
/**
|
|
3881
|
+
* <p>The start time for filtering events.</p>
|
|
3882
|
+
* @public
|
|
3883
|
+
*/
|
|
3884
|
+
startTime?: Date | undefined;
|
|
3885
|
+
/**
|
|
3886
|
+
* <p>The end time for filtering events.</p>
|
|
3887
|
+
* @public
|
|
3888
|
+
*/
|
|
3889
|
+
endTime?: Date | undefined;
|
|
3890
|
+
/**
|
|
3891
|
+
* <p>Pagination page size.</p>
|
|
3892
|
+
* @public
|
|
3893
|
+
*/
|
|
3894
|
+
maxResults?: number | undefined;
|
|
3895
|
+
/**
|
|
3896
|
+
* <p>Pagination token.</p>
|
|
3897
|
+
* @public
|
|
3898
|
+
*/
|
|
3899
|
+
nextToken?: string | undefined;
|
|
3900
|
+
}
|
|
3901
|
+
/**
|
|
3902
|
+
* <p>Metadata for a system created event.</p>
|
|
3903
|
+
* @public
|
|
3904
|
+
*/
|
|
3905
|
+
export interface SystemCreatedMetadata {
|
|
3906
|
+
}
|
|
3907
|
+
/**
|
|
3908
|
+
* <p>Metadata for a system deleted event.</p>
|
|
3909
|
+
* @public
|
|
3910
|
+
*/
|
|
3911
|
+
export interface SystemDeletedMetadata {
|
|
3912
|
+
}
|
|
3913
|
+
/**
|
|
3914
|
+
* <p>Metadata for a system policy associated event.</p>
|
|
3915
|
+
* @public
|
|
3916
|
+
*/
|
|
3917
|
+
export interface SystemPolicyAssociatedMetadata {
|
|
3918
|
+
/**
|
|
3919
|
+
* <p>The name of the associated policy.</p>
|
|
3920
|
+
* @public
|
|
3921
|
+
*/
|
|
3922
|
+
policyName?: string | undefined;
|
|
3923
|
+
/**
|
|
3924
|
+
* <p>ARN identifier.</p>
|
|
3925
|
+
* @public
|
|
3926
|
+
*/
|
|
3927
|
+
policyArn?: string | undefined;
|
|
3928
|
+
}
|
|
3929
|
+
/**
|
|
3930
|
+
* <p>Metadata for a system policy disassociated event.</p>
|
|
3931
|
+
* @public
|
|
3932
|
+
*/
|
|
3933
|
+
export interface SystemPolicyDisassociatedMetadata {
|
|
3934
|
+
/**
|
|
3935
|
+
* <p>The name of the disassociated policy.</p>
|
|
3936
|
+
* @public
|
|
3937
|
+
*/
|
|
3938
|
+
policyName?: string | undefined;
|
|
3939
|
+
/**
|
|
3940
|
+
* <p>ARN identifier.</p>
|
|
3941
|
+
* @public
|
|
3942
|
+
*/
|
|
3943
|
+
policyArn?: string | undefined;
|
|
3944
|
+
}
|
|
3945
|
+
/**
|
|
3946
|
+
* <p>Metadata for a system service associated event.</p>
|
|
3947
|
+
* @public
|
|
3948
|
+
*/
|
|
3949
|
+
export interface SystemServiceAssociatedMetadata {
|
|
3950
|
+
/**
|
|
3951
|
+
* <p>The name of the associated service.</p>
|
|
3952
|
+
* @public
|
|
3953
|
+
*/
|
|
3954
|
+
serviceName?: string | undefined;
|
|
3955
|
+
/**
|
|
3956
|
+
* <p>ARN identifier.</p>
|
|
3957
|
+
* @public
|
|
3958
|
+
*/
|
|
3959
|
+
serviceArn?: string | undefined;
|
|
3960
|
+
/**
|
|
3961
|
+
* <p>The user journeys linking the service to the system.</p>
|
|
3962
|
+
* @public
|
|
3963
|
+
*/
|
|
3964
|
+
userJourneys?: string[] | undefined;
|
|
3965
|
+
}
|
|
3966
|
+
/**
|
|
3967
|
+
* <p>Metadata for a system service disassociated event.</p>
|
|
3968
|
+
* @public
|
|
3969
|
+
*/
|
|
3970
|
+
export interface SystemServiceDisassociatedMetadata {
|
|
3971
|
+
/**
|
|
3972
|
+
* <p>The name of the disassociated service.</p>
|
|
3973
|
+
* @public
|
|
3974
|
+
*/
|
|
3975
|
+
serviceName?: string | undefined;
|
|
3976
|
+
/**
|
|
3977
|
+
* <p>ARN identifier.</p>
|
|
3978
|
+
* @public
|
|
3979
|
+
*/
|
|
3980
|
+
serviceArn?: string | undefined;
|
|
3981
|
+
/**
|
|
3982
|
+
* <p>The user journeys affected by the disassociation.</p>
|
|
3983
|
+
* @public
|
|
3984
|
+
*/
|
|
3985
|
+
userJourneysAffected?: string[] | undefined;
|
|
3986
|
+
/**
|
|
3987
|
+
* <p>A comment about the disassociation.</p>
|
|
3988
|
+
* @public
|
|
3989
|
+
*/
|
|
3990
|
+
comment?: string | undefined;
|
|
3991
|
+
}
|
|
3992
|
+
/**
|
|
3993
|
+
* <p>A reference to a service by ID and name.</p>
|
|
3994
|
+
* @public
|
|
3995
|
+
*/
|
|
3996
|
+
export interface ServiceReference {
|
|
3997
|
+
/**
|
|
3998
|
+
* <p>The identifier of the referenced service.</p>
|
|
3999
|
+
* @public
|
|
4000
|
+
*/
|
|
4001
|
+
serviceId?: string | undefined;
|
|
4002
|
+
/**
|
|
4003
|
+
* <p>The name of the referenced service.</p>
|
|
4004
|
+
* @public
|
|
4005
|
+
*/
|
|
4006
|
+
serviceName?: string | undefined;
|
|
4007
|
+
}
|
|
4008
|
+
/**
|
|
4009
|
+
* <p>Metadata for a system user journey created event.</p>
|
|
4010
|
+
* @public
|
|
4011
|
+
*/
|
|
4012
|
+
export interface SystemUserJourneyCreatedMetadata {
|
|
4013
|
+
/**
|
|
4014
|
+
* <p>The name of the created user journey.</p>
|
|
4015
|
+
* @public
|
|
4016
|
+
*/
|
|
4017
|
+
userJourneyName?: string | undefined;
|
|
4018
|
+
/**
|
|
4019
|
+
* <p>The services associated with the created user journey.</p>
|
|
4020
|
+
* @public
|
|
4021
|
+
*/
|
|
4022
|
+
associatedServices?: ServiceReference[] | undefined;
|
|
4023
|
+
}
|
|
4024
|
+
/**
|
|
4025
|
+
* <p>Metadata for a system user journey deleted event.</p>
|
|
4026
|
+
* @public
|
|
4027
|
+
*/
|
|
4028
|
+
export interface SystemUserJourneyDeletedMetadata {
|
|
4029
|
+
/**
|
|
4030
|
+
* <p>The name of the deleted user journey.</p>
|
|
4031
|
+
* @public
|
|
4032
|
+
*/
|
|
4033
|
+
userJourneyName?: string | undefined;
|
|
4034
|
+
/**
|
|
4035
|
+
* <p>The services that were associated at the time of deletion.</p>
|
|
4036
|
+
* @public
|
|
4037
|
+
*/
|
|
4038
|
+
associatedServicesAtDeletion?: ServiceReference[] | undefined;
|
|
4039
|
+
}
|
|
4040
|
+
/**
|
|
4041
|
+
* <p>Describes changes to service references.</p>
|
|
4042
|
+
* @public
|
|
4043
|
+
*/
|
|
4044
|
+
export interface ServiceReferenceChanges {
|
|
4045
|
+
/**
|
|
4046
|
+
* <p>The list of service references that were added.</p>
|
|
4047
|
+
* @public
|
|
4048
|
+
*/
|
|
4049
|
+
added?: ServiceReference[] | undefined;
|
|
4050
|
+
/**
|
|
4051
|
+
* <p>The list of service references that were removed.</p>
|
|
4052
|
+
* @public
|
|
4053
|
+
*/
|
|
4054
|
+
removed?: ServiceReference[] | undefined;
|
|
4055
|
+
}
|
|
4056
|
+
/**
|
|
4057
|
+
* <p>Describes a change from one string value to another.</p>
|
|
4058
|
+
* @public
|
|
4059
|
+
*/
|
|
4060
|
+
export interface StringChange {
|
|
4061
|
+
/**
|
|
4062
|
+
* <p>The old value.</p>
|
|
4063
|
+
* @public
|
|
4064
|
+
*/
|
|
4065
|
+
oldValue?: string | undefined;
|
|
4066
|
+
/**
|
|
4067
|
+
* <p>The new value.</p>
|
|
4068
|
+
* @public
|
|
4069
|
+
*/
|
|
4070
|
+
newValue?: string | undefined;
|
|
4071
|
+
}
|
|
4072
|
+
/**
|
|
4073
|
+
* <p>Describes changes made to a user journey.</p>
|
|
4074
|
+
* @public
|
|
4075
|
+
*/
|
|
4076
|
+
export interface UserJourneyChanges {
|
|
4077
|
+
/**
|
|
4078
|
+
* <p>Changes to the user journey description.</p>
|
|
4079
|
+
* @public
|
|
4080
|
+
*/
|
|
4081
|
+
journeyDescription?: StringChange | undefined;
|
|
4082
|
+
/**
|
|
4083
|
+
* <p>Changes to the services associated with the user journey.</p>
|
|
4084
|
+
* @public
|
|
4085
|
+
*/
|
|
4086
|
+
associatedServices?: ServiceReferenceChanges | undefined;
|
|
4087
|
+
}
|
|
4088
|
+
/**
|
|
4089
|
+
* <p>Metadata for a system user journey updated event.</p>
|
|
4090
|
+
* @public
|
|
4091
|
+
*/
|
|
4092
|
+
export interface SystemUserJourneyUpdatedMetadata {
|
|
4093
|
+
/**
|
|
4094
|
+
* <p>The name of the updated user journey.</p>
|
|
4095
|
+
* @public
|
|
4096
|
+
*/
|
|
4097
|
+
userJourneyName?: string | undefined;
|
|
4098
|
+
/**
|
|
4099
|
+
* <p>The changes made to the user journey.</p>
|
|
4100
|
+
* @public
|
|
4101
|
+
*/
|
|
4102
|
+
changes?: UserJourneyChanges | undefined;
|
|
4103
|
+
}
|
|
4104
|
+
/**
|
|
4105
|
+
* <p>Type-specific metadata for each system event type.</p>
|
|
4106
|
+
* @public
|
|
4107
|
+
*/
|
|
4108
|
+
export type SystemEventMetadata = SystemEventMetadata.SystemCreatedMember | SystemEventMetadata.SystemDeletedMember | SystemEventMetadata.SystemPolicyAssociatedMember | SystemEventMetadata.SystemPolicyDisassociatedMember | SystemEventMetadata.SystemServiceAssociatedMember | SystemEventMetadata.SystemServiceDisassociatedMember | SystemEventMetadata.SystemUserJourneyCreatedMember | SystemEventMetadata.SystemUserJourneyDeletedMember | SystemEventMetadata.SystemUserJourneyUpdatedMember | SystemEventMetadata.$UnknownMember;
|
|
4109
|
+
/**
|
|
4110
|
+
* @public
|
|
4111
|
+
*/
|
|
4112
|
+
export declare namespace SystemEventMetadata {
|
|
4113
|
+
/**
|
|
4114
|
+
* <p>Metadata for a system created event.</p>
|
|
4115
|
+
* @public
|
|
4116
|
+
*/
|
|
4117
|
+
interface SystemCreatedMember {
|
|
4118
|
+
systemCreated: SystemCreatedMetadata;
|
|
4119
|
+
systemDeleted?: never;
|
|
4120
|
+
systemUserJourneyCreated?: never;
|
|
4121
|
+
systemUserJourneyUpdated?: never;
|
|
4122
|
+
systemUserJourneyDeleted?: never;
|
|
4123
|
+
systemServiceAssociated?: never;
|
|
4124
|
+
systemServiceDisassociated?: never;
|
|
4125
|
+
systemPolicyAssociated?: never;
|
|
4126
|
+
systemPolicyDisassociated?: never;
|
|
4127
|
+
$unknown?: never;
|
|
4128
|
+
}
|
|
4129
|
+
/**
|
|
4130
|
+
* <p>Metadata for a system deleted event.</p>
|
|
4131
|
+
* @public
|
|
4132
|
+
*/
|
|
4133
|
+
interface SystemDeletedMember {
|
|
4134
|
+
systemCreated?: never;
|
|
4135
|
+
systemDeleted: SystemDeletedMetadata;
|
|
4136
|
+
systemUserJourneyCreated?: never;
|
|
4137
|
+
systemUserJourneyUpdated?: never;
|
|
4138
|
+
systemUserJourneyDeleted?: never;
|
|
4139
|
+
systemServiceAssociated?: never;
|
|
4140
|
+
systemServiceDisassociated?: never;
|
|
4141
|
+
systemPolicyAssociated?: never;
|
|
4142
|
+
systemPolicyDisassociated?: never;
|
|
4143
|
+
$unknown?: never;
|
|
4144
|
+
}
|
|
4145
|
+
/**
|
|
4146
|
+
* <p>Metadata for a system user journey created event.</p>
|
|
4147
|
+
* @public
|
|
4148
|
+
*/
|
|
4149
|
+
interface SystemUserJourneyCreatedMember {
|
|
4150
|
+
systemCreated?: never;
|
|
4151
|
+
systemDeleted?: never;
|
|
4152
|
+
systemUserJourneyCreated: SystemUserJourneyCreatedMetadata;
|
|
4153
|
+
systemUserJourneyUpdated?: never;
|
|
4154
|
+
systemUserJourneyDeleted?: never;
|
|
4155
|
+
systemServiceAssociated?: never;
|
|
4156
|
+
systemServiceDisassociated?: never;
|
|
4157
|
+
systemPolicyAssociated?: never;
|
|
4158
|
+
systemPolicyDisassociated?: never;
|
|
4159
|
+
$unknown?: never;
|
|
4160
|
+
}
|
|
4161
|
+
/**
|
|
4162
|
+
* <p>Metadata for a system user journey updated event.</p>
|
|
4163
|
+
* @public
|
|
4164
|
+
*/
|
|
4165
|
+
interface SystemUserJourneyUpdatedMember {
|
|
4166
|
+
systemCreated?: never;
|
|
4167
|
+
systemDeleted?: never;
|
|
4168
|
+
systemUserJourneyCreated?: never;
|
|
4169
|
+
systemUserJourneyUpdated: SystemUserJourneyUpdatedMetadata;
|
|
4170
|
+
systemUserJourneyDeleted?: never;
|
|
4171
|
+
systemServiceAssociated?: never;
|
|
4172
|
+
systemServiceDisassociated?: never;
|
|
4173
|
+
systemPolicyAssociated?: never;
|
|
4174
|
+
systemPolicyDisassociated?: never;
|
|
4175
|
+
$unknown?: never;
|
|
4176
|
+
}
|
|
4177
|
+
/**
|
|
4178
|
+
* <p>Metadata for a system user journey deleted event.</p>
|
|
4179
|
+
* @public
|
|
4180
|
+
*/
|
|
4181
|
+
interface SystemUserJourneyDeletedMember {
|
|
4182
|
+
systemCreated?: never;
|
|
4183
|
+
systemDeleted?: never;
|
|
4184
|
+
systemUserJourneyCreated?: never;
|
|
4185
|
+
systemUserJourneyUpdated?: never;
|
|
4186
|
+
systemUserJourneyDeleted: SystemUserJourneyDeletedMetadata;
|
|
4187
|
+
systemServiceAssociated?: never;
|
|
4188
|
+
systemServiceDisassociated?: never;
|
|
4189
|
+
systemPolicyAssociated?: never;
|
|
4190
|
+
systemPolicyDisassociated?: never;
|
|
4191
|
+
$unknown?: never;
|
|
4192
|
+
}
|
|
4193
|
+
/**
|
|
4194
|
+
* <p>Metadata for a system service associated event.</p>
|
|
4195
|
+
* @public
|
|
4196
|
+
*/
|
|
4197
|
+
interface SystemServiceAssociatedMember {
|
|
4198
|
+
systemCreated?: never;
|
|
4199
|
+
systemDeleted?: never;
|
|
4200
|
+
systemUserJourneyCreated?: never;
|
|
4201
|
+
systemUserJourneyUpdated?: never;
|
|
4202
|
+
systemUserJourneyDeleted?: never;
|
|
4203
|
+
systemServiceAssociated: SystemServiceAssociatedMetadata;
|
|
4204
|
+
systemServiceDisassociated?: never;
|
|
4205
|
+
systemPolicyAssociated?: never;
|
|
4206
|
+
systemPolicyDisassociated?: never;
|
|
4207
|
+
$unknown?: never;
|
|
4208
|
+
}
|
|
4209
|
+
/**
|
|
4210
|
+
* <p>Metadata for a system service disassociated event.</p>
|
|
4211
|
+
* @public
|
|
4212
|
+
*/
|
|
4213
|
+
interface SystemServiceDisassociatedMember {
|
|
4214
|
+
systemCreated?: never;
|
|
4215
|
+
systemDeleted?: never;
|
|
4216
|
+
systemUserJourneyCreated?: never;
|
|
4217
|
+
systemUserJourneyUpdated?: never;
|
|
4218
|
+
systemUserJourneyDeleted?: never;
|
|
4219
|
+
systemServiceAssociated?: never;
|
|
4220
|
+
systemServiceDisassociated: SystemServiceDisassociatedMetadata;
|
|
4221
|
+
systemPolicyAssociated?: never;
|
|
4222
|
+
systemPolicyDisassociated?: never;
|
|
4223
|
+
$unknown?: never;
|
|
4224
|
+
}
|
|
4225
|
+
/**
|
|
4226
|
+
* <p>Metadata for a system policy associated event.</p>
|
|
4227
|
+
* @public
|
|
4228
|
+
*/
|
|
4229
|
+
interface SystemPolicyAssociatedMember {
|
|
4230
|
+
systemCreated?: never;
|
|
4231
|
+
systemDeleted?: never;
|
|
4232
|
+
systemUserJourneyCreated?: never;
|
|
4233
|
+
systemUserJourneyUpdated?: never;
|
|
4234
|
+
systemUserJourneyDeleted?: never;
|
|
4235
|
+
systemServiceAssociated?: never;
|
|
4236
|
+
systemServiceDisassociated?: never;
|
|
4237
|
+
systemPolicyAssociated: SystemPolicyAssociatedMetadata;
|
|
4238
|
+
systemPolicyDisassociated?: never;
|
|
4239
|
+
$unknown?: never;
|
|
4240
|
+
}
|
|
4241
|
+
/**
|
|
4242
|
+
* <p>Metadata for a system policy disassociated event.</p>
|
|
4243
|
+
* @public
|
|
4244
|
+
*/
|
|
4245
|
+
interface SystemPolicyDisassociatedMember {
|
|
4246
|
+
systemCreated?: never;
|
|
4247
|
+
systemDeleted?: never;
|
|
4248
|
+
systemUserJourneyCreated?: never;
|
|
4249
|
+
systemUserJourneyUpdated?: never;
|
|
4250
|
+
systemUserJourneyDeleted?: never;
|
|
4251
|
+
systemServiceAssociated?: never;
|
|
4252
|
+
systemServiceDisassociated?: never;
|
|
4253
|
+
systemPolicyAssociated?: never;
|
|
4254
|
+
systemPolicyDisassociated: SystemPolicyDisassociatedMetadata;
|
|
4255
|
+
$unknown?: never;
|
|
4256
|
+
}
|
|
4257
|
+
/**
|
|
4258
|
+
* @public
|
|
4259
|
+
*/
|
|
4260
|
+
interface $UnknownMember {
|
|
4261
|
+
systemCreated?: never;
|
|
4262
|
+
systemDeleted?: never;
|
|
4263
|
+
systemUserJourneyCreated?: never;
|
|
4264
|
+
systemUserJourneyUpdated?: never;
|
|
4265
|
+
systemUserJourneyDeleted?: never;
|
|
4266
|
+
systemServiceAssociated?: never;
|
|
4267
|
+
systemServiceDisassociated?: never;
|
|
4268
|
+
systemPolicyAssociated?: never;
|
|
4269
|
+
systemPolicyDisassociated?: never;
|
|
4270
|
+
$unknown: [string, any];
|
|
4271
|
+
}
|
|
4272
|
+
/**
|
|
4273
|
+
* @deprecated unused in schema-serde mode.
|
|
4274
|
+
*
|
|
4275
|
+
*/
|
|
4276
|
+
interface Visitor<T> {
|
|
4277
|
+
systemCreated: (value: SystemCreatedMetadata) => T;
|
|
4278
|
+
systemDeleted: (value: SystemDeletedMetadata) => T;
|
|
4279
|
+
systemUserJourneyCreated: (value: SystemUserJourneyCreatedMetadata) => T;
|
|
4280
|
+
systemUserJourneyUpdated: (value: SystemUserJourneyUpdatedMetadata) => T;
|
|
4281
|
+
systemUserJourneyDeleted: (value: SystemUserJourneyDeletedMetadata) => T;
|
|
4282
|
+
systemServiceAssociated: (value: SystemServiceAssociatedMetadata) => T;
|
|
4283
|
+
systemServiceDisassociated: (value: SystemServiceDisassociatedMetadata) => T;
|
|
4284
|
+
systemPolicyAssociated: (value: SystemPolicyAssociatedMetadata) => T;
|
|
4285
|
+
systemPolicyDisassociated: (value: SystemPolicyDisassociatedMetadata) => T;
|
|
4286
|
+
_: (name: string, value: any) => T;
|
|
4287
|
+
}
|
|
4288
|
+
}
|
|
4289
|
+
/**
|
|
4290
|
+
* <p>Contains the details of a system event.</p>
|
|
4291
|
+
* @public
|
|
4292
|
+
*/
|
|
4293
|
+
export interface SystemEventDetails {
|
|
4294
|
+
/**
|
|
4295
|
+
* <p>The title of the event.</p>
|
|
4296
|
+
* @public
|
|
4297
|
+
*/
|
|
4298
|
+
title: string | undefined;
|
|
4299
|
+
/**
|
|
4300
|
+
* <p>The description of the event.</p>
|
|
4301
|
+
* @public
|
|
4302
|
+
*/
|
|
4303
|
+
description: string | undefined;
|
|
4304
|
+
/**
|
|
4305
|
+
* <p>Type-specific metadata for each system event type.</p>
|
|
4306
|
+
* @public
|
|
4307
|
+
*/
|
|
4308
|
+
eventMetadata?: SystemEventMetadata | undefined;
|
|
4309
|
+
}
|
|
4310
|
+
/**
|
|
4311
|
+
* <p>Represents an event in the system event log.</p>
|
|
4312
|
+
* @public
|
|
4313
|
+
*/
|
|
4314
|
+
export interface SystemEvent {
|
|
4315
|
+
/**
|
|
4316
|
+
* <p>The unique identifier of the event.</p>
|
|
4317
|
+
* @public
|
|
4318
|
+
*/
|
|
4319
|
+
eventId: string | undefined;
|
|
4320
|
+
/**
|
|
4321
|
+
* <p>The timestamp of the event.</p>
|
|
4322
|
+
* @public
|
|
4323
|
+
*/
|
|
4324
|
+
timestamp: Date | undefined;
|
|
4325
|
+
/**
|
|
4326
|
+
* <p>The type of the event.</p>
|
|
4327
|
+
* @public
|
|
4328
|
+
*/
|
|
4329
|
+
eventType: SystemEventType | undefined;
|
|
4330
|
+
/**
|
|
4331
|
+
* <p>ARN identifier.</p>
|
|
4332
|
+
* @public
|
|
4333
|
+
*/
|
|
4334
|
+
systemArn: string | undefined;
|
|
4335
|
+
/**
|
|
4336
|
+
* <p>The actor that triggered the event.</p>
|
|
4337
|
+
* @public
|
|
4338
|
+
*/
|
|
4339
|
+
actor: EventActor | undefined;
|
|
4340
|
+
/**
|
|
4341
|
+
* <p>The details of the event.</p>
|
|
4342
|
+
* @public
|
|
4343
|
+
*/
|
|
4344
|
+
eventDetails: SystemEventDetails | undefined;
|
|
4345
|
+
}
|
|
4346
|
+
/**
|
|
4347
|
+
* @public
|
|
4348
|
+
*/
|
|
4349
|
+
export interface ListSystemEventsResponse {
|
|
4350
|
+
/**
|
|
4351
|
+
* <p>The list of system events.</p>
|
|
4352
|
+
* @public
|
|
4353
|
+
*/
|
|
4354
|
+
events: SystemEvent[] | undefined;
|
|
4355
|
+
/**
|
|
4356
|
+
* <p>Pagination token.</p>
|
|
4357
|
+
* @public
|
|
4358
|
+
*/
|
|
4359
|
+
nextToken?: string | undefined;
|
|
4360
|
+
}
|
|
4361
|
+
/**
|
|
4362
|
+
* @public
|
|
4363
|
+
*/
|
|
4364
|
+
export interface ListSystemsRequest {
|
|
4365
|
+
/**
|
|
4366
|
+
* <p>Filter systems by organizational unit (OU) identifier.</p>
|
|
4367
|
+
* @public
|
|
4368
|
+
*/
|
|
4369
|
+
ouId?: string | undefined;
|
|
4370
|
+
/**
|
|
4371
|
+
* <p>Pagination page size.</p>
|
|
4372
|
+
* @public
|
|
4373
|
+
*/
|
|
4374
|
+
maxResults?: number | undefined;
|
|
4375
|
+
/**
|
|
4376
|
+
* <p>Pagination token.</p>
|
|
4377
|
+
* @public
|
|
4378
|
+
*/
|
|
4379
|
+
nextToken?: string | undefined;
|
|
4380
|
+
}
|
|
4381
|
+
/**
|
|
4382
|
+
* <p>Contains summary information about a system.</p>
|
|
4383
|
+
* @public
|
|
4384
|
+
*/
|
|
4385
|
+
export interface SystemSummary {
|
|
4386
|
+
/**
|
|
4387
|
+
* <p>System ID for cross-account use without exposing account structure.</p>
|
|
4388
|
+
* @public
|
|
4389
|
+
*/
|
|
4390
|
+
systemId: string | undefined;
|
|
4391
|
+
/**
|
|
4392
|
+
* <p>Resource name (used in ARN — no spaces allowed).</p>
|
|
4393
|
+
* @public
|
|
4394
|
+
*/
|
|
4395
|
+
name: string | undefined;
|
|
4396
|
+
/**
|
|
4397
|
+
* <p>ARN identifier.</p>
|
|
4398
|
+
* @public
|
|
4399
|
+
*/
|
|
4400
|
+
systemArn?: string | undefined;
|
|
4401
|
+
/**
|
|
4402
|
+
* <p>The number of user journeys in the system.</p>
|
|
4403
|
+
* @public
|
|
4404
|
+
*/
|
|
4405
|
+
userJourneysCount?: number | undefined;
|
|
4406
|
+
/**
|
|
4407
|
+
* <p>The number of services in the system.</p>
|
|
4408
|
+
* @public
|
|
4409
|
+
*/
|
|
4410
|
+
servicesCount?: number | undefined;
|
|
4411
|
+
/**
|
|
4412
|
+
* <p>Displayed only if caller has access.</p>
|
|
4413
|
+
* @public
|
|
4414
|
+
*/
|
|
4415
|
+
organizationId?: string | undefined;
|
|
4416
|
+
/**
|
|
4417
|
+
* <p>Displayed only if caller has access.</p>
|
|
4418
|
+
* @public
|
|
4419
|
+
*/
|
|
4420
|
+
ouId?: string | undefined;
|
|
4421
|
+
/**
|
|
4422
|
+
* <p>The timestamp when the system was created.</p>
|
|
4423
|
+
* @public
|
|
4424
|
+
*/
|
|
4425
|
+
createdAt?: Date | undefined;
|
|
4426
|
+
/**
|
|
4427
|
+
* <p>The timestamp when the system was last updated.</p>
|
|
4428
|
+
* @public
|
|
4429
|
+
*/
|
|
4430
|
+
updatedAt?: Date | undefined;
|
|
4431
|
+
}
|
|
4432
|
+
/**
|
|
4433
|
+
* @public
|
|
4434
|
+
*/
|
|
4435
|
+
export interface ListSystemsResponse {
|
|
4436
|
+
/**
|
|
4437
|
+
* <p>The list of system summaries.</p>
|
|
4438
|
+
* @public
|
|
4439
|
+
*/
|
|
4440
|
+
systemSummaries: SystemSummary[] | undefined;
|
|
4441
|
+
/**
|
|
4442
|
+
* <p>Pagination token.</p>
|
|
4443
|
+
* @public
|
|
4444
|
+
*/
|
|
4445
|
+
nextToken?: string | undefined;
|
|
4446
|
+
}
|
|
4447
|
+
/**
|
|
4448
|
+
* @public
|
|
4449
|
+
*/
|
|
4450
|
+
export interface ListTagsForResourceRequest {
|
|
4451
|
+
/**
|
|
4452
|
+
* <p>ARN identifier.</p>
|
|
4453
|
+
* @public
|
|
4454
|
+
*/
|
|
4455
|
+
resourceArn: string | undefined;
|
|
4456
|
+
}
|
|
4457
|
+
/**
|
|
4458
|
+
* @public
|
|
4459
|
+
*/
|
|
4460
|
+
export interface ListTagsForResourceResponse {
|
|
4461
|
+
/**
|
|
4462
|
+
* <p>Resource tags.</p>
|
|
4463
|
+
* @public
|
|
4464
|
+
*/
|
|
4465
|
+
tags?: Record<string, string> | undefined;
|
|
4466
|
+
}
|
|
4467
|
+
/**
|
|
4468
|
+
* @public
|
|
4469
|
+
*/
|
|
4470
|
+
export interface ListUserJourneysRequest {
|
|
4471
|
+
/**
|
|
4472
|
+
* <p>ARN identifier.</p>
|
|
4473
|
+
* @public
|
|
4474
|
+
*/
|
|
4475
|
+
systemArn: string | undefined;
|
|
4476
|
+
/**
|
|
4477
|
+
* <p>Pagination page size.</p>
|
|
4478
|
+
* @public
|
|
4479
|
+
*/
|
|
4480
|
+
maxResults?: number | undefined;
|
|
4481
|
+
/**
|
|
4482
|
+
* <p>Pagination token.</p>
|
|
4483
|
+
* @public
|
|
4484
|
+
*/
|
|
4485
|
+
nextToken?: string | undefined;
|
|
4486
|
+
}
|
|
4487
|
+
/**
|
|
4488
|
+
* <p>Contains summary information about a user journey.</p>
|
|
4489
|
+
* @public
|
|
4490
|
+
*/
|
|
4491
|
+
export interface UserJourneySummary {
|
|
4492
|
+
/**
|
|
4493
|
+
* <p>The unique identifier of the user journey.</p>
|
|
4494
|
+
* @public
|
|
4495
|
+
*/
|
|
4496
|
+
userJourneyId: string | undefined;
|
|
4497
|
+
/**
|
|
4498
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
4499
|
+
* @public
|
|
4500
|
+
*/
|
|
4501
|
+
name: string | undefined;
|
|
4502
|
+
/**
|
|
4503
|
+
* <p>The timestamp when the user journey was created.</p>
|
|
4504
|
+
* @public
|
|
4505
|
+
*/
|
|
4506
|
+
createdAt?: Date | undefined;
|
|
4507
|
+
/**
|
|
4508
|
+
* <p>The timestamp when the user journey was last updated.</p>
|
|
4509
|
+
* @public
|
|
4510
|
+
*/
|
|
4511
|
+
updatedAt?: Date | undefined;
|
|
4512
|
+
}
|
|
4513
|
+
/**
|
|
4514
|
+
* @public
|
|
4515
|
+
*/
|
|
4516
|
+
export interface ListUserJourneysResponse {
|
|
4517
|
+
/**
|
|
4518
|
+
* <p>The list of user journey summaries.</p>
|
|
4519
|
+
* @public
|
|
4520
|
+
*/
|
|
4521
|
+
userJourneySummaries: UserJourneySummary[] | undefined;
|
|
4522
|
+
/**
|
|
4523
|
+
* <p>Pagination token.</p>
|
|
4524
|
+
* @public
|
|
4525
|
+
*/
|
|
4526
|
+
nextToken?: string | undefined;
|
|
4527
|
+
}
|
|
4528
|
+
/**
|
|
4529
|
+
* @public
|
|
4530
|
+
*/
|
|
4531
|
+
export interface StartFailureModeAssessmentRequest {
|
|
4532
|
+
/**
|
|
4533
|
+
* <p>ARN identifier.</p>
|
|
4534
|
+
* @public
|
|
4535
|
+
*/
|
|
4536
|
+
serviceArn: string | undefined;
|
|
4537
|
+
/**
|
|
4538
|
+
* <p>Idempotency token.</p>
|
|
4539
|
+
* @public
|
|
4540
|
+
*/
|
|
4541
|
+
clientToken?: string | undefined;
|
|
4542
|
+
}
|
|
4543
|
+
/**
|
|
4544
|
+
* @public
|
|
4545
|
+
*/
|
|
4546
|
+
export interface StartFailureModeAssessmentResponse {
|
|
4547
|
+
/**
|
|
4548
|
+
* <p>The unique identifier of the started assessment.</p>
|
|
4549
|
+
* @public
|
|
4550
|
+
*/
|
|
4551
|
+
assessmentId?: string | undefined;
|
|
4552
|
+
/**
|
|
4553
|
+
* <p>ARN identifier.</p>
|
|
4554
|
+
* @public
|
|
4555
|
+
*/
|
|
4556
|
+
serviceArn?: string | undefined;
|
|
4557
|
+
/**
|
|
4558
|
+
* <p>The status of the started assessment.</p>
|
|
4559
|
+
* @public
|
|
4560
|
+
*/
|
|
4561
|
+
assessmentStatus?: AssessmentStatus | undefined;
|
|
4562
|
+
/**
|
|
4563
|
+
* <p>The timestamp when the assessment started.</p>
|
|
4564
|
+
* @public
|
|
4565
|
+
*/
|
|
4566
|
+
startedAt?: Date | undefined;
|
|
4567
|
+
}
|
|
4568
|
+
/**
|
|
4569
|
+
* @public
|
|
4570
|
+
*/
|
|
4571
|
+
export interface TagResourceRequest {
|
|
4572
|
+
/**
|
|
4573
|
+
* <p>ARN identifier.</p>
|
|
4574
|
+
* @public
|
|
4575
|
+
*/
|
|
4576
|
+
resourceArn: string | undefined;
|
|
4577
|
+
/**
|
|
4578
|
+
* <p>Resource tags.</p>
|
|
4579
|
+
* @public
|
|
4580
|
+
*/
|
|
4581
|
+
tags: Record<string, string> | undefined;
|
|
4582
|
+
}
|
|
4583
|
+
/**
|
|
4584
|
+
* @public
|
|
4585
|
+
*/
|
|
4586
|
+
export interface TagResourceResponse {
|
|
4587
|
+
}
|
|
4588
|
+
/**
|
|
4589
|
+
* @public
|
|
4590
|
+
*/
|
|
4591
|
+
export interface UntagResourceRequest {
|
|
4592
|
+
/**
|
|
4593
|
+
* <p>ARN identifier.</p>
|
|
4594
|
+
* @public
|
|
4595
|
+
*/
|
|
4596
|
+
resourceArn: string | undefined;
|
|
4597
|
+
/**
|
|
4598
|
+
* <p>The tag keys to remove from the resource.</p>
|
|
4599
|
+
* @public
|
|
4600
|
+
*/
|
|
4601
|
+
tagKeys: string[] | undefined;
|
|
4602
|
+
}
|
|
4603
|
+
/**
|
|
4604
|
+
* @public
|
|
4605
|
+
*/
|
|
4606
|
+
export interface UntagResourceResponse {
|
|
4607
|
+
}
|
|
4608
|
+
/**
|
|
4609
|
+
* @public
|
|
4610
|
+
*/
|
|
4611
|
+
export interface UpdateAssertionRequest {
|
|
4612
|
+
/**
|
|
4613
|
+
* <p>ARN identifier.</p>
|
|
4614
|
+
* @public
|
|
4615
|
+
*/
|
|
4616
|
+
serviceArn: string | undefined;
|
|
4617
|
+
/**
|
|
4618
|
+
* <p>The unique identifier of the assertion to update.</p>
|
|
4619
|
+
* @public
|
|
4620
|
+
*/
|
|
4621
|
+
assertionId: string | undefined;
|
|
4622
|
+
/**
|
|
4623
|
+
* <p>The updated text content of the assertion.</p>
|
|
4624
|
+
* @public
|
|
4625
|
+
*/
|
|
4626
|
+
text?: string | undefined;
|
|
4627
|
+
}
|
|
4628
|
+
/**
|
|
4629
|
+
* @public
|
|
4630
|
+
*/
|
|
4631
|
+
export interface UpdateAssertionResponse {
|
|
4632
|
+
/**
|
|
4633
|
+
* <p>The updated assertion.</p>
|
|
4634
|
+
* @public
|
|
4635
|
+
*/
|
|
4636
|
+
assertion: Assertion | undefined;
|
|
4637
|
+
}
|
|
4638
|
+
/**
|
|
4639
|
+
* @public
|
|
4640
|
+
*/
|
|
4641
|
+
export interface UpdateDependencyRequest {
|
|
4642
|
+
/**
|
|
4643
|
+
* <p>ARN identifier.</p>
|
|
4644
|
+
* @public
|
|
4645
|
+
*/
|
|
4646
|
+
serviceArn: string | undefined;
|
|
4647
|
+
/**
|
|
4648
|
+
* <p>The identifier of the dependency to update.</p>
|
|
4649
|
+
* @public
|
|
4650
|
+
*/
|
|
4651
|
+
dependencyId: string | undefined;
|
|
4652
|
+
/**
|
|
4653
|
+
* <p>The updated criticality level of the dependency.</p>
|
|
4654
|
+
* @public
|
|
4655
|
+
*/
|
|
4656
|
+
criticality?: DependencyCriticality | undefined;
|
|
4657
|
+
/**
|
|
4658
|
+
* <p>A comment about the dependency.</p>
|
|
4659
|
+
* @public
|
|
4660
|
+
*/
|
|
4661
|
+
comment?: string | undefined;
|
|
4662
|
+
}
|
|
4663
|
+
/**
|
|
4664
|
+
* @public
|
|
4665
|
+
*/
|
|
4666
|
+
export interface UpdateDependencyResponse {
|
|
4667
|
+
/**
|
|
4668
|
+
* <p>The identifier of the updated dependency.</p>
|
|
4669
|
+
* @public
|
|
4670
|
+
*/
|
|
4671
|
+
dependencyId: string | undefined;
|
|
4672
|
+
/**
|
|
4673
|
+
* <p>The name of the updated dependency.</p>
|
|
4674
|
+
* @public
|
|
4675
|
+
*/
|
|
4676
|
+
dependencyName: string | undefined;
|
|
4677
|
+
/**
|
|
4678
|
+
* <p>The location of the dependency.</p>
|
|
4679
|
+
* @public
|
|
4680
|
+
*/
|
|
4681
|
+
location: string | undefined;
|
|
4682
|
+
/**
|
|
4683
|
+
* <p>The criticality level of the dependency.</p>
|
|
4684
|
+
* @public
|
|
4685
|
+
*/
|
|
4686
|
+
criticality: DependencyCriticality | undefined;
|
|
4687
|
+
/**
|
|
4688
|
+
* <p>The comment about the dependency.</p>
|
|
4689
|
+
* @public
|
|
4690
|
+
*/
|
|
4691
|
+
comment?: string | undefined;
|
|
4692
|
+
/**
|
|
4693
|
+
* <p>The provider of the dependency.</p>
|
|
4694
|
+
* @public
|
|
4695
|
+
*/
|
|
4696
|
+
provider?: string | undefined;
|
|
4697
|
+
/**
|
|
4698
|
+
* <p>The timestamp when the dependency was updated.</p>
|
|
4699
|
+
* @public
|
|
4700
|
+
*/
|
|
4701
|
+
updatedAt: Date | undefined;
|
|
4702
|
+
}
|
|
4703
|
+
/**
|
|
4704
|
+
* @public
|
|
4705
|
+
*/
|
|
4706
|
+
export interface UpdateFailureModeFindingRequest {
|
|
4707
|
+
/**
|
|
4708
|
+
* <p>The identifier of the finding to update.</p>
|
|
4709
|
+
* @public
|
|
4710
|
+
*/
|
|
4711
|
+
findingId: string | undefined;
|
|
4712
|
+
/**
|
|
4713
|
+
* <p>The new status for the finding.</p>
|
|
4714
|
+
* @public
|
|
4715
|
+
*/
|
|
4716
|
+
status: FindingStatus | undefined;
|
|
4717
|
+
/**
|
|
4718
|
+
* <p>ARN identifier.</p>
|
|
4719
|
+
* @public
|
|
4720
|
+
*/
|
|
4721
|
+
serviceArn: string | undefined;
|
|
4722
|
+
/**
|
|
4723
|
+
* <p>A comment about the finding update.</p>
|
|
4724
|
+
* @public
|
|
4725
|
+
*/
|
|
4726
|
+
comment?: string | undefined;
|
|
4727
|
+
}
|
|
4728
|
+
/**
|
|
4729
|
+
* @public
|
|
4730
|
+
*/
|
|
4731
|
+
export interface UpdateFailureModeFindingResponse {
|
|
4732
|
+
/**
|
|
4733
|
+
* <p>The updated finding.</p>
|
|
4734
|
+
* @public
|
|
4735
|
+
*/
|
|
4736
|
+
finding?: Finding | undefined;
|
|
4737
|
+
}
|
|
4738
|
+
/**
|
|
4739
|
+
* @public
|
|
4740
|
+
*/
|
|
4741
|
+
export interface UpdatePolicyRequest {
|
|
4742
|
+
/**
|
|
4743
|
+
* <p>ARN identifier.</p>
|
|
4744
|
+
* @public
|
|
4745
|
+
*/
|
|
4746
|
+
policyArn: string | undefined;
|
|
4747
|
+
/**
|
|
4748
|
+
* <p>Resource description for services and policies.</p>
|
|
4749
|
+
* @public
|
|
4750
|
+
*/
|
|
4751
|
+
description?: string | undefined;
|
|
4752
|
+
/**
|
|
4753
|
+
* <p>The updated availability SLO for the policy.</p>
|
|
4754
|
+
* @public
|
|
4755
|
+
*/
|
|
4756
|
+
availabilitySlo?: AvailabilitySlo | undefined;
|
|
4757
|
+
/**
|
|
4758
|
+
* <p>The updated multi-AZ disaster recovery targets for the policy.</p>
|
|
4759
|
+
* @public
|
|
4760
|
+
*/
|
|
4761
|
+
multiAz?: MultiAzTargets | undefined;
|
|
4762
|
+
/**
|
|
4763
|
+
* <p>The updated multi-Region disaster recovery targets for the policy.</p>
|
|
4764
|
+
* @public
|
|
4765
|
+
*/
|
|
4766
|
+
multiRegion?: MultiRegionTargets | undefined;
|
|
4767
|
+
/**
|
|
4768
|
+
* <p>The updated data recovery targets for the policy.</p>
|
|
4769
|
+
* @public
|
|
4770
|
+
*/
|
|
4771
|
+
dataRecovery?: DataRecoveryTargets | undefined;
|
|
4772
|
+
}
|
|
4773
|
+
/**
|
|
4774
|
+
* @public
|
|
4775
|
+
*/
|
|
4776
|
+
export interface UpdatePolicyResponse {
|
|
4777
|
+
/**
|
|
4778
|
+
* <p>The updated policy.</p>
|
|
4779
|
+
* @public
|
|
4780
|
+
*/
|
|
4781
|
+
policy: Policy | undefined;
|
|
4782
|
+
}
|
|
4783
|
+
/**
|
|
4784
|
+
* @public
|
|
4785
|
+
*/
|
|
4786
|
+
export interface UpdateServiceRequest {
|
|
4787
|
+
/**
|
|
4788
|
+
* <p>ARN identifier.</p>
|
|
4789
|
+
* @public
|
|
4790
|
+
*/
|
|
4791
|
+
serviceArn: string | undefined;
|
|
4792
|
+
/**
|
|
4793
|
+
* <p>Resource description for services and policies.</p>
|
|
4794
|
+
* @public
|
|
4795
|
+
*/
|
|
4796
|
+
description?: string | undefined;
|
|
4797
|
+
/**
|
|
4798
|
+
* <p>The updated systems to associate with the service.</p>
|
|
4799
|
+
* @public
|
|
4800
|
+
*/
|
|
4801
|
+
associatedSystems?: AssociatedSystem[] | undefined;
|
|
4802
|
+
/**
|
|
4803
|
+
* <p>ARN identifier.</p>
|
|
4804
|
+
* @public
|
|
4805
|
+
*/
|
|
4806
|
+
policyArn?: string | undefined;
|
|
4807
|
+
/**
|
|
4808
|
+
* <p>The updated AWS Regions where the service operates.</p>
|
|
4809
|
+
* @public
|
|
4810
|
+
*/
|
|
4811
|
+
regions?: string[] | undefined;
|
|
4812
|
+
/**
|
|
4813
|
+
* <p>The updated permission model for the service.</p>
|
|
4814
|
+
* @public
|
|
4815
|
+
*/
|
|
4816
|
+
permissionModel?: PermissionModel | undefined;
|
|
4817
|
+
/**
|
|
4818
|
+
* <p>Caller-settable values for dependency discovery. INITIALIZING is system-managed.</p>
|
|
4819
|
+
* @public
|
|
4820
|
+
*/
|
|
4821
|
+
dependencyDiscovery?: DependencyDiscoveryInput | undefined;
|
|
4822
|
+
/**
|
|
4823
|
+
* <p>Configuration for automatic report generation on a Service.</p>
|
|
4824
|
+
* @public
|
|
4825
|
+
*/
|
|
4826
|
+
reportConfiguration?: ServiceReportConfiguration | undefined;
|
|
4827
|
+
}
|
|
4828
|
+
/**
|
|
4829
|
+
* @public
|
|
4830
|
+
*/
|
|
4831
|
+
export interface UpdateServiceResponse {
|
|
4832
|
+
/**
|
|
4833
|
+
* <p>The updated service.</p>
|
|
4834
|
+
* @public
|
|
4835
|
+
*/
|
|
4836
|
+
service: Service | undefined;
|
|
4837
|
+
}
|
|
4838
|
+
/**
|
|
4839
|
+
* @public
|
|
4840
|
+
*/
|
|
4841
|
+
export interface UpdateServiceFunctionRequest {
|
|
4842
|
+
/**
|
|
4843
|
+
* <p>ARN identifier.</p>
|
|
4844
|
+
* @public
|
|
4845
|
+
*/
|
|
4846
|
+
serviceArn: string | undefined;
|
|
4847
|
+
/**
|
|
4848
|
+
* <p>The identifier of the service function to update.</p>
|
|
4849
|
+
* @public
|
|
4850
|
+
*/
|
|
4851
|
+
serviceFunctionId: string | undefined;
|
|
4852
|
+
/**
|
|
4853
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
4854
|
+
* @public
|
|
4855
|
+
*/
|
|
4856
|
+
name?: string | undefined;
|
|
4857
|
+
/**
|
|
4858
|
+
* <p>Resource description.</p>
|
|
4859
|
+
* @public
|
|
4860
|
+
*/
|
|
4861
|
+
description?: string | undefined;
|
|
4862
|
+
/**
|
|
4863
|
+
* <p>The updated criticality level of the service function.</p>
|
|
4864
|
+
* @public
|
|
4865
|
+
*/
|
|
4866
|
+
criticality?: ServiceFunctionCriticality | undefined;
|
|
4867
|
+
}
|
|
4868
|
+
/**
|
|
4869
|
+
* @public
|
|
4870
|
+
*/
|
|
4871
|
+
export interface UpdateServiceFunctionResponse {
|
|
4872
|
+
/**
|
|
4873
|
+
* <p>The updated service function.</p>
|
|
4874
|
+
* @public
|
|
4875
|
+
*/
|
|
4876
|
+
serviceFunction: ServiceFunction | undefined;
|
|
4877
|
+
}
|
|
4878
|
+
/**
|
|
4879
|
+
* @public
|
|
4880
|
+
*/
|
|
4881
|
+
export interface UpdateSystemRequest {
|
|
4882
|
+
/**
|
|
4883
|
+
* <p>ARN identifier.</p>
|
|
4884
|
+
* @public
|
|
4885
|
+
*/
|
|
4886
|
+
systemArn: string | undefined;
|
|
4887
|
+
/**
|
|
4888
|
+
* <p>Resource description.</p>
|
|
4889
|
+
* @public
|
|
4890
|
+
*/
|
|
4891
|
+
description?: string | undefined;
|
|
4892
|
+
/**
|
|
4893
|
+
* <p>Whether cross-account sharing is enabled for the system.</p>
|
|
4894
|
+
* @public
|
|
4895
|
+
*/
|
|
4896
|
+
sharingEnabled?: boolean | undefined;
|
|
4897
|
+
}
|
|
4898
|
+
/**
|
|
4899
|
+
* @public
|
|
4900
|
+
*/
|
|
4901
|
+
export interface UpdateSystemResponse {
|
|
4902
|
+
/**
|
|
4903
|
+
* <p>The updated system.</p>
|
|
4904
|
+
* @public
|
|
4905
|
+
*/
|
|
4906
|
+
system: System | undefined;
|
|
4907
|
+
}
|
|
4908
|
+
/**
|
|
4909
|
+
* @public
|
|
4910
|
+
*/
|
|
4911
|
+
export interface UpdateUserJourneyRequest {
|
|
4912
|
+
/**
|
|
4913
|
+
* <p>ARN identifier.</p>
|
|
4914
|
+
* @public
|
|
4915
|
+
*/
|
|
4916
|
+
systemArn: string | undefined;
|
|
4917
|
+
/**
|
|
4918
|
+
* <p>The identifier of the user journey to update.</p>
|
|
4919
|
+
* @public
|
|
4920
|
+
*/
|
|
4921
|
+
userJourneyId: string | undefined;
|
|
4922
|
+
/**
|
|
4923
|
+
* <p>Entity label (not part of ARN — spaces allowed).</p>
|
|
4924
|
+
* @public
|
|
4925
|
+
*/
|
|
4926
|
+
name?: string | undefined;
|
|
4927
|
+
/**
|
|
4928
|
+
* <p>Resource description.</p>
|
|
4929
|
+
* @public
|
|
4930
|
+
*/
|
|
4931
|
+
description?: string | undefined;
|
|
4932
|
+
/**
|
|
4933
|
+
* <p>ARN identifier.</p>
|
|
4934
|
+
* @public
|
|
4935
|
+
*/
|
|
4936
|
+
policyArn?: string | undefined;
|
|
4937
|
+
}
|
|
4938
|
+
/**
|
|
4939
|
+
* @public
|
|
4940
|
+
*/
|
|
4941
|
+
export interface UpdateUserJourneyResponse {
|
|
4942
|
+
/**
|
|
4943
|
+
* <p>The updated user journey.</p>
|
|
4944
|
+
* @public
|
|
4945
|
+
*/
|
|
4946
|
+
userJourney: UserJourney | undefined;
|
|
4947
|
+
}
|