@ndlib/ndlib-cdk2 1.0.7 → 1.0.9
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/README.md +46 -0
- package/lib/dashboards/summary-dashboard.js +2 -2
- package/lib/ec2s/ec2-with-database.js +1 -0
- package/lib/edge-lambdas/spaRedirectionLambda/index.js +1 -1
- package/lib/edge-lambdas/transclusionLambda/index.js +1 -1
- package/lib/edge-lambdas/transclusionLambda/src/getFromS3.d.ts +3 -0
- package/lib/edge-lambdas/transclusionLambda/src/getFromS3.js +20 -0
- package/lib/edge-lambdas/transclusionLambda/src/getFromS3.ts +20 -0
- package/lib/edge-lambdas/transclusionLambda/src/handler.d.ts +7 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/.package-lock.json +4 -4
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/.yarn-integrity +107 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/README.md +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/convertToBuffer.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/isEmptyData.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/numToUint8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/numToUint8.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +218 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +284 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/package.json +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/tsconfig.json +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortController.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortSignal.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-es/AbortController.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-es/AbortSignal.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/AbortController.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/AbortSignal.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/CodePipeline.js +592 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/CodePipelineClient.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/AcknowledgeJobCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/AcknowledgeThirdPartyJobCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/CreateCustomActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/CreatePipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeleteCustomActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeletePipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeleteWebhookCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeregisterWebhookWithThirdPartyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DisableStageTransitionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/EnableStageTransitionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetJobDetailsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetPipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetPipelineExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetPipelineStateCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetThirdPartyJobDetailsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListActionExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListActionTypesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListPipelineExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListPipelinesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListWebhooksCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PollForJobsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PollForThirdPartyJobsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutActionRevisionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutApprovalResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutJobFailureResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutJobSuccessResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutThirdPartyJobFailureResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutThirdPartyJobSuccessResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutWebhookCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/RegisterWebhookWithThirdPartyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/RetryStageExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/StartPipelineExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/StopPipelineExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/UpdateActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/UpdatePipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/index.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/models/CodePipelineServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/models/models_0.js +1151 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/Interfaces.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListActionExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListActionTypesPaginator.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListPipelineExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListPipelinesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListTagsForResourcePaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListWebhooksPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/protocols/Aws_json1_1.js +4307 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.browser.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/CodePipeline.js +588 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/CodePipelineClient.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/AcknowledgeJobCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/CreateCustomActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/CreatePipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeleteCustomActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeletePipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeleteWebhookCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DisableStageTransitionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/EnableStageTransitionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetJobDetailsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetPipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetPipelineExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetPipelineStateCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetThirdPartyJobDetailsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListActionExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListActionTypesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListPipelineExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListPipelinesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListWebhooksCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PollForJobsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PollForThirdPartyJobsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutActionRevisionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutApprovalResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutJobFailureResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutJobSuccessResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutWebhookCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/RetryStageExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/StartPipelineExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/StopPipelineExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/TagResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/UntagResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/UpdateActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/UpdatePipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/index.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/models/CodePipelineServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/models/models_0.js +972 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/Interfaces.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListActionExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListActionTypesPaginator.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListPipelineExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListPipelinesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListTagsForResourcePaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListWebhooksPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/protocols/Aws_json1_1.js +4225 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.browser.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/CodePipeline.d.ts +570 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/CodePipelineClient.d.ts +374 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/AcknowledgeJobCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/CreateCustomActionTypeCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/CreatePipelineCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeletePipelineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeleteWebhookCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DisableStageTransitionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/EnableStageTransitionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetActionTypeCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetJobDetailsCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetPipelineCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetPipelineExecutionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetPipelineStateCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListActionExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListActionTypesCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListPipelineExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListPipelinesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListWebhooksCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PollForJobsCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutActionRevisionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutApprovalResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutJobFailureResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutJobSuccessResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutWebhookCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/RetryStageExecutionCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/StartPipelineExecutionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/StopPipelineExecutionCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/UpdateActionTypeCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/UpdatePipelineCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/index.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/models/CodePipelineServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/models/models_0.d.ts +3823 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListActionExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListActionTypesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListPipelinesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListWebhooksPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/protocols/Aws_json1_1.d.ts +119 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.native.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/CodePipeline.d.ts +667 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/CodePipelineClient.d.ts +347 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/AcknowledgeJobCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/AcknowledgeThirdPartyJobCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/CreateCustomActionTypeCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeleteCustomActionTypeCommand.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DisableStageTransitionCommand.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/EnableStageTransitionCommand.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetActionTypeCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetJobDetailsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetPipelineCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetPipelineExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetPipelineStateCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetThirdPartyJobDetailsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListActionExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListActionTypesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PollForJobsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PollForThirdPartyJobsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutActionRevisionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutApprovalResultCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutJobFailureResultCommand.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutJobSuccessResultCommand.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutThirdPartyJobFailureResultCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutThirdPartyJobSuccessResultCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutWebhookCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/RegisterWebhookWithThirdPartyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/RetryStageExecutionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/UpdateActionTypeCommand.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/index.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/models/CodePipelineServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/models/models_0.d.ts +1439 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListActionExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListActionTypesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListWebhooksPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +473 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/SSM.js +2077 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/SSMClient.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AddTagsToResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AssociateOpsItemRelatedItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelCommandCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelMaintenanceWindowExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateActivationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationBatchCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreatePatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteActivationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteInventoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParameterCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParametersCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeletePatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourcePolicyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterManagedInstanceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterPatchBaselineForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTargetFromMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTaskFromMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeActivationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionTargetsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationStepExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAvailablePatchesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentPermissionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectiveInstanceAssociationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceAssociationsStatusCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceInformationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInventoryDeletionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowScheduleCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTargetsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTasksCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsForTargetCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeOpsItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeParametersCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchBaselinesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupStateCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchPropertiesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeSessionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DisassociateOpsItemRelatedItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetAutomationExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCalendarStateCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCommandInvocationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetConnectionStatusCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDefaultPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDeployablePatchSnapshotForInstanceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventoryCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventorySchemaCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowTaskCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsSummaryCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterHistoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersByPathCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetResourcePoliciesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetServiceSettingCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/LabelParameterVersionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationVersionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandInvocationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceSummariesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentMetadataHistoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentVersionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListInventoryEntriesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemEventsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemRelatedItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceComplianceSummariesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ModifyDocumentPermissionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutComplianceItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutInventoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutParameterCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutResourcePolicyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterDefaultPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterPatchBaselineForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTargetWithMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTaskWithMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RemoveTagsFromResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResetServiceSettingCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResumeSessionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendAutomationSignalCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendCommandCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAssociationsOnceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAutomationExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartChangeRequestExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartSessionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StopAutomationExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/TerminateSessionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UnlabelParameterVersionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationStatusCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentDefaultVersionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTargetCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTaskCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateManagedInstanceRoleCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdatePatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateServiceSettingCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/index.js +141 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_0.js +2122 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_1.js +1881 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_2.js +271 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeActivationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionTargetsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationStepExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAvailablePatchesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceAssociationsStatusPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceInformationPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInventoryDeletionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowSchedulePaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTargetsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTasksPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeOpsItemsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeParametersPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchBaselinesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchGroupsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchPropertiesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeSessionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventoryPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventorySchemaPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetOpsSummaryPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParameterHistoryPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParametersByPathPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetResourcePoliciesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/Interfaces.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationVersionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandInvocationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceItemsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceSummariesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentVersionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemEventsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemRelatedItemsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsMetadataPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceComplianceSummariesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceDataSyncPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/index.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/protocols/Aws_json1_1.js +15578 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/waitForCommandExecuted.js +102 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +2073 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/models_0.js +1862 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/models_1.js +1609 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/models_2.js +227 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeActivationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionTargetsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationStepExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAvailablePatchesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceAssociationsStatusPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceInformationPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInventoryDeletionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowSchedulePaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTargetsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTasksPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeOpsItemsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeParametersPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchBaselinesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchGroupsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchPropertiesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeSessionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventoryPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventorySchemaPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetOpsSummaryPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParameterHistoryPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParametersByPathPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetResourcePoliciesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/Interfaces.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationVersionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandInvocationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceItemsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceSummariesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentVersionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemEventsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemRelatedItemsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsMetadataPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceComplianceSummariesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceDataSyncPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/protocols/Aws_json1_1.js +15294 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/waiters/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +97 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1647 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +314 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +83 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +100 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +73 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +7138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +8291 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/models_2.d.ts +1474 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeActivationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAvailablePatchesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceInformationPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInventoryDeletionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeOpsItemsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeParametersPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchBaselinesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchGroupsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchPropertiesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeSessionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventoryPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventorySchemaPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetOpsSummaryPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParameterHistoryPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParametersByPathPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationVersionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandInvocationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceItemsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceSummariesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentVersionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemEventsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemRelatedItemsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsMetadataPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceComplianceSummariesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceDataSyncPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/protocols/Aws_json1_1.d.ts +416 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +2464 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +939 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +2539 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +2715 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_2.d.ts +459 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeActivationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAvailablePatchesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceInformationPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInventoryDeletionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeOpsItemsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeParametersPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchBaselinesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchGroupsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchPropertiesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeSessionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventoryPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventorySchemaPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetOpsSummaryPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParameterHistoryPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParametersByPathPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationVersionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandInvocationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceItemsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceSummariesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentVersionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemEventsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemRelatedItemsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsMetadataPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceComplianceSummariesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceDataSyncPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +1661 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/waiters/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/models/SSOServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +417 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +87 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +406 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +71 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +157 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +229 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +72 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +127 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +101 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/README.md +244 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDC.js +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDCClient.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/RegisterClientCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/StartDeviceAuthorizationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/SSOOIDCServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/models_0.js +208 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/protocols/Aws_restJson1.js +522 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +187 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +513 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +71 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +177 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +371 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +122 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +169 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/package.json +99 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +127 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +76 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +192 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1083 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/STS.js +123 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +70 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +160 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1064 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +619 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +153 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +124 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +165 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +169 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +72 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +123 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1115 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +140 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +159 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +238 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +84 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/config.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/getRealRegion.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/PartitionHash.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/RegionHash.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/config.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/RegionHash.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-cjs/fromEnv.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/Endpoint.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointMode.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromContainerMetadata.js +70 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/index.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/retry.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromContainerMetadata.js +66 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromInstanceMetadata.js +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/Endpoint.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointMode.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/types.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/types.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/fromIni.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-cjs/defaultProvider.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/ProcessCredentials.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/fromSSO.js +61 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +126 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/fetch-http-handler.js +87 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/request-timeout.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/stream-collector.js +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js +83 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/fetch-http-handler.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-cjs/index.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-es/index.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-types/index.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidFunction.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidProvider.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidFunction.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidProvider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-cjs/index.js +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/endpointMiddleware.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/getEndpointPlugin.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/service-customizations/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/service-customizations/s3.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/endpointMiddleware.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/resolveEndpointConfig.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +81 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/service-customizations/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/service-customizations/s3.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/types.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/types.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/package.json +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/package.json +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/configurations.js +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/defaultRetryQuota.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/delayDecider.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryDecider.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryMiddleware.js +110 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/util.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/util.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/configurations.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/delayDecider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/retryDecider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/types.d.ts +53 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/util.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/deserializerMiddleware.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/serdePlugin.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +108 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +103 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/middleware.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +68 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +225 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +221 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/types.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +61 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/configLoader.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromEnv.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromSharedConfigFiles.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromStatic.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/configLoader.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/fromEnv.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/fromSharedConfigFiles.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/fromStatic.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/configLoader.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/fromEnv.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/get-transformed-headers.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http-handler.js +100 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http2-handler.js +147 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/readable.mock.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/server.mock.js +60 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-connection-timeout.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-socket-timeout.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/collector.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/index.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/readable.mock.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/write-request-body.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/constants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/node-http-handler.js +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/node-http2-handler.js +142 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/readable.mock.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/server.mock.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/set-connection-timeout.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/collector.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/write-request-body.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/constants.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/node-http-handler.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/server.mock.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/collector.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/write-request-body.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/CredentialsProviderError.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/ProviderError.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/TokenProviderError.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/chain.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/fromStatic.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/memoize.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/chain.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/memoize.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/CredentialsProviderError.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ProviderError.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/TokenProviderError.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/chain.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/fromStatic.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/memoize.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/Field.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/FieldPosition.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/Fields.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/httpHandler.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/httpRequest.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/httpResponse.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/isValidHostname.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/Field.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/FieldPosition.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/Fields.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/Field.d.ts +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/FieldPosition.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/Fields.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/httpHandler.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/httpRequest.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/httpResponse.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/Field.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/FieldPosition.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/Fields.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-cjs/index.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-es/index.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-cjs/index.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-es/index.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-cjs/constants.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-cjs/index.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-es/index.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/constants.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getHomeDir.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getProfileData.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getProfileName.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/parseIni.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/slurpFile.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getHomeDir.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getProfileData.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getSsoSessionData.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/parseIni.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/parseKnownFiles.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/slurpFile.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getProfileData.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getProfileName.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/slurpFile.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileData.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/types.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +175 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/cloneRequest.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/constants.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/credentialDerivation.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalHeaders.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalQuery.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/getPayloadHash.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/headerUtil.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/index.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/moveHeadersToQuery.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/prepareRequest.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/suite.fixture.js +402 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/utilDate.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +171 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/constants.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/suite.fixture.js +399 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +64 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/cloneRequest.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/constants.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +64 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/NoOpLogger.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/client.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/command.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/date-utils.js +195 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/default-error-handler.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/defaults-mode.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/exceptions.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/extended-encode-uri-component.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/get-array-if-single-item.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/get-value-from-text-node.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/index.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/lazy-json.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/object-mapping.js +74 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +253 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/resolve-path.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/ser-utils.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/split-every.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/client.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/command.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/constants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js +187 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/index.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js +69 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +230 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/NoOpLogger.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/client.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/command.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/constants.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/date-utils.d.ts +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/default-error-handler.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/exceptions.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/get-array-if-single-item.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/get-value-from-text-node.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/index.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/lazy-json.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/object-mapping.d.ts +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +220 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/resolve-path.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ser-utils.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/split-every.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/exceptions.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/object-mapping.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/resolve-path.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/README.md +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +82 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +78 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/package.json +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/abort.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/auth.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/checksum.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/client.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/command.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/credentials.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/crypto.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/dns.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/http.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/index.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/logger.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/middleware.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/pagination.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/profile.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/request.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/response.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/retry.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/serde.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/shapes.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/signature.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/stream.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/token.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/transfer.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/util.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/waiter.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/auth.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/endpoint.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/index.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/abort.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/auth.d.ts +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/client.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/command.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/dns.d.ts +68 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +96 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/http.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/index.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/logger.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +367 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/profile.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/request.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/response.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/retry.d.ts +112 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/serde.d.ts +102 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/signature.d.ts +100 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/stream.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/token.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +99 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +214 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/util.d.ts +131 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-es/index.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/README.md +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/constants.browser.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/fromBase64.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/toBase64.browser.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/toBase64.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/constants.browser.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/fromBase64.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/toBase64.browser.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/toBase64.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/constants.browser.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/toBase64.browser.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/toBase64.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/constants.browser.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/fromBase64.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/toBase64.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/package.json +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/calculateBodyLength.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-cjs/calculateBodyLength.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-es/calculateBodyLength.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-cjs/index.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-es/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-types/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-cjs/booleanSelector.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/booleanSelector.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/package.json +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/constants.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/constants.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/constants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/package.json +58 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/debugId.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/toDebugString.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +181 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/booleanEquals.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttr.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttrPathList.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isSet.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isValidHostLabel.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/not.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/parseURL.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/stringEquals.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/substring.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/uriEncode.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/callFunction.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateCondition.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateConditions.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateExpression.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateRules.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTemplate.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperties.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperty.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointUrl.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getReferenceValue.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/debug/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +181 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/not.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/substring.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/callFunction.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateExpression.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateRules.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTreeRule.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperties.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperty.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/index.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/index.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/not.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/callFunction.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateExpression.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateRules.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/package.json +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-cjs/index.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/README.md +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-cjs/normalizeProvider.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/normalizeProvider.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/package.json +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/README.md +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/AdaptiveRetryStrategy.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/DefaultRateLimiter.js +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/StandardRetryStrategy.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/config.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/constants.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/defaultRetryToken.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/DefaultRateLimiter.js +99 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/StandardRetryStrategy.js +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/config.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/constants.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/defaultRetryToken.js +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/DefaultRateLimiter.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/StandardRetryStrategy.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/config.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/constants.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/defaultRetryToken.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/config.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/constants.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/types.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/types.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/package.json +60 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri-path.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri-path.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/README.md +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/fromUtf8.browser.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/fromUtf8.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/toUint8Array.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/toUtf8.browser.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/toUtf8.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/fromUtf8.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/toUint8Array.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/toUtf8.browser.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/toUtf8.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/toUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/toUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/toUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/package.json +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/pureJs.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/whatwgEncodingApi.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/pureJs.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/whatwgEncodingApi.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/createWaiter.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/poller.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/sleep.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/validate.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/waiter.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/createWaiter.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/poller.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/utils/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/utils/sleep.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/utils/validate.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/waiter.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/poller.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/utils/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/utils/sleep.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/utils/validate.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/waiter.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/CHANGELOG.md +504 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/cli/man.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/cli/read.js +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/fxp.d.ts +97 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/fxp.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +258 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +109 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +117 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +561 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/node2json.js +101 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/LICENSE +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/README.md +135 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/index.js +203 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/package.json +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/README.md +259 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/lib/path.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/minimatch.js +944 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/package.json +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/minimatch/README.md +22 -1
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/minimatch/minimatch.js +93 -69
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/minimatch/package.json +6 -3
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/.vscode/launch.json +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/LICENSE +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/README.md +86 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/package.json +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/strnum.js +124 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/strnum.test.js +150 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/tslib/SECURITY.md +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/package-lock.json +1820 -0
- package/lib/newman-runner.js +3 -3
- package/lib/pipeline-s3-sync.js +1 -1
- package/lib/slack-integration/index.d.ts +2 -0
- package/lib/slack-integration/index.js +18 -0
- package/lib/slack-integration/slack-integrated-manual-approval.d.ts +70 -0
- package/lib/slack-integration/slack-integrated-manual-approval.js +51 -0
- package/lib/slack-integration/slack-subscription.d.ts +24 -0
- package/lib/slack-integration/slack-subscription.js +27 -0
- package/lib/source-watcher.js +1 -1
- package/package.json +7 -8
|
@@ -0,0 +1,3823 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Represents the input of an AcknowledgeJob action.</p>
|
|
5
|
+
*/
|
|
6
|
+
export interface AcknowledgeJobInput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The unique system-generated ID of the job for which you want to confirm
|
|
9
|
+
* receipt.</p>
|
|
10
|
+
*/
|
|
11
|
+
jobId: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>A system-generated random number that AWS CodePipeline uses to ensure that the job
|
|
14
|
+
* is being worked on by only one job worker. Get this number from the response of the
|
|
15
|
+
* <a>PollForJobs</a> request that returned this job.</p>
|
|
16
|
+
*/
|
|
17
|
+
nonce: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
export declare enum JobStatus {
|
|
20
|
+
Created = "Created",
|
|
21
|
+
Dispatched = "Dispatched",
|
|
22
|
+
Failed = "Failed",
|
|
23
|
+
InProgress = "InProgress",
|
|
24
|
+
Queued = "Queued",
|
|
25
|
+
Succeeded = "Succeeded",
|
|
26
|
+
TimedOut = "TimedOut"
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>Represents the output of an AcknowledgeJob action.</p>
|
|
30
|
+
*/
|
|
31
|
+
export interface AcknowledgeJobOutput {
|
|
32
|
+
/**
|
|
33
|
+
* <p>Whether the job worker has received the specified job.</p>
|
|
34
|
+
*/
|
|
35
|
+
status?: JobStatus | string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* <p>The nonce was specified in an invalid format.</p>
|
|
39
|
+
*/
|
|
40
|
+
export declare class InvalidNonceException extends __BaseException {
|
|
41
|
+
readonly name: "InvalidNonceException";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
constructor(opts: __ExceptionOptionType<InvalidNonceException, __BaseException>);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
50
|
+
*/
|
|
51
|
+
export declare class JobNotFoundException extends __BaseException {
|
|
52
|
+
readonly name: "JobNotFoundException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
constructor(opts: __ExceptionOptionType<JobNotFoundException, __BaseException>);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
61
|
+
*/
|
|
62
|
+
export declare class ValidationException extends __BaseException {
|
|
63
|
+
readonly name: "ValidationException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>Represents the input of an AcknowledgeThirdPartyJob action.</p>
|
|
72
|
+
*/
|
|
73
|
+
export interface AcknowledgeThirdPartyJobInput {
|
|
74
|
+
/**
|
|
75
|
+
* <p>The unique system-generated ID of the job.</p>
|
|
76
|
+
*/
|
|
77
|
+
jobId: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>A system-generated random number that AWS CodePipeline uses to ensure that the job
|
|
80
|
+
* is being worked on by only one job worker. Get this number from the response to a <a>GetThirdPartyJobDetails</a> request.</p>
|
|
81
|
+
*/
|
|
82
|
+
nonce: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>The clientToken portion of the clientId and clientToken pair used to verify that
|
|
85
|
+
* the calling entity is allowed access to the job and its details.</p>
|
|
86
|
+
*/
|
|
87
|
+
clientToken: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* <p>Represents the output of an AcknowledgeThirdPartyJob action.</p>
|
|
91
|
+
*/
|
|
92
|
+
export interface AcknowledgeThirdPartyJobOutput {
|
|
93
|
+
/**
|
|
94
|
+
* <p>The status information for the third party job, if any.</p>
|
|
95
|
+
*/
|
|
96
|
+
status?: JobStatus | string;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* <p>The client token was specified in an invalid format</p>
|
|
100
|
+
*/
|
|
101
|
+
export declare class InvalidClientTokenException extends __BaseException {
|
|
102
|
+
readonly name: "InvalidClientTokenException";
|
|
103
|
+
readonly $fault: "client";
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
|
|
108
|
+
}
|
|
109
|
+
export declare enum ActionCategory {
|
|
110
|
+
Approval = "Approval",
|
|
111
|
+
Build = "Build",
|
|
112
|
+
Deploy = "Deploy",
|
|
113
|
+
Invoke = "Invoke",
|
|
114
|
+
Source = "Source",
|
|
115
|
+
Test = "Test"
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* <p>Represents information about an action configuration.</p>
|
|
119
|
+
*/
|
|
120
|
+
export interface ActionConfiguration {
|
|
121
|
+
/**
|
|
122
|
+
* <p>The configuration data for the action.</p>
|
|
123
|
+
*/
|
|
124
|
+
configuration?: Record<string, string>;
|
|
125
|
+
}
|
|
126
|
+
export declare enum ActionConfigurationPropertyType {
|
|
127
|
+
Boolean = "Boolean",
|
|
128
|
+
Number = "Number",
|
|
129
|
+
String = "String"
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* <p>Represents information about an action configuration property.</p>
|
|
133
|
+
*/
|
|
134
|
+
export interface ActionConfigurationProperty {
|
|
135
|
+
/**
|
|
136
|
+
* <p>The name of the action configuration property.</p>
|
|
137
|
+
*/
|
|
138
|
+
name: string | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* <p>Whether the configuration property is a required value.</p>
|
|
141
|
+
*/
|
|
142
|
+
required: boolean | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* <p>Whether the configuration property is a key.</p>
|
|
145
|
+
*/
|
|
146
|
+
key: boolean | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* <p>Whether the configuration property is secret. Secrets are hidden from all calls
|
|
149
|
+
* except for <code>GetJobDetails</code>, <code>GetThirdPartyJobDetails</code>,
|
|
150
|
+
* <code>PollForJobs</code>, and <code>PollForThirdPartyJobs</code>.</p>
|
|
151
|
+
* <p>When updating a pipeline, passing * * * * * without changing any other values of
|
|
152
|
+
* the action preserves the previous value of the secret.</p>
|
|
153
|
+
*/
|
|
154
|
+
secret: boolean | undefined;
|
|
155
|
+
/**
|
|
156
|
+
* <p>Indicates that the property is used with <code>PollForJobs</code>. When creating a
|
|
157
|
+
* custom action, an action can have up to one queryable property. If it has one, that
|
|
158
|
+
* property must be both required and not secret.</p>
|
|
159
|
+
* <p>If you create a pipeline with a custom action type, and that custom action contains
|
|
160
|
+
* a queryable property, the value for that configuration property is subject to other
|
|
161
|
+
* restrictions. The value must be less than or equal to twenty (20) characters. The value
|
|
162
|
+
* can contain only alphanumeric characters, underscores, and hyphens.</p>
|
|
163
|
+
*/
|
|
164
|
+
queryable?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* <p>The description of the action configuration property that is displayed to
|
|
167
|
+
* users.</p>
|
|
168
|
+
*/
|
|
169
|
+
description?: string;
|
|
170
|
+
/**
|
|
171
|
+
* <p>The type of the configuration property.</p>
|
|
172
|
+
*/
|
|
173
|
+
type?: ActionConfigurationPropertyType | string;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* <p>Represents the context of an action in the stage of a pipeline to a job
|
|
177
|
+
* worker.</p>
|
|
178
|
+
*/
|
|
179
|
+
export interface ActionContext {
|
|
180
|
+
/**
|
|
181
|
+
* <p>The name of the action in the context of a job.</p>
|
|
182
|
+
*/
|
|
183
|
+
name?: string;
|
|
184
|
+
/**
|
|
185
|
+
* <p>The system-generated unique ID that corresponds to an action's execution.</p>
|
|
186
|
+
*/
|
|
187
|
+
actionExecutionId?: string;
|
|
188
|
+
}
|
|
189
|
+
export declare enum ActionOwner {
|
|
190
|
+
AWS = "AWS",
|
|
191
|
+
Custom = "Custom",
|
|
192
|
+
ThirdParty = "ThirdParty"
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* <p>Represents information about an action type.</p>
|
|
196
|
+
*/
|
|
197
|
+
export interface ActionTypeId {
|
|
198
|
+
/**
|
|
199
|
+
* <p>A category defines what kind of action can be taken in the stage, and constrains
|
|
200
|
+
* the provider type for the action. Valid categories are limited to one of the following
|
|
201
|
+
* values. </p>
|
|
202
|
+
* <ul>
|
|
203
|
+
* <li>
|
|
204
|
+
* <p>Source</p>
|
|
205
|
+
* </li>
|
|
206
|
+
* <li>
|
|
207
|
+
* <p>Build</p>
|
|
208
|
+
* </li>
|
|
209
|
+
* <li>
|
|
210
|
+
* <p>Test</p>
|
|
211
|
+
* </li>
|
|
212
|
+
* <li>
|
|
213
|
+
* <p>Deploy</p>
|
|
214
|
+
* </li>
|
|
215
|
+
* <li>
|
|
216
|
+
* <p>Invoke</p>
|
|
217
|
+
* </li>
|
|
218
|
+
* <li>
|
|
219
|
+
* <p>Approval</p>
|
|
220
|
+
* </li>
|
|
221
|
+
* </ul>
|
|
222
|
+
*/
|
|
223
|
+
category: ActionCategory | string | undefined;
|
|
224
|
+
/**
|
|
225
|
+
* <p>The creator of the action being called. There are three valid values for the
|
|
226
|
+
* <code>Owner</code> field in the action category section within your pipeline
|
|
227
|
+
* structure: <code>AWS</code>, <code>ThirdParty</code>, and <code>Custom</code>. For more
|
|
228
|
+
* information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers">Valid Action Types and Providers in CodePipeline</a>.</p>
|
|
229
|
+
*/
|
|
230
|
+
owner: ActionOwner | string | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* <p>The provider of the service being called by the action. Valid providers are
|
|
233
|
+
* determined by the action category. For example, an action in the Deploy category type
|
|
234
|
+
* might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy. For
|
|
235
|
+
* more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers">Valid Action Types and Providers in CodePipeline</a>.</p>
|
|
236
|
+
*/
|
|
237
|
+
provider: string | undefined;
|
|
238
|
+
/**
|
|
239
|
+
* <p>A string that describes the action version.</p>
|
|
240
|
+
*/
|
|
241
|
+
version: string | undefined;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* <p>Represents information about an artifact to be worked on, such as a test or build
|
|
245
|
+
* artifact.</p>
|
|
246
|
+
*/
|
|
247
|
+
export interface InputArtifact {
|
|
248
|
+
/**
|
|
249
|
+
* <p>The name of the artifact to be worked on (for example, "My App").</p>
|
|
250
|
+
* <p>The input artifact of an action must exactly match the output artifact declared in
|
|
251
|
+
* a preceding action, but the input artifact does not have to be the next action in strict
|
|
252
|
+
* sequence from the action that provided the output artifact. Actions in parallel can
|
|
253
|
+
* declare different output artifacts, which are in turn consumed by different following
|
|
254
|
+
* actions.</p>
|
|
255
|
+
*/
|
|
256
|
+
name: string | undefined;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* <p>Represents information about the output of an action.</p>
|
|
260
|
+
*/
|
|
261
|
+
export interface OutputArtifact {
|
|
262
|
+
/**
|
|
263
|
+
* <p>The name of the output of an artifact, such as "My App".</p>
|
|
264
|
+
* <p>The input artifact of an action must exactly match the output artifact declared in
|
|
265
|
+
* a preceding action, but the input artifact does not have to be the next action in strict
|
|
266
|
+
* sequence from the action that provided the output artifact. Actions in parallel can
|
|
267
|
+
* declare different output artifacts, which are in turn consumed by different following
|
|
268
|
+
* actions.</p>
|
|
269
|
+
* <p>Output artifact names must be unique within a pipeline.</p>
|
|
270
|
+
*/
|
|
271
|
+
name: string | undefined;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* <p>Represents information about an action declaration.</p>
|
|
275
|
+
*/
|
|
276
|
+
export interface ActionDeclaration {
|
|
277
|
+
/**
|
|
278
|
+
* <p>The action declaration's name.</p>
|
|
279
|
+
*/
|
|
280
|
+
name: string | undefined;
|
|
281
|
+
/**
|
|
282
|
+
* <p>Specifies the action type and the provider of the action.</p>
|
|
283
|
+
*/
|
|
284
|
+
actionTypeId: ActionTypeId | undefined;
|
|
285
|
+
/**
|
|
286
|
+
* <p>The order in which actions are run.</p>
|
|
287
|
+
*/
|
|
288
|
+
runOrder?: number;
|
|
289
|
+
/**
|
|
290
|
+
* <p>The action's configuration. These are key-value pairs that specify input values for
|
|
291
|
+
* an action. For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements">Action Structure Requirements in CodePipeline</a>. For the list of
|
|
292
|
+
* configuration properties for the AWS CloudFormation action type in CodePipeline, see
|
|
293
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-action-reference.html">Configuration Properties Reference</a> in the <i>AWS CloudFormation User
|
|
294
|
+
* Guide</i>. For template snippets with examples, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-parameter-override-functions.html">Using Parameter Override Functions with CodePipeline Pipelines</a> in the
|
|
295
|
+
* <i>AWS CloudFormation User Guide</i>.</p>
|
|
296
|
+
* <p>The values can be represented in either JSON or YAML format. For example, the JSON
|
|
297
|
+
* configuration item format is as follows: </p>
|
|
298
|
+
* <p>
|
|
299
|
+
* <i>JSON:</i>
|
|
300
|
+
* </p>
|
|
301
|
+
* <p>
|
|
302
|
+
* <code>"Configuration" : { Key : Value },</code>
|
|
303
|
+
* </p>
|
|
304
|
+
*/
|
|
305
|
+
configuration?: Record<string, string>;
|
|
306
|
+
/**
|
|
307
|
+
* <p>The name or ID of the result of the action declaration, such as a test or build
|
|
308
|
+
* artifact.</p>
|
|
309
|
+
*/
|
|
310
|
+
outputArtifacts?: OutputArtifact[];
|
|
311
|
+
/**
|
|
312
|
+
* <p>The name or ID of the artifact consumed by the action, such as a test or build
|
|
313
|
+
* artifact.</p>
|
|
314
|
+
*/
|
|
315
|
+
inputArtifacts?: InputArtifact[];
|
|
316
|
+
/**
|
|
317
|
+
* <p>The ARN of the IAM service role that performs the declared action. This is assumed
|
|
318
|
+
* through the roleArn for the pipeline.</p>
|
|
319
|
+
*/
|
|
320
|
+
roleArn?: string;
|
|
321
|
+
/**
|
|
322
|
+
* <p>The action declaration's AWS Region, such as us-east-1.</p>
|
|
323
|
+
*/
|
|
324
|
+
region?: string;
|
|
325
|
+
/**
|
|
326
|
+
* <p>The variable namespace associated with the action. All variables produced as output by
|
|
327
|
+
* this action fall under this namespace.</p>
|
|
328
|
+
*/
|
|
329
|
+
namespace?: string;
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* <p>Represents information about an error in AWS CodePipeline.</p>
|
|
333
|
+
*/
|
|
334
|
+
export interface ErrorDetails {
|
|
335
|
+
/**
|
|
336
|
+
* <p>The system ID or number code of the error.</p>
|
|
337
|
+
*/
|
|
338
|
+
code?: string;
|
|
339
|
+
/**
|
|
340
|
+
* <p>The text of the error message.</p>
|
|
341
|
+
*/
|
|
342
|
+
message?: string;
|
|
343
|
+
}
|
|
344
|
+
export declare enum ActionExecutionStatus {
|
|
345
|
+
Abandoned = "Abandoned",
|
|
346
|
+
Failed = "Failed",
|
|
347
|
+
InProgress = "InProgress",
|
|
348
|
+
Succeeded = "Succeeded"
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* <p>Represents information about the run of an action.</p>
|
|
352
|
+
*/
|
|
353
|
+
export interface ActionExecution {
|
|
354
|
+
/**
|
|
355
|
+
* <p>ID of the workflow action execution in the current stage. Use the <a>GetPipelineState</a> action to retrieve the current action execution details
|
|
356
|
+
* of the current stage.</p>
|
|
357
|
+
* <note>
|
|
358
|
+
* <p>For older executions, this field might be empty. The action execution ID is
|
|
359
|
+
* available for executions run on or after March 2020.</p>
|
|
360
|
+
* </note>
|
|
361
|
+
*/
|
|
362
|
+
actionExecutionId?: string;
|
|
363
|
+
/**
|
|
364
|
+
* <p>The status of the action, or for a completed action, the last status of the
|
|
365
|
+
* action.</p>
|
|
366
|
+
*/
|
|
367
|
+
status?: ActionExecutionStatus | string;
|
|
368
|
+
/**
|
|
369
|
+
* <p>A summary of the run of the action.</p>
|
|
370
|
+
*/
|
|
371
|
+
summary?: string;
|
|
372
|
+
/**
|
|
373
|
+
* <p>The last status change of the action.</p>
|
|
374
|
+
*/
|
|
375
|
+
lastStatusChange?: Date;
|
|
376
|
+
/**
|
|
377
|
+
* <p>The system-generated token used to identify a unique approval request. The token
|
|
378
|
+
* for each open approval request can be obtained using the <code>GetPipelineState</code>
|
|
379
|
+
* command. It is used to validate that the approval request corresponding to this token is
|
|
380
|
+
* still valid.</p>
|
|
381
|
+
*/
|
|
382
|
+
token?: string;
|
|
383
|
+
/**
|
|
384
|
+
* <p>The ARN of the user who last changed the pipeline.</p>
|
|
385
|
+
*/
|
|
386
|
+
lastUpdatedBy?: string;
|
|
387
|
+
/**
|
|
388
|
+
* <p>The external ID of the run of the action.</p>
|
|
389
|
+
*/
|
|
390
|
+
externalExecutionId?: string;
|
|
391
|
+
/**
|
|
392
|
+
* <p>The URL of a resource external to AWS that is used when running the action (for
|
|
393
|
+
* example, an external repository URL).</p>
|
|
394
|
+
*/
|
|
395
|
+
externalExecutionUrl?: string;
|
|
396
|
+
/**
|
|
397
|
+
* <p>A percentage of completeness of the action as it runs.</p>
|
|
398
|
+
*/
|
|
399
|
+
percentComplete?: number;
|
|
400
|
+
/**
|
|
401
|
+
* <p>The details of an error returned by a URL external to AWS.</p>
|
|
402
|
+
*/
|
|
403
|
+
errorDetails?: ErrorDetails;
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* <p>The Amazon S3 artifact location for an action's artifacts.</p>
|
|
407
|
+
*/
|
|
408
|
+
export interface S3Location {
|
|
409
|
+
/**
|
|
410
|
+
* <p>The Amazon S3 artifact bucket for an action's artifacts.</p>
|
|
411
|
+
*/
|
|
412
|
+
bucket?: string;
|
|
413
|
+
/**
|
|
414
|
+
* <p>The artifact name.</p>
|
|
415
|
+
*/
|
|
416
|
+
key?: string;
|
|
417
|
+
}
|
|
418
|
+
/**
|
|
419
|
+
* <p>Artifact details for the action execution, such as the artifact location.</p>
|
|
420
|
+
*/
|
|
421
|
+
export interface ArtifactDetail {
|
|
422
|
+
/**
|
|
423
|
+
* <p>The artifact object name for the action execution.</p>
|
|
424
|
+
*/
|
|
425
|
+
name?: string;
|
|
426
|
+
/**
|
|
427
|
+
* <p>The Amazon S3 artifact location for the action execution.</p>
|
|
428
|
+
*/
|
|
429
|
+
s3location?: S3Location;
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* <p>Input information used for an action execution.</p>
|
|
433
|
+
*/
|
|
434
|
+
export interface ActionExecutionInput {
|
|
435
|
+
/**
|
|
436
|
+
* <p>Represents information about an action type.</p>
|
|
437
|
+
*/
|
|
438
|
+
actionTypeId?: ActionTypeId;
|
|
439
|
+
/**
|
|
440
|
+
* <p>Configuration data for an action execution.</p>
|
|
441
|
+
*/
|
|
442
|
+
configuration?: Record<string, string>;
|
|
443
|
+
/**
|
|
444
|
+
* <p>Configuration data for an action execution with all variable references replaced with
|
|
445
|
+
* their real values for the execution.</p>
|
|
446
|
+
*/
|
|
447
|
+
resolvedConfiguration?: Record<string, string>;
|
|
448
|
+
/**
|
|
449
|
+
* <p>The ARN of the IAM service role that performs the declared action. This is assumed
|
|
450
|
+
* through the roleArn for the pipeline. </p>
|
|
451
|
+
*/
|
|
452
|
+
roleArn?: string;
|
|
453
|
+
/**
|
|
454
|
+
* <p>The AWS Region for the action, such as us-east-1.</p>
|
|
455
|
+
*/
|
|
456
|
+
region?: string;
|
|
457
|
+
/**
|
|
458
|
+
* <p>Details of input artifacts of the action that correspond to the action
|
|
459
|
+
* execution.</p>
|
|
460
|
+
*/
|
|
461
|
+
inputArtifacts?: ArtifactDetail[];
|
|
462
|
+
/**
|
|
463
|
+
* <p>The variable namespace associated with the action. All variables produced as output by
|
|
464
|
+
* this action fall under this namespace.</p>
|
|
465
|
+
*/
|
|
466
|
+
namespace?: string;
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* <p>Execution result information, such as the external execution ID.</p>
|
|
470
|
+
*/
|
|
471
|
+
export interface ActionExecutionResult {
|
|
472
|
+
/**
|
|
473
|
+
* <p>The action provider's external ID for the action execution.</p>
|
|
474
|
+
*/
|
|
475
|
+
externalExecutionId?: string;
|
|
476
|
+
/**
|
|
477
|
+
* <p>The action provider's summary for the action execution.</p>
|
|
478
|
+
*/
|
|
479
|
+
externalExecutionSummary?: string;
|
|
480
|
+
/**
|
|
481
|
+
* <p>The deepest external link to the external resource (for example, a repository URL or
|
|
482
|
+
* deployment endpoint) that is used when running the action.</p>
|
|
483
|
+
*/
|
|
484
|
+
externalExecutionUrl?: string;
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* <p>Output details listed for an action execution, such as the action execution
|
|
488
|
+
* result.</p>
|
|
489
|
+
*/
|
|
490
|
+
export interface ActionExecutionOutput {
|
|
491
|
+
/**
|
|
492
|
+
* <p>Details of output artifacts of the action that correspond to the action
|
|
493
|
+
* execution.</p>
|
|
494
|
+
*/
|
|
495
|
+
outputArtifacts?: ArtifactDetail[];
|
|
496
|
+
/**
|
|
497
|
+
* <p>Execution result information listed in the output details for an action
|
|
498
|
+
* execution.</p>
|
|
499
|
+
*/
|
|
500
|
+
executionResult?: ActionExecutionResult;
|
|
501
|
+
/**
|
|
502
|
+
* <p>The outputVariables field shows the key-value pairs that were output as part of that
|
|
503
|
+
* execution.</p>
|
|
504
|
+
*/
|
|
505
|
+
outputVariables?: Record<string, string>;
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* <p>Returns information about an execution of an action, including the action execution
|
|
509
|
+
* ID, and the name, version, and timing of the action. </p>
|
|
510
|
+
*/
|
|
511
|
+
export interface ActionExecutionDetail {
|
|
512
|
+
/**
|
|
513
|
+
* <p>The pipeline execution ID for the action execution.</p>
|
|
514
|
+
*/
|
|
515
|
+
pipelineExecutionId?: string;
|
|
516
|
+
/**
|
|
517
|
+
* <p>The action execution ID.</p>
|
|
518
|
+
*/
|
|
519
|
+
actionExecutionId?: string;
|
|
520
|
+
/**
|
|
521
|
+
* <p>The version of the pipeline where the action was run.</p>
|
|
522
|
+
*/
|
|
523
|
+
pipelineVersion?: number;
|
|
524
|
+
/**
|
|
525
|
+
* <p>The name of the stage that contains the action.</p>
|
|
526
|
+
*/
|
|
527
|
+
stageName?: string;
|
|
528
|
+
/**
|
|
529
|
+
* <p>The name of the action.</p>
|
|
530
|
+
*/
|
|
531
|
+
actionName?: string;
|
|
532
|
+
/**
|
|
533
|
+
* <p>The start time of the action execution.</p>
|
|
534
|
+
*/
|
|
535
|
+
startTime?: Date;
|
|
536
|
+
/**
|
|
537
|
+
* <p>The last update time of the action execution.</p>
|
|
538
|
+
*/
|
|
539
|
+
lastUpdateTime?: Date;
|
|
540
|
+
/**
|
|
541
|
+
* <p> The status of the action execution. Status categories are <code>InProgress</code>,
|
|
542
|
+
* <code>Succeeded</code>, and <code>Failed</code>.</p>
|
|
543
|
+
*/
|
|
544
|
+
status?: ActionExecutionStatus | string;
|
|
545
|
+
/**
|
|
546
|
+
* <p>Input details for the action execution, such as role ARN, Region, and input
|
|
547
|
+
* artifacts.</p>
|
|
548
|
+
*/
|
|
549
|
+
input?: ActionExecutionInput;
|
|
550
|
+
/**
|
|
551
|
+
* <p>Output details for the action execution, such as the action execution result.</p>
|
|
552
|
+
*/
|
|
553
|
+
output?: ActionExecutionOutput;
|
|
554
|
+
}
|
|
555
|
+
/**
|
|
556
|
+
* <p>Filter values for the action execution.</p>
|
|
557
|
+
*/
|
|
558
|
+
export interface ActionExecutionFilter {
|
|
559
|
+
/**
|
|
560
|
+
* <p>The pipeline execution ID used to filter action execution history.</p>
|
|
561
|
+
*/
|
|
562
|
+
pipelineExecutionId?: string;
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* <p>The specified action cannot be found.</p>
|
|
566
|
+
*/
|
|
567
|
+
export declare class ActionNotFoundException extends __BaseException {
|
|
568
|
+
readonly name: "ActionNotFoundException";
|
|
569
|
+
readonly $fault: "client";
|
|
570
|
+
/**
|
|
571
|
+
* @internal
|
|
572
|
+
*/
|
|
573
|
+
constructor(opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>);
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* <p>Represents information about the version (or revision) of an action.</p>
|
|
577
|
+
*/
|
|
578
|
+
export interface ActionRevision {
|
|
579
|
+
/**
|
|
580
|
+
* <p>The system-generated unique ID that identifies the revision number of the
|
|
581
|
+
* action.</p>
|
|
582
|
+
*/
|
|
583
|
+
revisionId: string | undefined;
|
|
584
|
+
/**
|
|
585
|
+
* <p>The unique identifier of the change that set the state to this revision (for
|
|
586
|
+
* example, a deployment ID or timestamp).</p>
|
|
587
|
+
*/
|
|
588
|
+
revisionChangeId: string | undefined;
|
|
589
|
+
/**
|
|
590
|
+
* <p>The date and time when the most recent version of the action was created, in
|
|
591
|
+
* timestamp format.</p>
|
|
592
|
+
*/
|
|
593
|
+
created: Date | undefined;
|
|
594
|
+
}
|
|
595
|
+
/**
|
|
596
|
+
* <p>Represents information about the state of an action.</p>
|
|
597
|
+
*/
|
|
598
|
+
export interface ActionState {
|
|
599
|
+
/**
|
|
600
|
+
* <p>The name of the action.</p>
|
|
601
|
+
*/
|
|
602
|
+
actionName?: string;
|
|
603
|
+
/**
|
|
604
|
+
* <p>Represents information about the version (or revision) of an action.</p>
|
|
605
|
+
*/
|
|
606
|
+
currentRevision?: ActionRevision;
|
|
607
|
+
/**
|
|
608
|
+
* <p>Represents information about the run of an action.</p>
|
|
609
|
+
*/
|
|
610
|
+
latestExecution?: ActionExecution;
|
|
611
|
+
/**
|
|
612
|
+
* <p>A URL link for more information about the state of the action, such as a deployment
|
|
613
|
+
* group details page.</p>
|
|
614
|
+
*/
|
|
615
|
+
entityUrl?: string;
|
|
616
|
+
/**
|
|
617
|
+
* <p>A URL link for more information about the revision, such as a commit details
|
|
618
|
+
* page.</p>
|
|
619
|
+
*/
|
|
620
|
+
revisionUrl?: string;
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* <p>Returns information about the details of an artifact.</p>
|
|
624
|
+
*/
|
|
625
|
+
export interface ArtifactDetails {
|
|
626
|
+
/**
|
|
627
|
+
* <p>The minimum number of artifacts allowed for the action type.</p>
|
|
628
|
+
*/
|
|
629
|
+
minimumCount: number | undefined;
|
|
630
|
+
/**
|
|
631
|
+
* <p>The maximum number of artifacts allowed for the action type.</p>
|
|
632
|
+
*/
|
|
633
|
+
maximumCount: number | undefined;
|
|
634
|
+
}
|
|
635
|
+
/**
|
|
636
|
+
* <p>Returns information about the settings for an action type.</p>
|
|
637
|
+
*/
|
|
638
|
+
export interface ActionTypeSettings {
|
|
639
|
+
/**
|
|
640
|
+
* <p>The URL of a sign-up page where users can sign up for an external service and
|
|
641
|
+
* perform initial configuration of the action provided by that service.</p>
|
|
642
|
+
*/
|
|
643
|
+
thirdPartyConfigurationUrl?: string;
|
|
644
|
+
/**
|
|
645
|
+
* <p>The URL returned to the AWS CodePipeline console that provides a deep link to the
|
|
646
|
+
* resources of the external system, such as the configuration page for an AWS CodeDeploy
|
|
647
|
+
* deployment group. This link is provided as part of the action display in the
|
|
648
|
+
* pipeline.</p>
|
|
649
|
+
*/
|
|
650
|
+
entityUrlTemplate?: string;
|
|
651
|
+
/**
|
|
652
|
+
* <p>The URL returned to the AWS CodePipeline console that contains a link to the
|
|
653
|
+
* top-level landing page for the external system, such as the console page for AWS
|
|
654
|
+
* CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console
|
|
655
|
+
* and provides a link to the execution entity of the external action.</p>
|
|
656
|
+
*/
|
|
657
|
+
executionUrlTemplate?: string;
|
|
658
|
+
/**
|
|
659
|
+
* <p>The URL returned to the AWS CodePipeline console that contains a link to the page
|
|
660
|
+
* where customers can update or change the configuration of the external action.</p>
|
|
661
|
+
*/
|
|
662
|
+
revisionUrlTemplate?: string;
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* <p>Returns information about the details of an action type.</p>
|
|
666
|
+
*/
|
|
667
|
+
export interface ActionType {
|
|
668
|
+
/**
|
|
669
|
+
* <p>Represents information about an action type.</p>
|
|
670
|
+
*/
|
|
671
|
+
id: ActionTypeId | undefined;
|
|
672
|
+
/**
|
|
673
|
+
* <p>The settings for the action type.</p>
|
|
674
|
+
*/
|
|
675
|
+
settings?: ActionTypeSettings;
|
|
676
|
+
/**
|
|
677
|
+
* <p>The configuration properties for the action type.</p>
|
|
678
|
+
*/
|
|
679
|
+
actionConfigurationProperties?: ActionConfigurationProperty[];
|
|
680
|
+
/**
|
|
681
|
+
* <p>The details of the input artifact for the action, such as its commit ID.</p>
|
|
682
|
+
*/
|
|
683
|
+
inputArtifactDetails: ArtifactDetails | undefined;
|
|
684
|
+
/**
|
|
685
|
+
* <p>The details of the output artifact of the action, such as its commit ID.</p>
|
|
686
|
+
*/
|
|
687
|
+
outputArtifactDetails: ArtifactDetails | undefined;
|
|
688
|
+
}
|
|
689
|
+
/**
|
|
690
|
+
* <p>Information about parameters for artifacts associated with the action type, such as
|
|
691
|
+
* the minimum and maximum artifacts allowed.</p>
|
|
692
|
+
*/
|
|
693
|
+
export interface ActionTypeArtifactDetails {
|
|
694
|
+
/**
|
|
695
|
+
* <p>The minimum number of artifacts that can be used with the action type. For example,
|
|
696
|
+
* you should specify a minimum and maximum of zero input artifacts for an action type with
|
|
697
|
+
* a category of <code>source</code>.</p>
|
|
698
|
+
*/
|
|
699
|
+
minimumCount: number | undefined;
|
|
700
|
+
/**
|
|
701
|
+
* <p>The maximum number of artifacts that can be used with the actiontype. For example, you
|
|
702
|
+
* should specify a minimum and maximum of zero input artifacts for an action type with a
|
|
703
|
+
* category of <code>source</code>.</p>
|
|
704
|
+
*/
|
|
705
|
+
maximumCount: number | undefined;
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* <p>Details about the polling configuration for the <code>JobWorker</code> action engine,
|
|
709
|
+
* or executor.</p>
|
|
710
|
+
*/
|
|
711
|
+
export interface JobWorkerExecutorConfiguration {
|
|
712
|
+
/**
|
|
713
|
+
* <p>The accounts in which the job worker is configured and might poll for jobs as part of
|
|
714
|
+
* the action execution.</p>
|
|
715
|
+
*/
|
|
716
|
+
pollingAccounts?: string[];
|
|
717
|
+
/**
|
|
718
|
+
* <p>The service Principals in which the job worker is configured and might poll for jobs
|
|
719
|
+
* as part of the action execution.</p>
|
|
720
|
+
*/
|
|
721
|
+
pollingServicePrincipals?: string[];
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* <p>Details about the configuration for the <code>Lambda</code> action engine, or
|
|
725
|
+
* executor.</p>
|
|
726
|
+
*/
|
|
727
|
+
export interface LambdaExecutorConfiguration {
|
|
728
|
+
/**
|
|
729
|
+
* <p>The ARN of the Lambda function used by the action engine.</p>
|
|
730
|
+
*/
|
|
731
|
+
lambdaFunctionArn: string | undefined;
|
|
732
|
+
}
|
|
733
|
+
/**
|
|
734
|
+
* <p>The action engine, or executor, related to the supported integration model used to
|
|
735
|
+
* create and update the action type. The available executor types are <code>Lambda</code>
|
|
736
|
+
* and <code>JobWorker</code>.</p>
|
|
737
|
+
*/
|
|
738
|
+
export interface ExecutorConfiguration {
|
|
739
|
+
/**
|
|
740
|
+
* <p>Details about the <code>Lambda</code> executor of the action type.</p>
|
|
741
|
+
*/
|
|
742
|
+
lambdaExecutorConfiguration?: LambdaExecutorConfiguration;
|
|
743
|
+
/**
|
|
744
|
+
* <p>Details about the <code>JobWorker</code> executor of the action type.</p>
|
|
745
|
+
*/
|
|
746
|
+
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration;
|
|
747
|
+
}
|
|
748
|
+
export declare enum ExecutorType {
|
|
749
|
+
JobWorker = "JobWorker",
|
|
750
|
+
Lambda = "Lambda"
|
|
751
|
+
}
|
|
752
|
+
/**
|
|
753
|
+
* <p>The action engine, or executor, for an action type created for a provider, where the
|
|
754
|
+
* action is to be used by customers of the provider. The action engine is associated with
|
|
755
|
+
* the model used to create and update the action, such as the Lambda integration
|
|
756
|
+
* model.</p>
|
|
757
|
+
*/
|
|
758
|
+
export interface ActionTypeExecutor {
|
|
759
|
+
/**
|
|
760
|
+
* <p>The action configuration properties for the action type. These properties are
|
|
761
|
+
* specified in the action definition when the action type is created.</p>
|
|
762
|
+
*/
|
|
763
|
+
configuration: ExecutorConfiguration | undefined;
|
|
764
|
+
/**
|
|
765
|
+
* <p>The integration model used to create and update the action type, <code>Lambda</code>
|
|
766
|
+
* or <code>JobWorker</code>. </p>
|
|
767
|
+
*/
|
|
768
|
+
type: ExecutorType | string | undefined;
|
|
769
|
+
/**
|
|
770
|
+
* <p>The policy statement that specifies the permissions in the CodePipeline customer’s
|
|
771
|
+
* account that are needed to successfully run an action.</p>
|
|
772
|
+
* <p>To grant permission to another account, specify the account ID as the Principal, a
|
|
773
|
+
* domain-style identifier defined by the service, for example
|
|
774
|
+
* <code>codepipeline.amazonaws.com</code>.</p>
|
|
775
|
+
* <note>
|
|
776
|
+
* <p>The size of the passed JSON policy document cannot exceed 2048 characters.</p>
|
|
777
|
+
* </note>
|
|
778
|
+
*/
|
|
779
|
+
policyStatementsTemplate?: string;
|
|
780
|
+
/**
|
|
781
|
+
* <p>The timeout in seconds for the job. An action execution can have multiple jobs. This
|
|
782
|
+
* is the timeout for a single job, not the entire action execution.</p>
|
|
783
|
+
*/
|
|
784
|
+
jobTimeout?: number;
|
|
785
|
+
}
|
|
786
|
+
/**
|
|
787
|
+
* <p>Specifies the category, owner, provider, and version of the action type.</p>
|
|
788
|
+
*/
|
|
789
|
+
export interface ActionTypeIdentifier {
|
|
790
|
+
/**
|
|
791
|
+
* <p>Defines what kind of action can be taken in the stage, one of the following:</p>
|
|
792
|
+
* <ul>
|
|
793
|
+
* <li>
|
|
794
|
+
* <p>
|
|
795
|
+
* <code>Source</code>
|
|
796
|
+
* </p>
|
|
797
|
+
* </li>
|
|
798
|
+
* <li>
|
|
799
|
+
* <p>
|
|
800
|
+
* <code>Build</code>
|
|
801
|
+
* </p>
|
|
802
|
+
* </li>
|
|
803
|
+
* <li>
|
|
804
|
+
* <p>
|
|
805
|
+
* <code>Test</code>
|
|
806
|
+
* </p>
|
|
807
|
+
* </li>
|
|
808
|
+
* <li>
|
|
809
|
+
* <p>
|
|
810
|
+
* <code>Deploy</code>
|
|
811
|
+
* </p>
|
|
812
|
+
* </li>
|
|
813
|
+
* <li>
|
|
814
|
+
* <p>
|
|
815
|
+
* <code>Approval</code>
|
|
816
|
+
* </p>
|
|
817
|
+
* </li>
|
|
818
|
+
* <li>
|
|
819
|
+
* <p>
|
|
820
|
+
* <code>Invoke</code>
|
|
821
|
+
* </p>
|
|
822
|
+
* </li>
|
|
823
|
+
* </ul>
|
|
824
|
+
*/
|
|
825
|
+
category: ActionCategory | string | undefined;
|
|
826
|
+
/**
|
|
827
|
+
* <p>The creator of the action type being called: <code>AWS</code> or
|
|
828
|
+
* <code>ThirdParty</code>.</p>
|
|
829
|
+
*/
|
|
830
|
+
owner: string | undefined;
|
|
831
|
+
/**
|
|
832
|
+
* <p>The provider of the action type being called. The provider name is supplied when the
|
|
833
|
+
* action type is created.</p>
|
|
834
|
+
*/
|
|
835
|
+
provider: string | undefined;
|
|
836
|
+
/**
|
|
837
|
+
* <p>A string that describes the action type version.</p>
|
|
838
|
+
*/
|
|
839
|
+
version: string | undefined;
|
|
840
|
+
}
|
|
841
|
+
/**
|
|
842
|
+
* <p>Details identifying the users with permissions to use the action type.</p>
|
|
843
|
+
*/
|
|
844
|
+
export interface ActionTypePermissions {
|
|
845
|
+
/**
|
|
846
|
+
* <p>A list of AWS account IDs with access to use the action type in their
|
|
847
|
+
* pipelines.</p>
|
|
848
|
+
*/
|
|
849
|
+
allowedAccounts: string[] | undefined;
|
|
850
|
+
}
|
|
851
|
+
/**
|
|
852
|
+
* <p>Represents information about each property specified in the action configuration, such
|
|
853
|
+
* as the description and key name that display for the customer using the action
|
|
854
|
+
* type.</p>
|
|
855
|
+
*/
|
|
856
|
+
export interface ActionTypeProperty {
|
|
857
|
+
/**
|
|
858
|
+
* <p>The property name that is displayed to users.</p>
|
|
859
|
+
*/
|
|
860
|
+
name: string | undefined;
|
|
861
|
+
/**
|
|
862
|
+
* <p>Whether the configuration property is an optional value.</p>
|
|
863
|
+
*/
|
|
864
|
+
optional: boolean | undefined;
|
|
865
|
+
/**
|
|
866
|
+
* <p>Whether the configuration property is a key.</p>
|
|
867
|
+
*/
|
|
868
|
+
key: boolean | undefined;
|
|
869
|
+
/**
|
|
870
|
+
* <p>Whether to omit the field value entered by the customer in the log. If
|
|
871
|
+
* <code>true</code>, the value is not saved in CloudTrail logs for the action
|
|
872
|
+
* execution.</p>
|
|
873
|
+
*/
|
|
874
|
+
noEcho: boolean | undefined;
|
|
875
|
+
/**
|
|
876
|
+
* <p>Indicates that the property is used with polling. An action type can have up to one
|
|
877
|
+
* queryable property. If it has one, that property must be both required and not
|
|
878
|
+
* secret.</p>
|
|
879
|
+
*/
|
|
880
|
+
queryable?: boolean;
|
|
881
|
+
/**
|
|
882
|
+
* <p>The description of the property that is displayed to users.</p>
|
|
883
|
+
*/
|
|
884
|
+
description?: string;
|
|
885
|
+
}
|
|
886
|
+
/**
|
|
887
|
+
* <p>Returns information about URLs for web pages that display to customers as links on the
|
|
888
|
+
* pipeline view, such as an external configuration page for the action type.</p>
|
|
889
|
+
*/
|
|
890
|
+
export interface ActionTypeUrls {
|
|
891
|
+
/**
|
|
892
|
+
* <p>The URL returned to the CodePipeline console that contains a link to the page where
|
|
893
|
+
* customers can configure the external action.</p>
|
|
894
|
+
*/
|
|
895
|
+
configurationUrl?: string;
|
|
896
|
+
/**
|
|
897
|
+
* <p>The URL returned to the CodePipeline console that provides a deep link to the
|
|
898
|
+
* resources of the external system, such as a status page. This link is provided as part
|
|
899
|
+
* of the action display in the pipeline.</p>
|
|
900
|
+
*/
|
|
901
|
+
entityUrlTemplate?: string;
|
|
902
|
+
/**
|
|
903
|
+
* <p>The link to an execution page for the action type in progress. For example, for a
|
|
904
|
+
* CodeDeploy action, this link is shown on the pipeline view page in the CodePipeline
|
|
905
|
+
* console, and it links to a CodeDeploy status page.</p>
|
|
906
|
+
*/
|
|
907
|
+
executionUrlTemplate?: string;
|
|
908
|
+
/**
|
|
909
|
+
* <p>The URL returned to the CodePipeline console that contains a link to the page where
|
|
910
|
+
* customers can update or change the configuration of the external action.</p>
|
|
911
|
+
*/
|
|
912
|
+
revisionUrlTemplate?: string;
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* <p>The parameters for the action type definition that are provided when the action type
|
|
916
|
+
* is created or updated.</p>
|
|
917
|
+
*/
|
|
918
|
+
export interface ActionTypeDeclaration {
|
|
919
|
+
/**
|
|
920
|
+
* <p>The description for the action type to be updated.</p>
|
|
921
|
+
*/
|
|
922
|
+
description?: string;
|
|
923
|
+
/**
|
|
924
|
+
* <p>Information about the executor for an action type that was created with any supported
|
|
925
|
+
* integration model.</p>
|
|
926
|
+
*/
|
|
927
|
+
executor: ActionTypeExecutor | undefined;
|
|
928
|
+
/**
|
|
929
|
+
* <p>The action category, owner, provider, and version of the action type to be
|
|
930
|
+
* updated.</p>
|
|
931
|
+
*/
|
|
932
|
+
id: ActionTypeIdentifier | undefined;
|
|
933
|
+
/**
|
|
934
|
+
* <p>Details for the artifacts, such as application files, to be worked on by the action.
|
|
935
|
+
* For example, the minimum and maximum number of input artifacts allowed.</p>
|
|
936
|
+
*/
|
|
937
|
+
inputArtifactDetails: ActionTypeArtifactDetails | undefined;
|
|
938
|
+
/**
|
|
939
|
+
* <p>Details for the output artifacts, such as a built application, that are the result of
|
|
940
|
+
* the action. For example, the minimum and maximum number of output artifacts
|
|
941
|
+
* allowed.</p>
|
|
942
|
+
*/
|
|
943
|
+
outputArtifactDetails: ActionTypeArtifactDetails | undefined;
|
|
944
|
+
/**
|
|
945
|
+
* <p>Details identifying the accounts with permissions to use the action type.</p>
|
|
946
|
+
*/
|
|
947
|
+
permissions?: ActionTypePermissions;
|
|
948
|
+
/**
|
|
949
|
+
* <p>The properties of the action type to be updated.</p>
|
|
950
|
+
*/
|
|
951
|
+
properties?: ActionTypeProperty[];
|
|
952
|
+
/**
|
|
953
|
+
* <p>The links associated with the action type to be updated.</p>
|
|
954
|
+
*/
|
|
955
|
+
urls?: ActionTypeUrls;
|
|
956
|
+
}
|
|
957
|
+
/**
|
|
958
|
+
* <p>The specified action type cannot be found.</p>
|
|
959
|
+
*/
|
|
960
|
+
export declare class ActionTypeNotFoundException extends __BaseException {
|
|
961
|
+
readonly name: "ActionTypeNotFoundException";
|
|
962
|
+
readonly $fault: "client";
|
|
963
|
+
/**
|
|
964
|
+
* @internal
|
|
965
|
+
*/
|
|
966
|
+
constructor(opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>);
|
|
967
|
+
}
|
|
968
|
+
/**
|
|
969
|
+
* <p>The approval action has already been approved or rejected.</p>
|
|
970
|
+
*/
|
|
971
|
+
export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
972
|
+
readonly name: "ApprovalAlreadyCompletedException";
|
|
973
|
+
readonly $fault: "client";
|
|
974
|
+
/**
|
|
975
|
+
* @internal
|
|
976
|
+
*/
|
|
977
|
+
constructor(opts: __ExceptionOptionType<ApprovalAlreadyCompletedException, __BaseException>);
|
|
978
|
+
}
|
|
979
|
+
export declare enum ApprovalStatus {
|
|
980
|
+
Approved = "Approved",
|
|
981
|
+
Rejected = "Rejected"
|
|
982
|
+
}
|
|
983
|
+
/**
|
|
984
|
+
* <p>Represents information about the result of an approval request.</p>
|
|
985
|
+
*/
|
|
986
|
+
export interface ApprovalResult {
|
|
987
|
+
/**
|
|
988
|
+
* <p>The summary of the current status of the approval request.</p>
|
|
989
|
+
*/
|
|
990
|
+
summary: string | undefined;
|
|
991
|
+
/**
|
|
992
|
+
* <p>The response submitted by a reviewer assigned to an approval action
|
|
993
|
+
* request.</p>
|
|
994
|
+
*/
|
|
995
|
+
status: ApprovalStatus | string | undefined;
|
|
996
|
+
}
|
|
997
|
+
/**
|
|
998
|
+
* <p>The location of the S3 bucket that contains a revision.</p>
|
|
999
|
+
*/
|
|
1000
|
+
export interface S3ArtifactLocation {
|
|
1001
|
+
/**
|
|
1002
|
+
* <p>The name of the S3 bucket.</p>
|
|
1003
|
+
*/
|
|
1004
|
+
bucketName: string | undefined;
|
|
1005
|
+
/**
|
|
1006
|
+
* <p>The key of the object in the S3 bucket, which uniquely identifies the object in the
|
|
1007
|
+
* bucket.</p>
|
|
1008
|
+
*/
|
|
1009
|
+
objectKey: string | undefined;
|
|
1010
|
+
}
|
|
1011
|
+
export declare enum ArtifactLocationType {
|
|
1012
|
+
S3 = "S3"
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
* <p>Represents information about the location of an artifact.</p>
|
|
1016
|
+
*/
|
|
1017
|
+
export interface ArtifactLocation {
|
|
1018
|
+
/**
|
|
1019
|
+
* <p>The type of artifact in the location.</p>
|
|
1020
|
+
*/
|
|
1021
|
+
type?: ArtifactLocationType | string;
|
|
1022
|
+
/**
|
|
1023
|
+
* <p>The S3 bucket that contains the artifact.</p>
|
|
1024
|
+
*/
|
|
1025
|
+
s3Location?: S3ArtifactLocation;
|
|
1026
|
+
}
|
|
1027
|
+
/**
|
|
1028
|
+
* <p>Represents information about an artifact that is worked on by actions in the
|
|
1029
|
+
* pipeline.</p>
|
|
1030
|
+
*/
|
|
1031
|
+
export interface Artifact {
|
|
1032
|
+
/**
|
|
1033
|
+
* <p>The artifact's name.</p>
|
|
1034
|
+
*/
|
|
1035
|
+
name?: string;
|
|
1036
|
+
/**
|
|
1037
|
+
* <p>The artifact's revision ID. Depending on the type of object, this could be a commit
|
|
1038
|
+
* ID (GitHub) or a revision ID (Amazon S3).</p>
|
|
1039
|
+
*/
|
|
1040
|
+
revision?: string;
|
|
1041
|
+
/**
|
|
1042
|
+
* <p>The location of an artifact.</p>
|
|
1043
|
+
*/
|
|
1044
|
+
location?: ArtifactLocation;
|
|
1045
|
+
}
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>Represents revision details of an artifact. </p>
|
|
1048
|
+
*/
|
|
1049
|
+
export interface ArtifactRevision {
|
|
1050
|
+
/**
|
|
1051
|
+
* <p>The name of an artifact. This name might be system-generated, such as "MyApp", or
|
|
1052
|
+
* defined by the user when an action is created.</p>
|
|
1053
|
+
*/
|
|
1054
|
+
name?: string;
|
|
1055
|
+
/**
|
|
1056
|
+
* <p>The revision ID of the artifact.</p>
|
|
1057
|
+
*/
|
|
1058
|
+
revisionId?: string;
|
|
1059
|
+
/**
|
|
1060
|
+
* <p>An additional identifier for a revision, such as a commit date or, for artifacts
|
|
1061
|
+
* stored in Amazon S3 buckets, the ETag value.</p>
|
|
1062
|
+
*/
|
|
1063
|
+
revisionChangeIdentifier?: string;
|
|
1064
|
+
/**
|
|
1065
|
+
* <p>Summary information about the most recent revision of the artifact. For GitHub and
|
|
1066
|
+
* AWS CodeCommit repositories, the commit message. For Amazon S3 buckets or actions, the
|
|
1067
|
+
* user-provided content of a <code>codepipeline-artifact-revision-summary</code> key
|
|
1068
|
+
* specified in the object metadata.</p>
|
|
1069
|
+
*/
|
|
1070
|
+
revisionSummary?: string;
|
|
1071
|
+
/**
|
|
1072
|
+
* <p>The date and time when the most recent revision of the artifact was created, in
|
|
1073
|
+
* timestamp format.</p>
|
|
1074
|
+
*/
|
|
1075
|
+
created?: Date;
|
|
1076
|
+
/**
|
|
1077
|
+
* <p>The commit ID for the artifact revision. For artifacts stored in GitHub or AWS
|
|
1078
|
+
* CodeCommit repositories, the commit ID is linked to a commit details page.</p>
|
|
1079
|
+
*/
|
|
1080
|
+
revisionUrl?: string;
|
|
1081
|
+
}
|
|
1082
|
+
export declare enum EncryptionKeyType {
|
|
1083
|
+
KMS = "KMS"
|
|
1084
|
+
}
|
|
1085
|
+
/**
|
|
1086
|
+
* <p>Represents information about the key used to encrypt data in the artifact store,
|
|
1087
|
+
* such as an AWS Key Management Service (AWS KMS) key.</p>
|
|
1088
|
+
*/
|
|
1089
|
+
export interface EncryptionKey {
|
|
1090
|
+
/**
|
|
1091
|
+
* <p>The ID used to identify the key. For an AWS KMS key, you can use the key ID, the
|
|
1092
|
+
* key ARN, or the alias ARN.</p>
|
|
1093
|
+
* <note>
|
|
1094
|
+
* <p>Aliases are recognized only in the account that created the customer master key
|
|
1095
|
+
* (CMK). For cross-account actions, you can only use the key ID or key ARN to identify
|
|
1096
|
+
* the key.</p>
|
|
1097
|
+
* </note>
|
|
1098
|
+
*/
|
|
1099
|
+
id: string | undefined;
|
|
1100
|
+
/**
|
|
1101
|
+
* <p>The type of encryption key, such as an AWS Key Management Service (AWS KMS) key.
|
|
1102
|
+
* When creating or updating a pipeline, the value must be set to 'KMS'.</p>
|
|
1103
|
+
*/
|
|
1104
|
+
type: EncryptionKeyType | string | undefined;
|
|
1105
|
+
}
|
|
1106
|
+
export declare enum ArtifactStoreType {
|
|
1107
|
+
S3 = "S3"
|
|
1108
|
+
}
|
|
1109
|
+
/**
|
|
1110
|
+
* <p>The S3 bucket where artifacts for the pipeline are stored.</p>
|
|
1111
|
+
* <note>
|
|
1112
|
+
* <p>You must include either <code>artifactStore</code> or
|
|
1113
|
+
* <code>artifactStores</code> in your pipeline, but you cannot use both. If you
|
|
1114
|
+
* create a cross-region action in your pipeline, you must use
|
|
1115
|
+
* <code>artifactStores</code>.</p>
|
|
1116
|
+
* </note>
|
|
1117
|
+
*/
|
|
1118
|
+
export interface ArtifactStore {
|
|
1119
|
+
/**
|
|
1120
|
+
* <p>The type of the artifact store, such as S3.</p>
|
|
1121
|
+
*/
|
|
1122
|
+
type: ArtifactStoreType | string | undefined;
|
|
1123
|
+
/**
|
|
1124
|
+
* <p>The S3 bucket used for storing the artifacts for a pipeline. You can specify the
|
|
1125
|
+
* name of an S3 bucket but not a folder in the bucket. A folder to contain the pipeline
|
|
1126
|
+
* artifacts is created for you based on the name of the pipeline. You can use any S3
|
|
1127
|
+
* bucket in the same AWS Region as the pipeline to store your pipeline
|
|
1128
|
+
* artifacts.</p>
|
|
1129
|
+
*/
|
|
1130
|
+
location: string | undefined;
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>The encryption key used to encrypt the data in the artifact store, such as an AWS
|
|
1133
|
+
* Key Management Service (AWS KMS) key. If this is undefined, the default key for Amazon
|
|
1134
|
+
* S3 is used.</p>
|
|
1135
|
+
*/
|
|
1136
|
+
encryptionKey?: EncryptionKey;
|
|
1137
|
+
}
|
|
1138
|
+
/**
|
|
1139
|
+
* <p>Represents an AWS session credentials object. These credentials are temporary
|
|
1140
|
+
* credentials that are issued by AWS Secure Token Service (STS). They can be used to
|
|
1141
|
+
* access input and output artifacts in the S3 bucket used to store artifact for the
|
|
1142
|
+
* pipeline in AWS CodePipeline.</p>
|
|
1143
|
+
*/
|
|
1144
|
+
export interface AWSSessionCredentials {
|
|
1145
|
+
/**
|
|
1146
|
+
* <p>The access key for the session.</p>
|
|
1147
|
+
*/
|
|
1148
|
+
accessKeyId: string | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>The secret access key for the session.</p>
|
|
1151
|
+
*/
|
|
1152
|
+
secretAccessKey: string | undefined;
|
|
1153
|
+
/**
|
|
1154
|
+
* <p>The token for the session.</p>
|
|
1155
|
+
*/
|
|
1156
|
+
sessionToken: string | undefined;
|
|
1157
|
+
}
|
|
1158
|
+
export declare enum BlockerType {
|
|
1159
|
+
Schedule = "Schedule"
|
|
1160
|
+
}
|
|
1161
|
+
/**
|
|
1162
|
+
* <p>Reserved for future use.</p>
|
|
1163
|
+
*/
|
|
1164
|
+
export interface BlockerDeclaration {
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>Reserved for future use.</p>
|
|
1167
|
+
*/
|
|
1168
|
+
name: string | undefined;
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>Reserved for future use.</p>
|
|
1171
|
+
*/
|
|
1172
|
+
type: BlockerType | string | undefined;
|
|
1173
|
+
}
|
|
1174
|
+
/**
|
|
1175
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
1176
|
+
*/
|
|
1177
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
1178
|
+
readonly name: "ConcurrentModificationException";
|
|
1179
|
+
readonly $fault: "client";
|
|
1180
|
+
/**
|
|
1181
|
+
* @internal
|
|
1182
|
+
*/
|
|
1183
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
1184
|
+
}
|
|
1185
|
+
/**
|
|
1186
|
+
* <p>A tag is a key-value pair that is used to manage the resource.</p>
|
|
1187
|
+
*/
|
|
1188
|
+
export interface Tag {
|
|
1189
|
+
/**
|
|
1190
|
+
* <p>The tag's key.</p>
|
|
1191
|
+
*/
|
|
1192
|
+
key: string | undefined;
|
|
1193
|
+
/**
|
|
1194
|
+
* <p>The tag's value.</p>
|
|
1195
|
+
*/
|
|
1196
|
+
value: string | undefined;
|
|
1197
|
+
}
|
|
1198
|
+
/**
|
|
1199
|
+
* <p>Represents the input of a CreateCustomActionType operation.</p>
|
|
1200
|
+
*/
|
|
1201
|
+
export interface CreateCustomActionTypeInput {
|
|
1202
|
+
/**
|
|
1203
|
+
* <p>The category of the custom action, such as a build action or a test
|
|
1204
|
+
* action.</p>
|
|
1205
|
+
*/
|
|
1206
|
+
category: ActionCategory | string | undefined;
|
|
1207
|
+
/**
|
|
1208
|
+
* <p>The provider of the service used in the custom action, such as AWS
|
|
1209
|
+
* CodeDeploy.</p>
|
|
1210
|
+
*/
|
|
1211
|
+
provider: string | undefined;
|
|
1212
|
+
/**
|
|
1213
|
+
* <p>The version identifier of the custom action.</p>
|
|
1214
|
+
*/
|
|
1215
|
+
version: string | undefined;
|
|
1216
|
+
/**
|
|
1217
|
+
* <p>URLs that provide users information about this custom action.</p>
|
|
1218
|
+
*/
|
|
1219
|
+
settings?: ActionTypeSettings;
|
|
1220
|
+
/**
|
|
1221
|
+
* <p>The configuration properties for the custom action.</p>
|
|
1222
|
+
* <note>
|
|
1223
|
+
* <p>You can refer to a name in the configuration properties of the custom action
|
|
1224
|
+
* within the URL templates by following the format of {Config:name}, as long as the
|
|
1225
|
+
* configuration property is both required and not secret. For more information, see
|
|
1226
|
+
* <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html">Create a
|
|
1227
|
+
* Custom Action for a Pipeline</a>.</p>
|
|
1228
|
+
* </note>
|
|
1229
|
+
*/
|
|
1230
|
+
configurationProperties?: ActionConfigurationProperty[];
|
|
1231
|
+
/**
|
|
1232
|
+
* <p>The details of the input artifact for the action, such as its commit ID.</p>
|
|
1233
|
+
*/
|
|
1234
|
+
inputArtifactDetails: ArtifactDetails | undefined;
|
|
1235
|
+
/**
|
|
1236
|
+
* <p>The details of the output artifact of the action, such as its commit ID.</p>
|
|
1237
|
+
*/
|
|
1238
|
+
outputArtifactDetails: ArtifactDetails | undefined;
|
|
1239
|
+
/**
|
|
1240
|
+
* <p>The tags for the custom action.</p>
|
|
1241
|
+
*/
|
|
1242
|
+
tags?: Tag[];
|
|
1243
|
+
}
|
|
1244
|
+
/**
|
|
1245
|
+
* <p>Represents the output of a <code>CreateCustomActionType</code> operation.</p>
|
|
1246
|
+
*/
|
|
1247
|
+
export interface CreateCustomActionTypeOutput {
|
|
1248
|
+
/**
|
|
1249
|
+
* <p>Returns information about the details of an action type.</p>
|
|
1250
|
+
*/
|
|
1251
|
+
actionType: ActionType | undefined;
|
|
1252
|
+
/**
|
|
1253
|
+
* <p>Specifies the tags applied to the custom action.</p>
|
|
1254
|
+
*/
|
|
1255
|
+
tags?: Tag[];
|
|
1256
|
+
}
|
|
1257
|
+
/**
|
|
1258
|
+
* <p>The specified resource tags are invalid.</p>
|
|
1259
|
+
*/
|
|
1260
|
+
export declare class InvalidTagsException extends __BaseException {
|
|
1261
|
+
readonly name: "InvalidTagsException";
|
|
1262
|
+
readonly $fault: "client";
|
|
1263
|
+
/**
|
|
1264
|
+
* @internal
|
|
1265
|
+
*/
|
|
1266
|
+
constructor(opts: __ExceptionOptionType<InvalidTagsException, __BaseException>);
|
|
1267
|
+
}
|
|
1268
|
+
/**
|
|
1269
|
+
* <p>The number of pipelines associated with the AWS account has exceeded the limit
|
|
1270
|
+
* allowed for the account.</p>
|
|
1271
|
+
*/
|
|
1272
|
+
export declare class LimitExceededException extends __BaseException {
|
|
1273
|
+
readonly name: "LimitExceededException";
|
|
1274
|
+
readonly $fault: "client";
|
|
1275
|
+
/**
|
|
1276
|
+
* @internal
|
|
1277
|
+
*/
|
|
1278
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1279
|
+
}
|
|
1280
|
+
/**
|
|
1281
|
+
* <p>The tags limit for a resource has been exceeded.</p>
|
|
1282
|
+
*/
|
|
1283
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1284
|
+
readonly name: "TooManyTagsException";
|
|
1285
|
+
readonly $fault: "client";
|
|
1286
|
+
/**
|
|
1287
|
+
* @internal
|
|
1288
|
+
*/
|
|
1289
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1290
|
+
}
|
|
1291
|
+
/**
|
|
1292
|
+
* <p>Represents information about a stage and its definition.</p>
|
|
1293
|
+
*/
|
|
1294
|
+
export interface StageDeclaration {
|
|
1295
|
+
/**
|
|
1296
|
+
* <p>The name of the stage.</p>
|
|
1297
|
+
*/
|
|
1298
|
+
name: string | undefined;
|
|
1299
|
+
/**
|
|
1300
|
+
* <p>Reserved for future use.</p>
|
|
1301
|
+
*/
|
|
1302
|
+
blockers?: BlockerDeclaration[];
|
|
1303
|
+
/**
|
|
1304
|
+
* <p>The actions included in a stage.</p>
|
|
1305
|
+
*/
|
|
1306
|
+
actions: ActionDeclaration[] | undefined;
|
|
1307
|
+
}
|
|
1308
|
+
/**
|
|
1309
|
+
* <p>Represents the structure of actions and stages to be performed in the
|
|
1310
|
+
* pipeline.</p>
|
|
1311
|
+
*/
|
|
1312
|
+
export interface PipelineDeclaration {
|
|
1313
|
+
/**
|
|
1314
|
+
* <p>The name of the pipeline.</p>
|
|
1315
|
+
*/
|
|
1316
|
+
name: string | undefined;
|
|
1317
|
+
/**
|
|
1318
|
+
* <p>The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform
|
|
1319
|
+
* actions with no <code>actionRoleArn</code>, or to use to assume roles for actions with
|
|
1320
|
+
* an <code>actionRoleArn</code>.</p>
|
|
1321
|
+
*/
|
|
1322
|
+
roleArn: string | undefined;
|
|
1323
|
+
/**
|
|
1324
|
+
* <p>Represents information about the S3 bucket where artifacts are stored for the
|
|
1325
|
+
* pipeline.</p>
|
|
1326
|
+
* <note>
|
|
1327
|
+
* <p>You must include either <code>artifactStore</code> or
|
|
1328
|
+
* <code>artifactStores</code> in your pipeline, but you cannot use both. If you
|
|
1329
|
+
* create a cross-region action in your pipeline, you must use
|
|
1330
|
+
* <code>artifactStores</code>.</p>
|
|
1331
|
+
* </note>
|
|
1332
|
+
*/
|
|
1333
|
+
artifactStore?: ArtifactStore;
|
|
1334
|
+
/**
|
|
1335
|
+
* <p>A mapping of <code>artifactStore</code> objects and their corresponding AWS
|
|
1336
|
+
* Regions. There must be an artifact store for the pipeline Region and for each
|
|
1337
|
+
* cross-region action in the pipeline.</p>
|
|
1338
|
+
* <note>
|
|
1339
|
+
* <p>You must include either <code>artifactStore</code> or
|
|
1340
|
+
* <code>artifactStores</code> in your pipeline, but you cannot use both. If you
|
|
1341
|
+
* create a cross-region action in your pipeline, you must use
|
|
1342
|
+
* <code>artifactStores</code>.</p>
|
|
1343
|
+
* </note>
|
|
1344
|
+
*/
|
|
1345
|
+
artifactStores?: Record<string, ArtifactStore>;
|
|
1346
|
+
/**
|
|
1347
|
+
* <p>The stage in which to perform the action.</p>
|
|
1348
|
+
*/
|
|
1349
|
+
stages: StageDeclaration[] | undefined;
|
|
1350
|
+
/**
|
|
1351
|
+
* <p>The version number of the pipeline. A new pipeline always has a version number of
|
|
1352
|
+
* 1. This number is incremented when a pipeline is updated.</p>
|
|
1353
|
+
*/
|
|
1354
|
+
version?: number;
|
|
1355
|
+
}
|
|
1356
|
+
/**
|
|
1357
|
+
* <p>Represents the input of a <code>CreatePipeline</code> action.</p>
|
|
1358
|
+
*/
|
|
1359
|
+
export interface CreatePipelineInput {
|
|
1360
|
+
/**
|
|
1361
|
+
* <p>Represents the structure of actions and stages to be performed in the pipeline.
|
|
1362
|
+
* </p>
|
|
1363
|
+
*/
|
|
1364
|
+
pipeline: PipelineDeclaration | undefined;
|
|
1365
|
+
/**
|
|
1366
|
+
* <p>The tags for the pipeline.</p>
|
|
1367
|
+
*/
|
|
1368
|
+
tags?: Tag[];
|
|
1369
|
+
}
|
|
1370
|
+
/**
|
|
1371
|
+
* <p>Represents the output of a <code>CreatePipeline</code> action.</p>
|
|
1372
|
+
*/
|
|
1373
|
+
export interface CreatePipelineOutput {
|
|
1374
|
+
/**
|
|
1375
|
+
* <p>Represents the structure of actions and stages to be performed in the pipeline.
|
|
1376
|
+
* </p>
|
|
1377
|
+
*/
|
|
1378
|
+
pipeline?: PipelineDeclaration;
|
|
1379
|
+
/**
|
|
1380
|
+
* <p>Specifies the tags applied to the pipeline.</p>
|
|
1381
|
+
*/
|
|
1382
|
+
tags?: Tag[];
|
|
1383
|
+
}
|
|
1384
|
+
/**
|
|
1385
|
+
* <p>The action declaration was specified in an invalid format.</p>
|
|
1386
|
+
*/
|
|
1387
|
+
export declare class InvalidActionDeclarationException extends __BaseException {
|
|
1388
|
+
readonly name: "InvalidActionDeclarationException";
|
|
1389
|
+
readonly $fault: "client";
|
|
1390
|
+
/**
|
|
1391
|
+
* @internal
|
|
1392
|
+
*/
|
|
1393
|
+
constructor(opts: __ExceptionOptionType<InvalidActionDeclarationException, __BaseException>);
|
|
1394
|
+
}
|
|
1395
|
+
/**
|
|
1396
|
+
* <p>Reserved for future use.</p>
|
|
1397
|
+
*/
|
|
1398
|
+
export declare class InvalidBlockerDeclarationException extends __BaseException {
|
|
1399
|
+
readonly name: "InvalidBlockerDeclarationException";
|
|
1400
|
+
readonly $fault: "client";
|
|
1401
|
+
/**
|
|
1402
|
+
* @internal
|
|
1403
|
+
*/
|
|
1404
|
+
constructor(opts: __ExceptionOptionType<InvalidBlockerDeclarationException, __BaseException>);
|
|
1405
|
+
}
|
|
1406
|
+
/**
|
|
1407
|
+
* <p>The stage declaration was specified in an invalid format.</p>
|
|
1408
|
+
*/
|
|
1409
|
+
export declare class InvalidStageDeclarationException extends __BaseException {
|
|
1410
|
+
readonly name: "InvalidStageDeclarationException";
|
|
1411
|
+
readonly $fault: "client";
|
|
1412
|
+
/**
|
|
1413
|
+
* @internal
|
|
1414
|
+
*/
|
|
1415
|
+
constructor(opts: __ExceptionOptionType<InvalidStageDeclarationException, __BaseException>);
|
|
1416
|
+
}
|
|
1417
|
+
/**
|
|
1418
|
+
* <p>The structure was specified in an invalid format.</p>
|
|
1419
|
+
*/
|
|
1420
|
+
export declare class InvalidStructureException extends __BaseException {
|
|
1421
|
+
readonly name: "InvalidStructureException";
|
|
1422
|
+
readonly $fault: "client";
|
|
1423
|
+
/**
|
|
1424
|
+
* @internal
|
|
1425
|
+
*/
|
|
1426
|
+
constructor(opts: __ExceptionOptionType<InvalidStructureException, __BaseException>);
|
|
1427
|
+
}
|
|
1428
|
+
/**
|
|
1429
|
+
* <p>The specified pipeline name is already in use.</p>
|
|
1430
|
+
*/
|
|
1431
|
+
export declare class PipelineNameInUseException extends __BaseException {
|
|
1432
|
+
readonly name: "PipelineNameInUseException";
|
|
1433
|
+
readonly $fault: "client";
|
|
1434
|
+
/**
|
|
1435
|
+
* @internal
|
|
1436
|
+
*/
|
|
1437
|
+
constructor(opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>);
|
|
1438
|
+
}
|
|
1439
|
+
/**
|
|
1440
|
+
* <p>Represents the input of a <code>DeleteCustomActionType</code> operation. The custom
|
|
1441
|
+
* action will be marked as deleted.</p>
|
|
1442
|
+
*/
|
|
1443
|
+
export interface DeleteCustomActionTypeInput {
|
|
1444
|
+
/**
|
|
1445
|
+
* <p>The category of the custom action that you want to delete, such as source or
|
|
1446
|
+
* deploy.</p>
|
|
1447
|
+
*/
|
|
1448
|
+
category: ActionCategory | string | undefined;
|
|
1449
|
+
/**
|
|
1450
|
+
* <p>The provider of the service used in the custom action, such as AWS
|
|
1451
|
+
* CodeDeploy.</p>
|
|
1452
|
+
*/
|
|
1453
|
+
provider: string | undefined;
|
|
1454
|
+
/**
|
|
1455
|
+
* <p>The version of the custom action to delete.</p>
|
|
1456
|
+
*/
|
|
1457
|
+
version: string | undefined;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* <p>Represents the input of a <code>DeletePipeline</code> action.</p>
|
|
1461
|
+
*/
|
|
1462
|
+
export interface DeletePipelineInput {
|
|
1463
|
+
/**
|
|
1464
|
+
* <p>The name of the pipeline to be deleted.</p>
|
|
1465
|
+
*/
|
|
1466
|
+
name: string | undefined;
|
|
1467
|
+
}
|
|
1468
|
+
export interface DeleteWebhookInput {
|
|
1469
|
+
/**
|
|
1470
|
+
* <p>The name of the webhook you want to delete.</p>
|
|
1471
|
+
*/
|
|
1472
|
+
name: string | undefined;
|
|
1473
|
+
}
|
|
1474
|
+
export interface DeleteWebhookOutput {
|
|
1475
|
+
}
|
|
1476
|
+
export interface DeregisterWebhookWithThirdPartyInput {
|
|
1477
|
+
/**
|
|
1478
|
+
* <p>The name of the webhook you want to deregister.</p>
|
|
1479
|
+
*/
|
|
1480
|
+
webhookName?: string;
|
|
1481
|
+
}
|
|
1482
|
+
export interface DeregisterWebhookWithThirdPartyOutput {
|
|
1483
|
+
}
|
|
1484
|
+
/**
|
|
1485
|
+
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
1486
|
+
* found.</p>
|
|
1487
|
+
*/
|
|
1488
|
+
export declare class WebhookNotFoundException extends __BaseException {
|
|
1489
|
+
readonly name: "WebhookNotFoundException";
|
|
1490
|
+
readonly $fault: "client";
|
|
1491
|
+
/**
|
|
1492
|
+
* @internal
|
|
1493
|
+
*/
|
|
1494
|
+
constructor(opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>);
|
|
1495
|
+
}
|
|
1496
|
+
export declare enum StageTransitionType {
|
|
1497
|
+
Inbound = "Inbound",
|
|
1498
|
+
Outbound = "Outbound"
|
|
1499
|
+
}
|
|
1500
|
+
/**
|
|
1501
|
+
* <p>Represents the input of a <code>DisableStageTransition</code> action.</p>
|
|
1502
|
+
*/
|
|
1503
|
+
export interface DisableStageTransitionInput {
|
|
1504
|
+
/**
|
|
1505
|
+
* <p>The name of the pipeline in which you want to disable the flow of artifacts from
|
|
1506
|
+
* one stage to another.</p>
|
|
1507
|
+
*/
|
|
1508
|
+
pipelineName: string | undefined;
|
|
1509
|
+
/**
|
|
1510
|
+
* <p>The name of the stage where you want to disable the inbound or outbound transition
|
|
1511
|
+
* of artifacts.</p>
|
|
1512
|
+
*/
|
|
1513
|
+
stageName: string | undefined;
|
|
1514
|
+
/**
|
|
1515
|
+
* <p>Specifies whether artifacts are prevented from transitioning into the stage and
|
|
1516
|
+
* being processed by the actions in that stage (inbound), or prevented from transitioning
|
|
1517
|
+
* from the stage after they have been processed by the actions in that stage
|
|
1518
|
+
* (outbound).</p>
|
|
1519
|
+
*/
|
|
1520
|
+
transitionType: StageTransitionType | string | undefined;
|
|
1521
|
+
/**
|
|
1522
|
+
* <p>The reason given to the user that a stage is disabled, such as waiting for manual
|
|
1523
|
+
* approval or manual tests. This message is displayed in the pipeline console
|
|
1524
|
+
* UI.</p>
|
|
1525
|
+
*/
|
|
1526
|
+
reason: string | undefined;
|
|
1527
|
+
}
|
|
1528
|
+
/**
|
|
1529
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
1530
|
+
*/
|
|
1531
|
+
export declare class PipelineNotFoundException extends __BaseException {
|
|
1532
|
+
readonly name: "PipelineNotFoundException";
|
|
1533
|
+
readonly $fault: "client";
|
|
1534
|
+
/**
|
|
1535
|
+
* @internal
|
|
1536
|
+
*/
|
|
1537
|
+
constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
|
|
1538
|
+
}
|
|
1539
|
+
/**
|
|
1540
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
1541
|
+
*/
|
|
1542
|
+
export declare class StageNotFoundException extends __BaseException {
|
|
1543
|
+
readonly name: "StageNotFoundException";
|
|
1544
|
+
readonly $fault: "client";
|
|
1545
|
+
/**
|
|
1546
|
+
* @internal
|
|
1547
|
+
*/
|
|
1548
|
+
constructor(opts: __ExceptionOptionType<StageNotFoundException, __BaseException>);
|
|
1549
|
+
}
|
|
1550
|
+
/**
|
|
1551
|
+
* <p>Represents the input of an <code>EnableStageTransition</code> action.</p>
|
|
1552
|
+
*/
|
|
1553
|
+
export interface EnableStageTransitionInput {
|
|
1554
|
+
/**
|
|
1555
|
+
* <p>The name of the pipeline in which you want to enable the flow of artifacts from one
|
|
1556
|
+
* stage to another.</p>
|
|
1557
|
+
*/
|
|
1558
|
+
pipelineName: string | undefined;
|
|
1559
|
+
/**
|
|
1560
|
+
* <p>The name of the stage where you want to enable the transition of artifacts, either
|
|
1561
|
+
* into the stage (inbound) or from that stage to the next stage (outbound).</p>
|
|
1562
|
+
*/
|
|
1563
|
+
stageName: string | undefined;
|
|
1564
|
+
/**
|
|
1565
|
+
* <p>Specifies whether artifacts are allowed to enter the stage and be processed by the
|
|
1566
|
+
* actions in that stage (inbound) or whether already processed artifacts are allowed to
|
|
1567
|
+
* transition to the next stage (outbound).</p>
|
|
1568
|
+
*/
|
|
1569
|
+
transitionType: StageTransitionType | string | undefined;
|
|
1570
|
+
}
|
|
1571
|
+
export interface GetActionTypeInput {
|
|
1572
|
+
/**
|
|
1573
|
+
* <p>Defines what kind of action can be taken in the stage. The following are the valid
|
|
1574
|
+
* values:</p>
|
|
1575
|
+
* <ul>
|
|
1576
|
+
* <li>
|
|
1577
|
+
* <p>
|
|
1578
|
+
* <code>Source</code>
|
|
1579
|
+
* </p>
|
|
1580
|
+
* </li>
|
|
1581
|
+
* <li>
|
|
1582
|
+
* <p>
|
|
1583
|
+
* <code>Build</code>
|
|
1584
|
+
* </p>
|
|
1585
|
+
* </li>
|
|
1586
|
+
* <li>
|
|
1587
|
+
* <p>
|
|
1588
|
+
* <code>Test</code>
|
|
1589
|
+
* </p>
|
|
1590
|
+
* </li>
|
|
1591
|
+
* <li>
|
|
1592
|
+
* <p>
|
|
1593
|
+
* <code>Deploy</code>
|
|
1594
|
+
* </p>
|
|
1595
|
+
* </li>
|
|
1596
|
+
* <li>
|
|
1597
|
+
* <p>
|
|
1598
|
+
* <code>Approval</code>
|
|
1599
|
+
* </p>
|
|
1600
|
+
* </li>
|
|
1601
|
+
* <li>
|
|
1602
|
+
* <p>
|
|
1603
|
+
* <code>Invoke</code>
|
|
1604
|
+
* </p>
|
|
1605
|
+
* </li>
|
|
1606
|
+
* </ul>
|
|
1607
|
+
*/
|
|
1608
|
+
category: ActionCategory | string | undefined;
|
|
1609
|
+
/**
|
|
1610
|
+
* <p>The creator of an action type that was created with any supported integration model.
|
|
1611
|
+
* There are two valid values: <code>AWS</code> and <code>ThirdParty</code>.</p>
|
|
1612
|
+
*/
|
|
1613
|
+
owner: string | undefined;
|
|
1614
|
+
/**
|
|
1615
|
+
* <p>The provider of the action type being called. The provider name is specified when the
|
|
1616
|
+
* action type is created.</p>
|
|
1617
|
+
*/
|
|
1618
|
+
provider: string | undefined;
|
|
1619
|
+
/**
|
|
1620
|
+
* <p>A string that describes the action type version.</p>
|
|
1621
|
+
*/
|
|
1622
|
+
version: string | undefined;
|
|
1623
|
+
}
|
|
1624
|
+
export interface GetActionTypeOutput {
|
|
1625
|
+
/**
|
|
1626
|
+
* <p>The action type information for the requested action type, such as the action type
|
|
1627
|
+
* ID.</p>
|
|
1628
|
+
*/
|
|
1629
|
+
actionType?: ActionTypeDeclaration;
|
|
1630
|
+
}
|
|
1631
|
+
/**
|
|
1632
|
+
* <p>Represents the input of a <code>GetJobDetails</code> action.</p>
|
|
1633
|
+
*/
|
|
1634
|
+
export interface GetJobDetailsInput {
|
|
1635
|
+
/**
|
|
1636
|
+
* <p>The unique system-generated ID for the job.</p>
|
|
1637
|
+
*/
|
|
1638
|
+
jobId: string | undefined;
|
|
1639
|
+
}
|
|
1640
|
+
/**
|
|
1641
|
+
* <p>Represents information about a stage to a job worker.</p>
|
|
1642
|
+
*/
|
|
1643
|
+
export interface StageContext {
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>The name of the stage.</p>
|
|
1646
|
+
*/
|
|
1647
|
+
name?: string;
|
|
1648
|
+
}
|
|
1649
|
+
/**
|
|
1650
|
+
* <p>Represents information about a pipeline to a job worker.</p>
|
|
1651
|
+
* <note>
|
|
1652
|
+
* <p>PipelineContext contains <code>pipelineArn</code> and
|
|
1653
|
+
* <code>pipelineExecutionId</code> for custom action jobs. The
|
|
1654
|
+
* <code>pipelineArn</code> and <code>pipelineExecutionId</code> fields are not
|
|
1655
|
+
* populated for ThirdParty action jobs.</p>
|
|
1656
|
+
* </note>
|
|
1657
|
+
*/
|
|
1658
|
+
export interface PipelineContext {
|
|
1659
|
+
/**
|
|
1660
|
+
* <p>The name of the pipeline. This is a user-specified value. Pipeline names must be
|
|
1661
|
+
* unique across all pipeline names under an Amazon Web Services account.</p>
|
|
1662
|
+
*/
|
|
1663
|
+
pipelineName?: string;
|
|
1664
|
+
/**
|
|
1665
|
+
* <p>The stage of the pipeline.</p>
|
|
1666
|
+
*/
|
|
1667
|
+
stage?: StageContext;
|
|
1668
|
+
/**
|
|
1669
|
+
* <p>The context of an action to a job worker in the stage of a pipeline.</p>
|
|
1670
|
+
*/
|
|
1671
|
+
action?: ActionContext;
|
|
1672
|
+
/**
|
|
1673
|
+
* <p>The Amazon Resource Name (ARN) of the pipeline.</p>
|
|
1674
|
+
*/
|
|
1675
|
+
pipelineArn?: string;
|
|
1676
|
+
/**
|
|
1677
|
+
* <p>The execution ID of the pipeline.</p>
|
|
1678
|
+
*/
|
|
1679
|
+
pipelineExecutionId?: string;
|
|
1680
|
+
}
|
|
1681
|
+
/**
|
|
1682
|
+
* <p>Represents other information about a job required for a job worker to complete the
|
|
1683
|
+
* job.</p>
|
|
1684
|
+
*/
|
|
1685
|
+
export interface JobData {
|
|
1686
|
+
/**
|
|
1687
|
+
* <p>Represents information about an action type.</p>
|
|
1688
|
+
*/
|
|
1689
|
+
actionTypeId?: ActionTypeId;
|
|
1690
|
+
/**
|
|
1691
|
+
* <p>Represents information about an action configuration.</p>
|
|
1692
|
+
*/
|
|
1693
|
+
actionConfiguration?: ActionConfiguration;
|
|
1694
|
+
/**
|
|
1695
|
+
* <p>Represents information about a pipeline to a job worker.</p>
|
|
1696
|
+
* <note>
|
|
1697
|
+
* <p>Includes <code>pipelineArn</code> and <code>pipelineExecutionId</code> for
|
|
1698
|
+
* custom jobs.</p>
|
|
1699
|
+
* </note>
|
|
1700
|
+
*/
|
|
1701
|
+
pipelineContext?: PipelineContext;
|
|
1702
|
+
/**
|
|
1703
|
+
* <p>The artifact supplied to the job.</p>
|
|
1704
|
+
*/
|
|
1705
|
+
inputArtifacts?: Artifact[];
|
|
1706
|
+
/**
|
|
1707
|
+
* <p>The output of the job.</p>
|
|
1708
|
+
*/
|
|
1709
|
+
outputArtifacts?: Artifact[];
|
|
1710
|
+
/**
|
|
1711
|
+
* <p>Represents an AWS session credentials object. These credentials are temporary
|
|
1712
|
+
* credentials that are issued by AWS Secure Token Service (STS). They can be used to
|
|
1713
|
+
* access input and output artifacts in the S3 bucket used to store artifacts for the
|
|
1714
|
+
* pipeline in AWS CodePipeline.</p>
|
|
1715
|
+
*/
|
|
1716
|
+
artifactCredentials?: AWSSessionCredentials;
|
|
1717
|
+
/**
|
|
1718
|
+
* <p>A system-generated token, such as a AWS CodeDeploy deployment ID, required by a job
|
|
1719
|
+
* to continue the job asynchronously.</p>
|
|
1720
|
+
*/
|
|
1721
|
+
continuationToken?: string;
|
|
1722
|
+
/**
|
|
1723
|
+
* <p>Represents information about the key used to encrypt data in the artifact store,
|
|
1724
|
+
* such as an AWS Key Management Service (AWS KMS) key. </p>
|
|
1725
|
+
*/
|
|
1726
|
+
encryptionKey?: EncryptionKey;
|
|
1727
|
+
}
|
|
1728
|
+
/**
|
|
1729
|
+
* <p>Represents information about the details of a job.</p>
|
|
1730
|
+
*/
|
|
1731
|
+
export interface JobDetails {
|
|
1732
|
+
/**
|
|
1733
|
+
* <p>The unique system-generated ID of the job.</p>
|
|
1734
|
+
*/
|
|
1735
|
+
id?: string;
|
|
1736
|
+
/**
|
|
1737
|
+
* <p>Represents other information about a job required for a job worker to complete the
|
|
1738
|
+
* job. </p>
|
|
1739
|
+
*/
|
|
1740
|
+
data?: JobData;
|
|
1741
|
+
/**
|
|
1742
|
+
* <p>The AWS account ID associated with the job.</p>
|
|
1743
|
+
*/
|
|
1744
|
+
accountId?: string;
|
|
1745
|
+
}
|
|
1746
|
+
/**
|
|
1747
|
+
* <p>Represents the output of a <code>GetJobDetails</code> action.</p>
|
|
1748
|
+
*/
|
|
1749
|
+
export interface GetJobDetailsOutput {
|
|
1750
|
+
/**
|
|
1751
|
+
* <p>The details of the job.</p>
|
|
1752
|
+
* <note>
|
|
1753
|
+
* <p>If AWSSessionCredentials is used, a long-running job can call
|
|
1754
|
+
* <code>GetJobDetails</code> again to obtain new credentials.</p>
|
|
1755
|
+
* </note>
|
|
1756
|
+
*/
|
|
1757
|
+
jobDetails?: JobDetails;
|
|
1758
|
+
}
|
|
1759
|
+
/**
|
|
1760
|
+
* <p>Represents the input of a <code>GetPipeline</code> action.</p>
|
|
1761
|
+
*/
|
|
1762
|
+
export interface GetPipelineInput {
|
|
1763
|
+
/**
|
|
1764
|
+
* <p>The name of the pipeline for which you want to get information. Pipeline names must
|
|
1765
|
+
* be unique under an AWS user account.</p>
|
|
1766
|
+
*/
|
|
1767
|
+
name: string | undefined;
|
|
1768
|
+
/**
|
|
1769
|
+
* <p>The version number of the pipeline. If you do not specify a version, defaults to
|
|
1770
|
+
* the current version.</p>
|
|
1771
|
+
*/
|
|
1772
|
+
version?: number;
|
|
1773
|
+
}
|
|
1774
|
+
/**
|
|
1775
|
+
* <p>Information about a pipeline.</p>
|
|
1776
|
+
*/
|
|
1777
|
+
export interface PipelineMetadata {
|
|
1778
|
+
/**
|
|
1779
|
+
* <p>The Amazon Resource Name (ARN) of the pipeline.</p>
|
|
1780
|
+
*/
|
|
1781
|
+
pipelineArn?: string;
|
|
1782
|
+
/**
|
|
1783
|
+
* <p>The date and time the pipeline was created, in timestamp format.</p>
|
|
1784
|
+
*/
|
|
1785
|
+
created?: Date;
|
|
1786
|
+
/**
|
|
1787
|
+
* <p>The date and time the pipeline was last updated, in timestamp format.</p>
|
|
1788
|
+
*/
|
|
1789
|
+
updated?: Date;
|
|
1790
|
+
}
|
|
1791
|
+
/**
|
|
1792
|
+
* <p>Represents the output of a <code>GetPipeline</code> action.</p>
|
|
1793
|
+
*/
|
|
1794
|
+
export interface GetPipelineOutput {
|
|
1795
|
+
/**
|
|
1796
|
+
* <p>Represents the structure of actions and stages to be performed in the pipeline.
|
|
1797
|
+
* </p>
|
|
1798
|
+
*/
|
|
1799
|
+
pipeline?: PipelineDeclaration;
|
|
1800
|
+
/**
|
|
1801
|
+
* <p>Represents the pipeline metadata information returned as part of the output of a
|
|
1802
|
+
* <code>GetPipeline</code> action.</p>
|
|
1803
|
+
*/
|
|
1804
|
+
metadata?: PipelineMetadata;
|
|
1805
|
+
}
|
|
1806
|
+
/**
|
|
1807
|
+
* <p>The pipeline version was specified in an invalid format or cannot be
|
|
1808
|
+
* found.</p>
|
|
1809
|
+
*/
|
|
1810
|
+
export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
1811
|
+
readonly name: "PipelineVersionNotFoundException";
|
|
1812
|
+
readonly $fault: "client";
|
|
1813
|
+
/**
|
|
1814
|
+
* @internal
|
|
1815
|
+
*/
|
|
1816
|
+
constructor(opts: __ExceptionOptionType<PipelineVersionNotFoundException, __BaseException>);
|
|
1817
|
+
}
|
|
1818
|
+
/**
|
|
1819
|
+
* <p>Represents the input of a <code>GetPipelineExecution</code> action.</p>
|
|
1820
|
+
*/
|
|
1821
|
+
export interface GetPipelineExecutionInput {
|
|
1822
|
+
/**
|
|
1823
|
+
* <p>The name of the pipeline about which you want to get execution details.</p>
|
|
1824
|
+
*/
|
|
1825
|
+
pipelineName: string | undefined;
|
|
1826
|
+
/**
|
|
1827
|
+
* <p>The ID of the pipeline execution about which you want to get execution
|
|
1828
|
+
* details.</p>
|
|
1829
|
+
*/
|
|
1830
|
+
pipelineExecutionId: string | undefined;
|
|
1831
|
+
}
|
|
1832
|
+
export declare enum PipelineExecutionStatus {
|
|
1833
|
+
Cancelled = "Cancelled",
|
|
1834
|
+
Failed = "Failed",
|
|
1835
|
+
InProgress = "InProgress",
|
|
1836
|
+
Stopped = "Stopped",
|
|
1837
|
+
Stopping = "Stopping",
|
|
1838
|
+
Succeeded = "Succeeded",
|
|
1839
|
+
Superseded = "Superseded"
|
|
1840
|
+
}
|
|
1841
|
+
/**
|
|
1842
|
+
* <p>Represents information about an execution of a pipeline.</p>
|
|
1843
|
+
*/
|
|
1844
|
+
export interface PipelineExecution {
|
|
1845
|
+
/**
|
|
1846
|
+
* <p>The name of the pipeline with the specified pipeline execution.</p>
|
|
1847
|
+
*/
|
|
1848
|
+
pipelineName?: string;
|
|
1849
|
+
/**
|
|
1850
|
+
* <p>The version number of the pipeline with the specified pipeline execution.</p>
|
|
1851
|
+
*/
|
|
1852
|
+
pipelineVersion?: number;
|
|
1853
|
+
/**
|
|
1854
|
+
* <p>The ID of the pipeline execution.</p>
|
|
1855
|
+
*/
|
|
1856
|
+
pipelineExecutionId?: string;
|
|
1857
|
+
/**
|
|
1858
|
+
* <p>The status of the pipeline execution.</p>
|
|
1859
|
+
* <ul>
|
|
1860
|
+
* <li>
|
|
1861
|
+
* <p>Cancelled: The pipeline’s definition was updated before the pipeline
|
|
1862
|
+
* execution could be completed.</p>
|
|
1863
|
+
* </li>
|
|
1864
|
+
* <li>
|
|
1865
|
+
* <p>InProgress: The pipeline execution is currently running.</p>
|
|
1866
|
+
* </li>
|
|
1867
|
+
* <li>
|
|
1868
|
+
* <p>Stopped: The pipeline execution was manually stopped. For more information,
|
|
1869
|
+
* see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped">Stopped Executions</a>.</p>
|
|
1870
|
+
* </li>
|
|
1871
|
+
* <li>
|
|
1872
|
+
* <p>Stopping: The pipeline execution received a request to be manually stopped.
|
|
1873
|
+
* Depending on the selected stop mode, the execution is either completing or
|
|
1874
|
+
* abandoning in-progress actions. For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped">Stopped Executions</a>.</p>
|
|
1875
|
+
* </li>
|
|
1876
|
+
* <li>
|
|
1877
|
+
* <p>Succeeded: The pipeline execution was completed successfully. </p>
|
|
1878
|
+
* </li>
|
|
1879
|
+
* <li>
|
|
1880
|
+
* <p>Superseded: While this pipeline execution was waiting for the next stage to
|
|
1881
|
+
* be completed, a newer pipeline execution advanced and continued through the
|
|
1882
|
+
* pipeline instead. For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded">Superseded Executions</a>.</p>
|
|
1883
|
+
* </li>
|
|
1884
|
+
* <li>
|
|
1885
|
+
* <p>Failed: The pipeline execution was not completed successfully.</p>
|
|
1886
|
+
* </li>
|
|
1887
|
+
* </ul>
|
|
1888
|
+
*/
|
|
1889
|
+
status?: PipelineExecutionStatus | string;
|
|
1890
|
+
/**
|
|
1891
|
+
* <p>A summary that contains a description of the pipeline execution status.</p>
|
|
1892
|
+
*/
|
|
1893
|
+
statusSummary?: string;
|
|
1894
|
+
/**
|
|
1895
|
+
* <p>A list of <code>ArtifactRevision</code> objects included in a pipeline
|
|
1896
|
+
* execution.</p>
|
|
1897
|
+
*/
|
|
1898
|
+
artifactRevisions?: ArtifactRevision[];
|
|
1899
|
+
}
|
|
1900
|
+
/**
|
|
1901
|
+
* <p>Represents the output of a <code>GetPipelineExecution</code> action.</p>
|
|
1902
|
+
*/
|
|
1903
|
+
export interface GetPipelineExecutionOutput {
|
|
1904
|
+
/**
|
|
1905
|
+
* <p>Represents information about the execution of a pipeline.</p>
|
|
1906
|
+
*/
|
|
1907
|
+
pipelineExecution?: PipelineExecution;
|
|
1908
|
+
}
|
|
1909
|
+
/**
|
|
1910
|
+
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
1911
|
+
* execution ID does not belong to the specified pipeline. </p>
|
|
1912
|
+
*/
|
|
1913
|
+
export declare class PipelineExecutionNotFoundException extends __BaseException {
|
|
1914
|
+
readonly name: "PipelineExecutionNotFoundException";
|
|
1915
|
+
readonly $fault: "client";
|
|
1916
|
+
/**
|
|
1917
|
+
* @internal
|
|
1918
|
+
*/
|
|
1919
|
+
constructor(opts: __ExceptionOptionType<PipelineExecutionNotFoundException, __BaseException>);
|
|
1920
|
+
}
|
|
1921
|
+
/**
|
|
1922
|
+
* <p>Represents the input of a <code>GetPipelineState</code> action.</p>
|
|
1923
|
+
*/
|
|
1924
|
+
export interface GetPipelineStateInput {
|
|
1925
|
+
/**
|
|
1926
|
+
* <p>The name of the pipeline about which you want to get information.</p>
|
|
1927
|
+
*/
|
|
1928
|
+
name: string | undefined;
|
|
1929
|
+
}
|
|
1930
|
+
export declare enum StageExecutionStatus {
|
|
1931
|
+
Cancelled = "Cancelled",
|
|
1932
|
+
Failed = "Failed",
|
|
1933
|
+
InProgress = "InProgress",
|
|
1934
|
+
Stopped = "Stopped",
|
|
1935
|
+
Stopping = "Stopping",
|
|
1936
|
+
Succeeded = "Succeeded"
|
|
1937
|
+
}
|
|
1938
|
+
/**
|
|
1939
|
+
* <p>Represents information about the run of a stage.</p>
|
|
1940
|
+
*/
|
|
1941
|
+
export interface StageExecution {
|
|
1942
|
+
/**
|
|
1943
|
+
* <p>The ID of the pipeline execution associated with the stage.</p>
|
|
1944
|
+
*/
|
|
1945
|
+
pipelineExecutionId: string | undefined;
|
|
1946
|
+
/**
|
|
1947
|
+
* <p>The status of the stage, or for a completed stage, the last status of the
|
|
1948
|
+
* stage.</p>
|
|
1949
|
+
* <note>
|
|
1950
|
+
* <p>A status of cancelled means that the pipeline’s definition was updated before the
|
|
1951
|
+
* stage execution could be completed.</p>
|
|
1952
|
+
* </note>
|
|
1953
|
+
*/
|
|
1954
|
+
status: StageExecutionStatus | string | undefined;
|
|
1955
|
+
}
|
|
1956
|
+
/**
|
|
1957
|
+
* <p>Represents information about the state of transitions between one stage and another
|
|
1958
|
+
* stage.</p>
|
|
1959
|
+
*/
|
|
1960
|
+
export interface TransitionState {
|
|
1961
|
+
/**
|
|
1962
|
+
* <p>Whether the transition between stages is enabled (true) or disabled
|
|
1963
|
+
* (false).</p>
|
|
1964
|
+
*/
|
|
1965
|
+
enabled?: boolean;
|
|
1966
|
+
/**
|
|
1967
|
+
* <p>The ID of the user who last changed the transition state.</p>
|
|
1968
|
+
*/
|
|
1969
|
+
lastChangedBy?: string;
|
|
1970
|
+
/**
|
|
1971
|
+
* <p>The timestamp when the transition state was last changed.</p>
|
|
1972
|
+
*/
|
|
1973
|
+
lastChangedAt?: Date;
|
|
1974
|
+
/**
|
|
1975
|
+
* <p>The user-specified reason why the transition between two stages of a pipeline was
|
|
1976
|
+
* disabled.</p>
|
|
1977
|
+
*/
|
|
1978
|
+
disabledReason?: string;
|
|
1979
|
+
}
|
|
1980
|
+
/**
|
|
1981
|
+
* <p>Represents information about the state of the stage.</p>
|
|
1982
|
+
*/
|
|
1983
|
+
export interface StageState {
|
|
1984
|
+
/**
|
|
1985
|
+
* <p>The name of the stage.</p>
|
|
1986
|
+
*/
|
|
1987
|
+
stageName?: string;
|
|
1988
|
+
/**
|
|
1989
|
+
* <p>Represents information about the run of a stage.</p>
|
|
1990
|
+
*/
|
|
1991
|
+
inboundExecution?: StageExecution;
|
|
1992
|
+
/**
|
|
1993
|
+
* <p>The state of the inbound transition, which is either enabled or disabled.</p>
|
|
1994
|
+
*/
|
|
1995
|
+
inboundTransitionState?: TransitionState;
|
|
1996
|
+
/**
|
|
1997
|
+
* <p>The state of the stage.</p>
|
|
1998
|
+
*/
|
|
1999
|
+
actionStates?: ActionState[];
|
|
2000
|
+
/**
|
|
2001
|
+
* <p>Information about the latest execution in the stage, including its ID and
|
|
2002
|
+
* status.</p>
|
|
2003
|
+
*/
|
|
2004
|
+
latestExecution?: StageExecution;
|
|
2005
|
+
}
|
|
2006
|
+
/**
|
|
2007
|
+
* <p>Represents the output of a <code>GetPipelineState</code> action.</p>
|
|
2008
|
+
*/
|
|
2009
|
+
export interface GetPipelineStateOutput {
|
|
2010
|
+
/**
|
|
2011
|
+
* <p>The name of the pipeline for which you want to get the state.</p>
|
|
2012
|
+
*/
|
|
2013
|
+
pipelineName?: string;
|
|
2014
|
+
/**
|
|
2015
|
+
* <p>The version number of the pipeline.</p>
|
|
2016
|
+
* <note>
|
|
2017
|
+
* <p>A newly created pipeline is always assigned a version number of
|
|
2018
|
+
* <code>1</code>.</p>
|
|
2019
|
+
* </note>
|
|
2020
|
+
*/
|
|
2021
|
+
pipelineVersion?: number;
|
|
2022
|
+
/**
|
|
2023
|
+
* <p>A list of the pipeline stage output information, including stage name, state, most
|
|
2024
|
+
* recent run details, whether the stage is disabled, and other data.</p>
|
|
2025
|
+
*/
|
|
2026
|
+
stageStates?: StageState[];
|
|
2027
|
+
/**
|
|
2028
|
+
* <p>The date and time the pipeline was created, in timestamp format.</p>
|
|
2029
|
+
*/
|
|
2030
|
+
created?: Date;
|
|
2031
|
+
/**
|
|
2032
|
+
* <p>The date and time the pipeline was last updated, in timestamp format.</p>
|
|
2033
|
+
*/
|
|
2034
|
+
updated?: Date;
|
|
2035
|
+
}
|
|
2036
|
+
/**
|
|
2037
|
+
* <p>Represents the input of a <code>GetThirdPartyJobDetails</code> action.</p>
|
|
2038
|
+
*/
|
|
2039
|
+
export interface GetThirdPartyJobDetailsInput {
|
|
2040
|
+
/**
|
|
2041
|
+
* <p>The unique system-generated ID used for identifying the job.</p>
|
|
2042
|
+
*/
|
|
2043
|
+
jobId: string | undefined;
|
|
2044
|
+
/**
|
|
2045
|
+
* <p>The clientToken portion of the clientId and clientToken pair used to verify that
|
|
2046
|
+
* the calling entity is allowed access to the job and its details.</p>
|
|
2047
|
+
*/
|
|
2048
|
+
clientToken: string | undefined;
|
|
2049
|
+
}
|
|
2050
|
+
/**
|
|
2051
|
+
* <p>Represents information about the job data for a partner action.</p>
|
|
2052
|
+
*/
|
|
2053
|
+
export interface ThirdPartyJobData {
|
|
2054
|
+
/**
|
|
2055
|
+
* <p>Represents information about an action type.</p>
|
|
2056
|
+
*/
|
|
2057
|
+
actionTypeId?: ActionTypeId;
|
|
2058
|
+
/**
|
|
2059
|
+
* <p>Represents information about an action configuration.</p>
|
|
2060
|
+
*/
|
|
2061
|
+
actionConfiguration?: ActionConfiguration;
|
|
2062
|
+
/**
|
|
2063
|
+
* <p>Represents information about a pipeline to a job worker.</p>
|
|
2064
|
+
* <note>
|
|
2065
|
+
* <p>Does not include <code>pipelineArn</code> and <code>pipelineExecutionId</code>
|
|
2066
|
+
* for ThirdParty jobs.</p>
|
|
2067
|
+
* </note>
|
|
2068
|
+
*/
|
|
2069
|
+
pipelineContext?: PipelineContext;
|
|
2070
|
+
/**
|
|
2071
|
+
* <p>The name of the artifact that is worked on by the action, if any. This name might
|
|
2072
|
+
* be system-generated, such as "MyApp", or it might be defined by the user when the action
|
|
2073
|
+
* is created. The input artifact name must match the name of an output artifact generated
|
|
2074
|
+
* by an action in an earlier action or stage of the pipeline.</p>
|
|
2075
|
+
*/
|
|
2076
|
+
inputArtifacts?: Artifact[];
|
|
2077
|
+
/**
|
|
2078
|
+
* <p>The name of the artifact that is the result of the action, if any. This name might
|
|
2079
|
+
* be system-generated, such as "MyBuiltApp", or it might be defined by the user when the
|
|
2080
|
+
* action is created.</p>
|
|
2081
|
+
*/
|
|
2082
|
+
outputArtifacts?: Artifact[];
|
|
2083
|
+
/**
|
|
2084
|
+
* <p>Represents an AWS session credentials object. These credentials are temporary
|
|
2085
|
+
* credentials that are issued by AWS Secure Token Service (STS). They can be used to
|
|
2086
|
+
* access input and output artifacts in the S3 bucket used to store artifact for the
|
|
2087
|
+
* pipeline in AWS CodePipeline. </p>
|
|
2088
|
+
*/
|
|
2089
|
+
artifactCredentials?: AWSSessionCredentials;
|
|
2090
|
+
/**
|
|
2091
|
+
* <p>A system-generated token, such as a AWS CodeDeploy deployment ID, that a job
|
|
2092
|
+
* requires to continue the job asynchronously.</p>
|
|
2093
|
+
*/
|
|
2094
|
+
continuationToken?: string;
|
|
2095
|
+
/**
|
|
2096
|
+
* <p>The encryption key used to encrypt and decrypt data in the artifact store for the
|
|
2097
|
+
* pipeline, such as an AWS Key Management Service (AWS KMS) key. This is optional and
|
|
2098
|
+
* might not be present.</p>
|
|
2099
|
+
*/
|
|
2100
|
+
encryptionKey?: EncryptionKey;
|
|
2101
|
+
}
|
|
2102
|
+
/**
|
|
2103
|
+
* <p>The details of a job sent in response to a <code>GetThirdPartyJobDetails</code>
|
|
2104
|
+
* request.</p>
|
|
2105
|
+
*/
|
|
2106
|
+
export interface ThirdPartyJobDetails {
|
|
2107
|
+
/**
|
|
2108
|
+
* <p>The identifier used to identify the job details in AWS CodePipeline.</p>
|
|
2109
|
+
*/
|
|
2110
|
+
id?: string;
|
|
2111
|
+
/**
|
|
2112
|
+
* <p>The data to be returned by the third party job worker.</p>
|
|
2113
|
+
*/
|
|
2114
|
+
data?: ThirdPartyJobData;
|
|
2115
|
+
/**
|
|
2116
|
+
* <p>A system-generated random number that AWS CodePipeline uses to ensure that the job
|
|
2117
|
+
* is being worked on by only one job worker. Use this number in an <a>AcknowledgeThirdPartyJob</a> request.</p>
|
|
2118
|
+
*/
|
|
2119
|
+
nonce?: string;
|
|
2120
|
+
}
|
|
2121
|
+
/**
|
|
2122
|
+
* <p>Represents the output of a <code>GetThirdPartyJobDetails</code> action.</p>
|
|
2123
|
+
*/
|
|
2124
|
+
export interface GetThirdPartyJobDetailsOutput {
|
|
2125
|
+
/**
|
|
2126
|
+
* <p>The details of the job, including any protected values defined for the
|
|
2127
|
+
* job.</p>
|
|
2128
|
+
*/
|
|
2129
|
+
jobDetails?: ThirdPartyJobDetails;
|
|
2130
|
+
}
|
|
2131
|
+
/**
|
|
2132
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
2133
|
+
*/
|
|
2134
|
+
export declare class InvalidJobException extends __BaseException {
|
|
2135
|
+
readonly name: "InvalidJobException";
|
|
2136
|
+
readonly $fault: "client";
|
|
2137
|
+
/**
|
|
2138
|
+
* @internal
|
|
2139
|
+
*/
|
|
2140
|
+
constructor(opts: __ExceptionOptionType<InvalidJobException, __BaseException>);
|
|
2141
|
+
}
|
|
2142
|
+
/**
|
|
2143
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
2144
|
+
* you provide is the token returned by a previous call.</p>
|
|
2145
|
+
*/
|
|
2146
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2147
|
+
readonly name: "InvalidNextTokenException";
|
|
2148
|
+
readonly $fault: "client";
|
|
2149
|
+
/**
|
|
2150
|
+
* @internal
|
|
2151
|
+
*/
|
|
2152
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2153
|
+
}
|
|
2154
|
+
export interface ListActionExecutionsInput {
|
|
2155
|
+
/**
|
|
2156
|
+
* <p> The name of the pipeline for which you want to list action execution history.</p>
|
|
2157
|
+
*/
|
|
2158
|
+
pipelineName: string | undefined;
|
|
2159
|
+
/**
|
|
2160
|
+
* <p>Input information used to filter action execution history.</p>
|
|
2161
|
+
*/
|
|
2162
|
+
filter?: ActionExecutionFilter;
|
|
2163
|
+
/**
|
|
2164
|
+
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
2165
|
+
* results, make another call with the returned nextToken value. Action execution history
|
|
2166
|
+
* is retained for up to 12 months, based on action execution start times. Default value is
|
|
2167
|
+
* 100. </p>
|
|
2168
|
+
* <note>
|
|
2169
|
+
* <p>Detailed execution history is available for executions run on or after February
|
|
2170
|
+
* 21, 2019.</p>
|
|
2171
|
+
* </note>
|
|
2172
|
+
*/
|
|
2173
|
+
maxResults?: number;
|
|
2174
|
+
/**
|
|
2175
|
+
* <p>The token that was returned from the previous <code>ListActionExecutions</code> call,
|
|
2176
|
+
* which can be used to return the next set of action executions in the list.</p>
|
|
2177
|
+
*/
|
|
2178
|
+
nextToken?: string;
|
|
2179
|
+
}
|
|
2180
|
+
export interface ListActionExecutionsOutput {
|
|
2181
|
+
/**
|
|
2182
|
+
* <p>The details for a list of recent executions, such as action execution ID.</p>
|
|
2183
|
+
*/
|
|
2184
|
+
actionExecutionDetails?: ActionExecutionDetail[];
|
|
2185
|
+
/**
|
|
2186
|
+
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
2187
|
+
* returned and can be used in a subsequent <code>ListActionExecutions</code> call to
|
|
2188
|
+
* return the next set of action executions in the list.</p>
|
|
2189
|
+
*/
|
|
2190
|
+
nextToken?: string;
|
|
2191
|
+
}
|
|
2192
|
+
/**
|
|
2193
|
+
* <p>Represents the input of a <code>ListActionTypes</code> action.</p>
|
|
2194
|
+
*/
|
|
2195
|
+
export interface ListActionTypesInput {
|
|
2196
|
+
/**
|
|
2197
|
+
* <p>Filters the list of action types to those created by a specified entity.</p>
|
|
2198
|
+
*/
|
|
2199
|
+
actionOwnerFilter?: ActionOwner | string;
|
|
2200
|
+
/**
|
|
2201
|
+
* <p>An identifier that was returned from the previous list action types call, which can
|
|
2202
|
+
* be used to return the next set of action types in the list.</p>
|
|
2203
|
+
*/
|
|
2204
|
+
nextToken?: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* <p>The Region to filter on for the list of action types.</p>
|
|
2207
|
+
*/
|
|
2208
|
+
regionFilter?: string;
|
|
2209
|
+
}
|
|
2210
|
+
/**
|
|
2211
|
+
* <p>Represents the output of a <code>ListActionTypes</code> action.</p>
|
|
2212
|
+
*/
|
|
2213
|
+
export interface ListActionTypesOutput {
|
|
2214
|
+
/**
|
|
2215
|
+
* <p>Provides details of the action types.</p>
|
|
2216
|
+
*/
|
|
2217
|
+
actionTypes: ActionType[] | undefined;
|
|
2218
|
+
/**
|
|
2219
|
+
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
2220
|
+
* returned. It can be used in a subsequent list action types call to return the next set
|
|
2221
|
+
* of action types in the list.</p>
|
|
2222
|
+
*/
|
|
2223
|
+
nextToken?: string;
|
|
2224
|
+
}
|
|
2225
|
+
/**
|
|
2226
|
+
* <p>Represents the input of a <code>ListPipelineExecutions</code> action.</p>
|
|
2227
|
+
*/
|
|
2228
|
+
export interface ListPipelineExecutionsInput {
|
|
2229
|
+
/**
|
|
2230
|
+
* <p>The name of the pipeline for which you want to get execution summary
|
|
2231
|
+
* information.</p>
|
|
2232
|
+
*/
|
|
2233
|
+
pipelineName: string | undefined;
|
|
2234
|
+
/**
|
|
2235
|
+
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
2236
|
+
* results, make another call with the returned nextToken value. Pipeline history is
|
|
2237
|
+
* limited to the most recent 12 months, based on pipeline execution start times. Default
|
|
2238
|
+
* value is 100.</p>
|
|
2239
|
+
*/
|
|
2240
|
+
maxResults?: number;
|
|
2241
|
+
/**
|
|
2242
|
+
* <p>The token that was returned from the previous <code>ListPipelineExecutions</code>
|
|
2243
|
+
* call, which can be used to return the next set of pipeline executions in the
|
|
2244
|
+
* list.</p>
|
|
2245
|
+
*/
|
|
2246
|
+
nextToken?: string;
|
|
2247
|
+
}
|
|
2248
|
+
/**
|
|
2249
|
+
* <p>Information about the version (or revision) of a source artifact that initiated a
|
|
2250
|
+
* pipeline execution.</p>
|
|
2251
|
+
*/
|
|
2252
|
+
export interface SourceRevision {
|
|
2253
|
+
/**
|
|
2254
|
+
* <p>The name of the action that processed the revision to the source
|
|
2255
|
+
* artifact.</p>
|
|
2256
|
+
*/
|
|
2257
|
+
actionName: string | undefined;
|
|
2258
|
+
/**
|
|
2259
|
+
* <p>The system-generated unique ID that identifies the revision number of the
|
|
2260
|
+
* artifact.</p>
|
|
2261
|
+
*/
|
|
2262
|
+
revisionId?: string;
|
|
2263
|
+
/**
|
|
2264
|
+
* <p>Summary information about the most recent revision of the artifact. For GitHub and
|
|
2265
|
+
* AWS CodeCommit repositories, the commit message. For Amazon S3 buckets or actions, the
|
|
2266
|
+
* user-provided content of a <code>codepipeline-artifact-revision-summary</code> key
|
|
2267
|
+
* specified in the object metadata.</p>
|
|
2268
|
+
*/
|
|
2269
|
+
revisionSummary?: string;
|
|
2270
|
+
/**
|
|
2271
|
+
* <p>The commit ID for the artifact revision. For artifacts stored in GitHub or AWS
|
|
2272
|
+
* CodeCommit repositories, the commit ID is linked to a commit details page.</p>
|
|
2273
|
+
*/
|
|
2274
|
+
revisionUrl?: string;
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* <p>The interaction that stopped a pipeline execution.</p>
|
|
2278
|
+
*/
|
|
2279
|
+
export interface StopExecutionTrigger {
|
|
2280
|
+
/**
|
|
2281
|
+
* <p>The user-specified reason the pipeline was stopped.</p>
|
|
2282
|
+
*/
|
|
2283
|
+
reason?: string;
|
|
2284
|
+
}
|
|
2285
|
+
export declare enum TriggerType {
|
|
2286
|
+
CloudWatchEvent = "CloudWatchEvent",
|
|
2287
|
+
CreatePipeline = "CreatePipeline",
|
|
2288
|
+
PollForSourceChanges = "PollForSourceChanges",
|
|
2289
|
+
PutActionRevision = "PutActionRevision",
|
|
2290
|
+
StartPipelineExecution = "StartPipelineExecution",
|
|
2291
|
+
Webhook = "Webhook"
|
|
2292
|
+
}
|
|
2293
|
+
/**
|
|
2294
|
+
* <p>The interaction or event that started a pipeline execution.</p>
|
|
2295
|
+
*/
|
|
2296
|
+
export interface ExecutionTrigger {
|
|
2297
|
+
/**
|
|
2298
|
+
* <p>The type of change-detection method, command, or user interaction that started a
|
|
2299
|
+
* pipeline execution.</p>
|
|
2300
|
+
*/
|
|
2301
|
+
triggerType?: TriggerType | string;
|
|
2302
|
+
/**
|
|
2303
|
+
* <p>Detail related to the event that started a pipeline execution, such as the webhook ARN
|
|
2304
|
+
* of the webhook that triggered the pipeline execution or the user ARN for a
|
|
2305
|
+
* user-initiated <code>start-pipeline-execution</code> CLI command.</p>
|
|
2306
|
+
*/
|
|
2307
|
+
triggerDetail?: string;
|
|
2308
|
+
}
|
|
2309
|
+
/**
|
|
2310
|
+
* <p>Summary information about a pipeline execution.</p>
|
|
2311
|
+
*/
|
|
2312
|
+
export interface PipelineExecutionSummary {
|
|
2313
|
+
/**
|
|
2314
|
+
* <p>The ID of the pipeline execution.</p>
|
|
2315
|
+
*/
|
|
2316
|
+
pipelineExecutionId?: string;
|
|
2317
|
+
/**
|
|
2318
|
+
* <p>The status of the pipeline execution.</p>
|
|
2319
|
+
* <ul>
|
|
2320
|
+
* <li>
|
|
2321
|
+
* <p>InProgress: The pipeline execution is currently running.</p>
|
|
2322
|
+
* </li>
|
|
2323
|
+
* <li>
|
|
2324
|
+
* <p>Stopped: The pipeline execution was manually stopped. For more information,
|
|
2325
|
+
* see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped">Stopped Executions</a>.</p>
|
|
2326
|
+
* </li>
|
|
2327
|
+
* <li>
|
|
2328
|
+
* <p>Stopping: The pipeline execution received a request to be manually stopped.
|
|
2329
|
+
* Depending on the selected stop mode, the execution is either completing or
|
|
2330
|
+
* abandoning in-progress actions. For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped">Stopped Executions</a>.</p>
|
|
2331
|
+
* </li>
|
|
2332
|
+
* <li>
|
|
2333
|
+
* <p>Succeeded: The pipeline execution was completed successfully. </p>
|
|
2334
|
+
* </li>
|
|
2335
|
+
* <li>
|
|
2336
|
+
* <p>Superseded: While this pipeline execution was waiting for the next stage to
|
|
2337
|
+
* be completed, a newer pipeline execution advanced and continued through the
|
|
2338
|
+
* pipeline instead. For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded">Superseded Executions</a>.</p>
|
|
2339
|
+
* </li>
|
|
2340
|
+
* <li>
|
|
2341
|
+
* <p>Failed: The pipeline execution was not completed successfully.</p>
|
|
2342
|
+
* </li>
|
|
2343
|
+
* </ul>
|
|
2344
|
+
*/
|
|
2345
|
+
status?: PipelineExecutionStatus | string;
|
|
2346
|
+
/**
|
|
2347
|
+
* <p>The date and time when the pipeline execution began, in timestamp format.</p>
|
|
2348
|
+
*/
|
|
2349
|
+
startTime?: Date;
|
|
2350
|
+
/**
|
|
2351
|
+
* <p>The date and time of the last change to the pipeline execution, in timestamp
|
|
2352
|
+
* format.</p>
|
|
2353
|
+
*/
|
|
2354
|
+
lastUpdateTime?: Date;
|
|
2355
|
+
/**
|
|
2356
|
+
* <p>A list of the source artifact revisions that initiated a pipeline
|
|
2357
|
+
* execution.</p>
|
|
2358
|
+
*/
|
|
2359
|
+
sourceRevisions?: SourceRevision[];
|
|
2360
|
+
/**
|
|
2361
|
+
* <p>The interaction or event that started a pipeline execution, such as automated change
|
|
2362
|
+
* detection or a <code>StartPipelineExecution</code> API call.</p>
|
|
2363
|
+
*/
|
|
2364
|
+
trigger?: ExecutionTrigger;
|
|
2365
|
+
/**
|
|
2366
|
+
* <p>The interaction that stopped a pipeline execution.</p>
|
|
2367
|
+
*/
|
|
2368
|
+
stopTrigger?: StopExecutionTrigger;
|
|
2369
|
+
}
|
|
2370
|
+
/**
|
|
2371
|
+
* <p>Represents the output of a <code>ListPipelineExecutions</code> action.</p>
|
|
2372
|
+
*/
|
|
2373
|
+
export interface ListPipelineExecutionsOutput {
|
|
2374
|
+
/**
|
|
2375
|
+
* <p>A list of executions in the history of a pipeline.</p>
|
|
2376
|
+
*/
|
|
2377
|
+
pipelineExecutionSummaries?: PipelineExecutionSummary[];
|
|
2378
|
+
/**
|
|
2379
|
+
* <p>A token that can be used in the next <code>ListPipelineExecutions</code> call. To
|
|
2380
|
+
* view all items in the list, continue to call this operation with each subsequent token
|
|
2381
|
+
* until no more nextToken values are returned.</p>
|
|
2382
|
+
*/
|
|
2383
|
+
nextToken?: string;
|
|
2384
|
+
}
|
|
2385
|
+
/**
|
|
2386
|
+
* <p>Represents the input of a <code>ListPipelines</code> action.</p>
|
|
2387
|
+
*/
|
|
2388
|
+
export interface ListPipelinesInput {
|
|
2389
|
+
/**
|
|
2390
|
+
* <p>An identifier that was returned from the previous list pipelines call. It can be
|
|
2391
|
+
* used to return the next set of pipelines in the list.</p>
|
|
2392
|
+
*/
|
|
2393
|
+
nextToken?: string;
|
|
2394
|
+
/**
|
|
2395
|
+
* <p>The maximum number of pipelines to return in a single call. To retrieve the remaining
|
|
2396
|
+
* pipelines, make another call with the returned nextToken value. The minimum value you
|
|
2397
|
+
* can specify is 1. The maximum accepted value is 1000.</p>
|
|
2398
|
+
*/
|
|
2399
|
+
maxResults?: number;
|
|
2400
|
+
}
|
|
2401
|
+
/**
|
|
2402
|
+
* <p>Returns a summary of a pipeline.</p>
|
|
2403
|
+
*/
|
|
2404
|
+
export interface PipelineSummary {
|
|
2405
|
+
/**
|
|
2406
|
+
* <p>The name of the pipeline.</p>
|
|
2407
|
+
*/
|
|
2408
|
+
name?: string;
|
|
2409
|
+
/**
|
|
2410
|
+
* <p>The version number of the pipeline.</p>
|
|
2411
|
+
*/
|
|
2412
|
+
version?: number;
|
|
2413
|
+
/**
|
|
2414
|
+
* <p>The date and time the pipeline was created, in timestamp format.</p>
|
|
2415
|
+
*/
|
|
2416
|
+
created?: Date;
|
|
2417
|
+
/**
|
|
2418
|
+
* <p>The date and time of the last update to the pipeline, in timestamp
|
|
2419
|
+
* format.</p>
|
|
2420
|
+
*/
|
|
2421
|
+
updated?: Date;
|
|
2422
|
+
}
|
|
2423
|
+
/**
|
|
2424
|
+
* <p>Represents the output of a <code>ListPipelines</code> action.</p>
|
|
2425
|
+
*/
|
|
2426
|
+
export interface ListPipelinesOutput {
|
|
2427
|
+
/**
|
|
2428
|
+
* <p>The list of pipelines.</p>
|
|
2429
|
+
*/
|
|
2430
|
+
pipelines?: PipelineSummary[];
|
|
2431
|
+
/**
|
|
2432
|
+
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
2433
|
+
* returned. It can be used in a subsequent list pipelines call to return the next set of
|
|
2434
|
+
* pipelines in the list.</p>
|
|
2435
|
+
*/
|
|
2436
|
+
nextToken?: string;
|
|
2437
|
+
}
|
|
2438
|
+
/**
|
|
2439
|
+
* <p>The specified resource ARN is invalid.</p>
|
|
2440
|
+
*/
|
|
2441
|
+
export declare class InvalidArnException extends __BaseException {
|
|
2442
|
+
readonly name: "InvalidArnException";
|
|
2443
|
+
readonly $fault: "client";
|
|
2444
|
+
/**
|
|
2445
|
+
* @internal
|
|
2446
|
+
*/
|
|
2447
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
2448
|
+
}
|
|
2449
|
+
export interface ListTagsForResourceInput {
|
|
2450
|
+
/**
|
|
2451
|
+
* <p>The Amazon Resource Name (ARN) of the resource to get tags for.</p>
|
|
2452
|
+
*/
|
|
2453
|
+
resourceArn: string | undefined;
|
|
2454
|
+
/**
|
|
2455
|
+
* <p>The token that was returned from the previous API call, which would be used to return
|
|
2456
|
+
* the next page of the list. The ListTagsforResource call lists all available tags in one
|
|
2457
|
+
* call and does not use pagination.</p>
|
|
2458
|
+
*/
|
|
2459
|
+
nextToken?: string;
|
|
2460
|
+
/**
|
|
2461
|
+
* <p>The maximum number of results to return in a single call.</p>
|
|
2462
|
+
*/
|
|
2463
|
+
maxResults?: number;
|
|
2464
|
+
}
|
|
2465
|
+
export interface ListTagsForResourceOutput {
|
|
2466
|
+
/**
|
|
2467
|
+
* <p>The tags for the resource.</p>
|
|
2468
|
+
*/
|
|
2469
|
+
tags?: Tag[];
|
|
2470
|
+
/**
|
|
2471
|
+
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
2472
|
+
* returned and can be used in a subsequent API call to return the next page of the list.
|
|
2473
|
+
* The ListTagsforResource call lists all available tags in one call and does not use
|
|
2474
|
+
* pagination.</p>
|
|
2475
|
+
*/
|
|
2476
|
+
nextToken?: string;
|
|
2477
|
+
}
|
|
2478
|
+
/**
|
|
2479
|
+
* <p>The resource was specified in an invalid format.</p>
|
|
2480
|
+
*/
|
|
2481
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
2482
|
+
readonly name: "ResourceNotFoundException";
|
|
2483
|
+
readonly $fault: "client";
|
|
2484
|
+
/**
|
|
2485
|
+
* @internal
|
|
2486
|
+
*/
|
|
2487
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
2488
|
+
}
|
|
2489
|
+
export interface ListWebhooksInput {
|
|
2490
|
+
/**
|
|
2491
|
+
* <p>The token that was returned from the previous ListWebhooks call, which can be used
|
|
2492
|
+
* to return the next set of webhooks in the list.</p>
|
|
2493
|
+
*/
|
|
2494
|
+
NextToken?: string;
|
|
2495
|
+
/**
|
|
2496
|
+
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
2497
|
+
* results, make another call with the returned nextToken value.</p>
|
|
2498
|
+
*/
|
|
2499
|
+
MaxResults?: number;
|
|
2500
|
+
}
|
|
2501
|
+
export declare enum WebhookAuthenticationType {
|
|
2502
|
+
GITHUB_HMAC = "GITHUB_HMAC",
|
|
2503
|
+
IP = "IP",
|
|
2504
|
+
UNAUTHENTICATED = "UNAUTHENTICATED"
|
|
2505
|
+
}
|
|
2506
|
+
/**
|
|
2507
|
+
* <p>The authentication applied to incoming webhook trigger requests.</p>
|
|
2508
|
+
*/
|
|
2509
|
+
export interface WebhookAuthConfiguration {
|
|
2510
|
+
/**
|
|
2511
|
+
* <p>The property used to configure acceptance of webhooks in an IP address range. For
|
|
2512
|
+
* IP, only the <code>AllowedIPRange</code> property must be set. This property must be set
|
|
2513
|
+
* to a valid CIDR range.</p>
|
|
2514
|
+
*/
|
|
2515
|
+
AllowedIPRange?: string;
|
|
2516
|
+
/**
|
|
2517
|
+
* <p>The property used to configure GitHub authentication. For GITHUB_HMAC, only the
|
|
2518
|
+
* <code>SecretToken</code> property must be set.</p>
|
|
2519
|
+
*/
|
|
2520
|
+
SecretToken?: string;
|
|
2521
|
+
}
|
|
2522
|
+
/**
|
|
2523
|
+
* <p>The event criteria that specify when a webhook notification is sent to your
|
|
2524
|
+
* URL.</p>
|
|
2525
|
+
*/
|
|
2526
|
+
export interface WebhookFilterRule {
|
|
2527
|
+
/**
|
|
2528
|
+
* <p>A JsonPath expression that is applied to the body/payload of the webhook. The value
|
|
2529
|
+
* selected by the JsonPath expression must match the value specified in the
|
|
2530
|
+
* <code>MatchEquals</code> field. Otherwise, the request is ignored. For more
|
|
2531
|
+
* information, see <a href="https://github.com/json-path/JsonPath">Java JsonPath
|
|
2532
|
+
* implementation</a> in GitHub.</p>
|
|
2533
|
+
*/
|
|
2534
|
+
jsonPath: string | undefined;
|
|
2535
|
+
/**
|
|
2536
|
+
* <p>The value selected by the <code>JsonPath</code> expression must match what is
|
|
2537
|
+
* supplied in the <code>MatchEquals</code> field. Otherwise, the request is ignored.
|
|
2538
|
+
* Properties from the target action configuration can be included as placeholders in this
|
|
2539
|
+
* value by surrounding the action configuration key with curly brackets. For example, if
|
|
2540
|
+
* the value supplied here is "refs/heads/{Branch}" and the target action has an action
|
|
2541
|
+
* configuration property called "Branch" with a value of "master", the
|
|
2542
|
+
* <code>MatchEquals</code> value is evaluated as "refs/heads/master". For a list of
|
|
2543
|
+
* action configuration properties for built-in action types, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements">Pipeline Structure Reference Action Requirements</a>.</p>
|
|
2544
|
+
*/
|
|
2545
|
+
matchEquals?: string;
|
|
2546
|
+
}
|
|
2547
|
+
/**
|
|
2548
|
+
* <p>Represents information about a webhook and its definition.</p>
|
|
2549
|
+
*/
|
|
2550
|
+
export interface WebhookDefinition {
|
|
2551
|
+
/**
|
|
2552
|
+
* <p>The name of the webhook.</p>
|
|
2553
|
+
*/
|
|
2554
|
+
name: string | undefined;
|
|
2555
|
+
/**
|
|
2556
|
+
* <p>The name of the pipeline you want to connect to the webhook.</p>
|
|
2557
|
+
*/
|
|
2558
|
+
targetPipeline: string | undefined;
|
|
2559
|
+
/**
|
|
2560
|
+
* <p>The name of the action in a pipeline you want to connect to the webhook. The action
|
|
2561
|
+
* must be from the source (first) stage of the pipeline.</p>
|
|
2562
|
+
*/
|
|
2563
|
+
targetAction: string | undefined;
|
|
2564
|
+
/**
|
|
2565
|
+
* <p>A list of rules applied to the body/payload sent in the POST request to a webhook
|
|
2566
|
+
* URL. All defined rules must pass for the request to be accepted and the pipeline
|
|
2567
|
+
* started.</p>
|
|
2568
|
+
*/
|
|
2569
|
+
filters: WebhookFilterRule[] | undefined;
|
|
2570
|
+
/**
|
|
2571
|
+
* <p>Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.</p>
|
|
2572
|
+
* <ul>
|
|
2573
|
+
* <li>
|
|
2574
|
+
* <p>For information about the authentication scheme implemented by GITHUB_HMAC,
|
|
2575
|
+
* see <a href="https://developer.github.com/webhooks/securing/">Securing your
|
|
2576
|
+
* webhooks</a> on the GitHub Developer website.</p>
|
|
2577
|
+
* </li>
|
|
2578
|
+
* <li>
|
|
2579
|
+
* <p> IP rejects webhooks trigger requests unless they originate from an IP
|
|
2580
|
+
* address in the IP range whitelisted in the authentication
|
|
2581
|
+
* configuration.</p>
|
|
2582
|
+
* </li>
|
|
2583
|
+
* <li>
|
|
2584
|
+
* <p> UNAUTHENTICATED accepts all webhook trigger requests regardless of
|
|
2585
|
+
* origin.</p>
|
|
2586
|
+
* </li>
|
|
2587
|
+
* </ul>
|
|
2588
|
+
*/
|
|
2589
|
+
authentication: WebhookAuthenticationType | string | undefined;
|
|
2590
|
+
/**
|
|
2591
|
+
* <p>Properties that configure the authentication applied to incoming webhook trigger
|
|
2592
|
+
* requests. The required properties depend on the authentication type. For GITHUB_HMAC,
|
|
2593
|
+
* only the <code>SecretToken </code>property must be set. For IP, only the
|
|
2594
|
+
* <code>AllowedIPRange </code>property must be set to a valid CIDR range. For
|
|
2595
|
+
* UNAUTHENTICATED, no properties can be set.</p>
|
|
2596
|
+
*/
|
|
2597
|
+
authenticationConfiguration: WebhookAuthConfiguration | undefined;
|
|
2598
|
+
}
|
|
2599
|
+
/**
|
|
2600
|
+
* <p>The detail returned for each webhook after listing webhooks, such as the webhook
|
|
2601
|
+
* URL, the webhook name, and the webhook ARN.</p>
|
|
2602
|
+
*/
|
|
2603
|
+
export interface ListWebhookItem {
|
|
2604
|
+
/**
|
|
2605
|
+
* <p>The detail returned for each webhook, such as the webhook authentication type and
|
|
2606
|
+
* filter rules.</p>
|
|
2607
|
+
*/
|
|
2608
|
+
definition: WebhookDefinition | undefined;
|
|
2609
|
+
/**
|
|
2610
|
+
* <p>A unique URL generated by CodePipeline. When a POST request is made to this URL,
|
|
2611
|
+
* the defined pipeline is started as long as the body of the post request satisfies the
|
|
2612
|
+
* defined authentication and filtering conditions. Deleting and re-creating a webhook
|
|
2613
|
+
* makes the old URL invalid and generates a new one.</p>
|
|
2614
|
+
*/
|
|
2615
|
+
url: string | undefined;
|
|
2616
|
+
/**
|
|
2617
|
+
* <p>The text of the error message about the webhook.</p>
|
|
2618
|
+
*/
|
|
2619
|
+
errorMessage?: string;
|
|
2620
|
+
/**
|
|
2621
|
+
* <p>The number code of the error.</p>
|
|
2622
|
+
*/
|
|
2623
|
+
errorCode?: string;
|
|
2624
|
+
/**
|
|
2625
|
+
* <p>The date and time a webhook was last successfully triggered, in timestamp
|
|
2626
|
+
* format.</p>
|
|
2627
|
+
*/
|
|
2628
|
+
lastTriggered?: Date;
|
|
2629
|
+
/**
|
|
2630
|
+
* <p>The Amazon Resource Name (ARN) of the webhook.</p>
|
|
2631
|
+
*/
|
|
2632
|
+
arn?: string;
|
|
2633
|
+
/**
|
|
2634
|
+
* <p>Specifies the tags applied to the webhook.</p>
|
|
2635
|
+
*/
|
|
2636
|
+
tags?: Tag[];
|
|
2637
|
+
}
|
|
2638
|
+
export interface ListWebhooksOutput {
|
|
2639
|
+
/**
|
|
2640
|
+
* <p>The JSON detail returned for each webhook in the list output for the ListWebhooks
|
|
2641
|
+
* call.</p>
|
|
2642
|
+
*/
|
|
2643
|
+
webhooks?: ListWebhookItem[];
|
|
2644
|
+
/**
|
|
2645
|
+
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
2646
|
+
* returned and can be used in a subsequent ListWebhooks call to return the next set of
|
|
2647
|
+
* webhooks in the list. </p>
|
|
2648
|
+
*/
|
|
2649
|
+
NextToken?: string;
|
|
2650
|
+
}
|
|
2651
|
+
/**
|
|
2652
|
+
* <p>Represents the input of a <code>PollForJobs</code> action.</p>
|
|
2653
|
+
*/
|
|
2654
|
+
export interface PollForJobsInput {
|
|
2655
|
+
/**
|
|
2656
|
+
* <p>Represents information about an action type.</p>
|
|
2657
|
+
*/
|
|
2658
|
+
actionTypeId: ActionTypeId | undefined;
|
|
2659
|
+
/**
|
|
2660
|
+
* <p>The maximum number of jobs to return in a poll for jobs call.</p>
|
|
2661
|
+
*/
|
|
2662
|
+
maxBatchSize?: number;
|
|
2663
|
+
/**
|
|
2664
|
+
* <p>A map of property names and values. For an action type with no queryable
|
|
2665
|
+
* properties, this value must be null or an empty map. For an action type with a queryable
|
|
2666
|
+
* property, you must supply that property as a key in the map. Only jobs whose action
|
|
2667
|
+
* configuration matches the mapped value are returned.</p>
|
|
2668
|
+
*/
|
|
2669
|
+
queryParam?: Record<string, string>;
|
|
2670
|
+
}
|
|
2671
|
+
/**
|
|
2672
|
+
* <p>Represents information about a job.</p>
|
|
2673
|
+
*/
|
|
2674
|
+
export interface Job {
|
|
2675
|
+
/**
|
|
2676
|
+
* <p>The unique system-generated ID of the job.</p>
|
|
2677
|
+
*/
|
|
2678
|
+
id?: string;
|
|
2679
|
+
/**
|
|
2680
|
+
* <p>Other data about a job.</p>
|
|
2681
|
+
*/
|
|
2682
|
+
data?: JobData;
|
|
2683
|
+
/**
|
|
2684
|
+
* <p>A system-generated random number that AWS CodePipeline uses to ensure that the job
|
|
2685
|
+
* is being worked on by only one job worker. Use this number in an <a>AcknowledgeJob</a> request.</p>
|
|
2686
|
+
*/
|
|
2687
|
+
nonce?: string;
|
|
2688
|
+
/**
|
|
2689
|
+
* <p>The ID of the AWS account to use when performing the job.</p>
|
|
2690
|
+
*/
|
|
2691
|
+
accountId?: string;
|
|
2692
|
+
}
|
|
2693
|
+
/**
|
|
2694
|
+
* <p>Represents the output of a <code>PollForJobs</code> action.</p>
|
|
2695
|
+
*/
|
|
2696
|
+
export interface PollForJobsOutput {
|
|
2697
|
+
/**
|
|
2698
|
+
* <p>Information about the jobs to take action on.</p>
|
|
2699
|
+
*/
|
|
2700
|
+
jobs?: Job[];
|
|
2701
|
+
}
|
|
2702
|
+
/**
|
|
2703
|
+
* <p>Represents the input of a <code>PollForThirdPartyJobs</code> action.</p>
|
|
2704
|
+
*/
|
|
2705
|
+
export interface PollForThirdPartyJobsInput {
|
|
2706
|
+
/**
|
|
2707
|
+
* <p>Represents information about an action type.</p>
|
|
2708
|
+
*/
|
|
2709
|
+
actionTypeId: ActionTypeId | undefined;
|
|
2710
|
+
/**
|
|
2711
|
+
* <p>The maximum number of jobs to return in a poll for jobs call.</p>
|
|
2712
|
+
*/
|
|
2713
|
+
maxBatchSize?: number;
|
|
2714
|
+
}
|
|
2715
|
+
/**
|
|
2716
|
+
* <p>A response to a <code>PollForThirdPartyJobs</code> request returned by AWS
|
|
2717
|
+
* CodePipeline when there is a job to be worked on by a partner action.</p>
|
|
2718
|
+
*/
|
|
2719
|
+
export interface ThirdPartyJob {
|
|
2720
|
+
/**
|
|
2721
|
+
* <p>The <code>clientToken</code> portion of the <code>clientId</code> and
|
|
2722
|
+
* <code>clientToken</code> pair used to verify that the calling entity is allowed
|
|
2723
|
+
* access to the job and its details.</p>
|
|
2724
|
+
*/
|
|
2725
|
+
clientId?: string;
|
|
2726
|
+
/**
|
|
2727
|
+
* <p>The identifier used to identify the job in AWS CodePipeline.</p>
|
|
2728
|
+
*/
|
|
2729
|
+
jobId?: string;
|
|
2730
|
+
}
|
|
2731
|
+
/**
|
|
2732
|
+
* <p>Represents the output of a <code>PollForThirdPartyJobs</code> action.</p>
|
|
2733
|
+
*/
|
|
2734
|
+
export interface PollForThirdPartyJobsOutput {
|
|
2735
|
+
/**
|
|
2736
|
+
* <p>Information about the jobs to take action on.</p>
|
|
2737
|
+
*/
|
|
2738
|
+
jobs?: ThirdPartyJob[];
|
|
2739
|
+
}
|
|
2740
|
+
/**
|
|
2741
|
+
* <p>Represents the input of a <code>PutActionRevision</code> action.</p>
|
|
2742
|
+
*/
|
|
2743
|
+
export interface PutActionRevisionInput {
|
|
2744
|
+
/**
|
|
2745
|
+
* <p>The name of the pipeline that starts processing the revision to the
|
|
2746
|
+
* source.</p>
|
|
2747
|
+
*/
|
|
2748
|
+
pipelineName: string | undefined;
|
|
2749
|
+
/**
|
|
2750
|
+
* <p>The name of the stage that contains the action that acts on the revision.</p>
|
|
2751
|
+
*/
|
|
2752
|
+
stageName: string | undefined;
|
|
2753
|
+
/**
|
|
2754
|
+
* <p>The name of the action that processes the revision.</p>
|
|
2755
|
+
*/
|
|
2756
|
+
actionName: string | undefined;
|
|
2757
|
+
/**
|
|
2758
|
+
* <p>Represents information about the version (or revision) of an action.</p>
|
|
2759
|
+
*/
|
|
2760
|
+
actionRevision: ActionRevision | undefined;
|
|
2761
|
+
}
|
|
2762
|
+
/**
|
|
2763
|
+
* <p>Represents the output of a <code>PutActionRevision</code> action.</p>
|
|
2764
|
+
*/
|
|
2765
|
+
export interface PutActionRevisionOutput {
|
|
2766
|
+
/**
|
|
2767
|
+
* <p>Indicates whether the artifact revision was previously used in an execution of the
|
|
2768
|
+
* specified pipeline.</p>
|
|
2769
|
+
*/
|
|
2770
|
+
newRevision?: boolean;
|
|
2771
|
+
/**
|
|
2772
|
+
* <p>The ID of the current workflow state of the pipeline.</p>
|
|
2773
|
+
*/
|
|
2774
|
+
pipelineExecutionId?: string;
|
|
2775
|
+
}
|
|
2776
|
+
/**
|
|
2777
|
+
* <p>The approval request already received a response or has expired.</p>
|
|
2778
|
+
*/
|
|
2779
|
+
export declare class InvalidApprovalTokenException extends __BaseException {
|
|
2780
|
+
readonly name: "InvalidApprovalTokenException";
|
|
2781
|
+
readonly $fault: "client";
|
|
2782
|
+
/**
|
|
2783
|
+
* @internal
|
|
2784
|
+
*/
|
|
2785
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>);
|
|
2786
|
+
}
|
|
2787
|
+
/**
|
|
2788
|
+
* <p>Represents the input of a <code>PutApprovalResult</code> action.</p>
|
|
2789
|
+
*/
|
|
2790
|
+
export interface PutApprovalResultInput {
|
|
2791
|
+
/**
|
|
2792
|
+
* <p>The name of the pipeline that contains the action. </p>
|
|
2793
|
+
*/
|
|
2794
|
+
pipelineName: string | undefined;
|
|
2795
|
+
/**
|
|
2796
|
+
* <p>The name of the stage that contains the action.</p>
|
|
2797
|
+
*/
|
|
2798
|
+
stageName: string | undefined;
|
|
2799
|
+
/**
|
|
2800
|
+
* <p>The name of the action for which approval is requested.</p>
|
|
2801
|
+
*/
|
|
2802
|
+
actionName: string | undefined;
|
|
2803
|
+
/**
|
|
2804
|
+
* <p>Represents information about the result of the approval request.</p>
|
|
2805
|
+
*/
|
|
2806
|
+
result: ApprovalResult | undefined;
|
|
2807
|
+
/**
|
|
2808
|
+
* <p>The system-generated token used to identify a unique approval request. The token
|
|
2809
|
+
* for each open approval request can be obtained using the <a>GetPipelineState</a> action. It is used to validate that the approval
|
|
2810
|
+
* request corresponding to this token is still valid.</p>
|
|
2811
|
+
*/
|
|
2812
|
+
token: string | undefined;
|
|
2813
|
+
}
|
|
2814
|
+
/**
|
|
2815
|
+
* <p>Represents the output of a <code>PutApprovalResult</code> action.</p>
|
|
2816
|
+
*/
|
|
2817
|
+
export interface PutApprovalResultOutput {
|
|
2818
|
+
/**
|
|
2819
|
+
* <p>The timestamp showing when the approval or rejection was submitted.</p>
|
|
2820
|
+
*/
|
|
2821
|
+
approvedAt?: Date;
|
|
2822
|
+
}
|
|
2823
|
+
/**
|
|
2824
|
+
* <p>The job state was specified in an invalid format.</p>
|
|
2825
|
+
*/
|
|
2826
|
+
export declare class InvalidJobStateException extends __BaseException {
|
|
2827
|
+
readonly name: "InvalidJobStateException";
|
|
2828
|
+
readonly $fault: "client";
|
|
2829
|
+
/**
|
|
2830
|
+
* @internal
|
|
2831
|
+
*/
|
|
2832
|
+
constructor(opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>);
|
|
2833
|
+
}
|
|
2834
|
+
export declare enum FailureType {
|
|
2835
|
+
ConfigurationError = "ConfigurationError",
|
|
2836
|
+
JobFailed = "JobFailed",
|
|
2837
|
+
PermissionError = "PermissionError",
|
|
2838
|
+
RevisionOutOfSync = "RevisionOutOfSync",
|
|
2839
|
+
RevisionUnavailable = "RevisionUnavailable",
|
|
2840
|
+
SystemUnavailable = "SystemUnavailable"
|
|
2841
|
+
}
|
|
2842
|
+
/**
|
|
2843
|
+
* <p>Represents information about failure details.</p>
|
|
2844
|
+
*/
|
|
2845
|
+
export interface FailureDetails {
|
|
2846
|
+
/**
|
|
2847
|
+
* <p>The type of the failure.</p>
|
|
2848
|
+
*/
|
|
2849
|
+
type: FailureType | string | undefined;
|
|
2850
|
+
/**
|
|
2851
|
+
* <p>The message about the failure.</p>
|
|
2852
|
+
*/
|
|
2853
|
+
message: string | undefined;
|
|
2854
|
+
/**
|
|
2855
|
+
* <p>The external ID of the run of the action that failed.</p>
|
|
2856
|
+
*/
|
|
2857
|
+
externalExecutionId?: string;
|
|
2858
|
+
}
|
|
2859
|
+
/**
|
|
2860
|
+
* <p>Represents the input of a <code>PutJobFailureResult</code> action.</p>
|
|
2861
|
+
*/
|
|
2862
|
+
export interface PutJobFailureResultInput {
|
|
2863
|
+
/**
|
|
2864
|
+
* <p>The unique system-generated ID of the job that failed. This is the same ID returned
|
|
2865
|
+
* from <code>PollForJobs</code>.</p>
|
|
2866
|
+
*/
|
|
2867
|
+
jobId: string | undefined;
|
|
2868
|
+
/**
|
|
2869
|
+
* <p>The details about the failure of a job.</p>
|
|
2870
|
+
*/
|
|
2871
|
+
failureDetails: FailureDetails | undefined;
|
|
2872
|
+
}
|
|
2873
|
+
/**
|
|
2874
|
+
* <p>Exceeded the total size limit for all variables in the pipeline.</p>
|
|
2875
|
+
*/
|
|
2876
|
+
export declare class OutputVariablesSizeExceededException extends __BaseException {
|
|
2877
|
+
readonly name: "OutputVariablesSizeExceededException";
|
|
2878
|
+
readonly $fault: "client";
|
|
2879
|
+
/**
|
|
2880
|
+
* @internal
|
|
2881
|
+
*/
|
|
2882
|
+
constructor(opts: __ExceptionOptionType<OutputVariablesSizeExceededException, __BaseException>);
|
|
2883
|
+
}
|
|
2884
|
+
/**
|
|
2885
|
+
* <p>Represents information about a current revision.</p>
|
|
2886
|
+
*/
|
|
2887
|
+
export interface CurrentRevision {
|
|
2888
|
+
/**
|
|
2889
|
+
* <p>The revision ID of the current version of an artifact.</p>
|
|
2890
|
+
*/
|
|
2891
|
+
revision: string | undefined;
|
|
2892
|
+
/**
|
|
2893
|
+
* <p>The change identifier for the current revision.</p>
|
|
2894
|
+
*/
|
|
2895
|
+
changeIdentifier: string | undefined;
|
|
2896
|
+
/**
|
|
2897
|
+
* <p>The date and time when the most recent revision of the artifact was created, in
|
|
2898
|
+
* timestamp format.</p>
|
|
2899
|
+
*/
|
|
2900
|
+
created?: Date;
|
|
2901
|
+
/**
|
|
2902
|
+
* <p>The summary of the most recent revision of the artifact.</p>
|
|
2903
|
+
*/
|
|
2904
|
+
revisionSummary?: string;
|
|
2905
|
+
}
|
|
2906
|
+
/**
|
|
2907
|
+
* <p>The details of the actions taken and results produced on an artifact as it passes
|
|
2908
|
+
* through stages in the pipeline.</p>
|
|
2909
|
+
*/
|
|
2910
|
+
export interface ExecutionDetails {
|
|
2911
|
+
/**
|
|
2912
|
+
* <p>The summary of the current status of the actions.</p>
|
|
2913
|
+
*/
|
|
2914
|
+
summary?: string;
|
|
2915
|
+
/**
|
|
2916
|
+
* <p>The system-generated unique ID of this action used to identify this job worker in
|
|
2917
|
+
* any external systems, such as AWS CodeDeploy.</p>
|
|
2918
|
+
*/
|
|
2919
|
+
externalExecutionId?: string;
|
|
2920
|
+
/**
|
|
2921
|
+
* <p>The percentage of work completed on the action, represented on a scale of 0 to 100
|
|
2922
|
+
* percent.</p>
|
|
2923
|
+
*/
|
|
2924
|
+
percentComplete?: number;
|
|
2925
|
+
}
|
|
2926
|
+
/**
|
|
2927
|
+
* <p>Represents the input of a <code>PutJobSuccessResult</code> action.</p>
|
|
2928
|
+
*/
|
|
2929
|
+
export interface PutJobSuccessResultInput {
|
|
2930
|
+
/**
|
|
2931
|
+
* <p>The unique system-generated ID of the job that succeeded. This is the same ID
|
|
2932
|
+
* returned from <code>PollForJobs</code>.</p>
|
|
2933
|
+
*/
|
|
2934
|
+
jobId: string | undefined;
|
|
2935
|
+
/**
|
|
2936
|
+
* <p>The ID of the current revision of the artifact successfully worked on by the
|
|
2937
|
+
* job.</p>
|
|
2938
|
+
*/
|
|
2939
|
+
currentRevision?: CurrentRevision;
|
|
2940
|
+
/**
|
|
2941
|
+
* <p>A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a
|
|
2942
|
+
* successful job provides to identify a custom action in progress. Future jobs use this
|
|
2943
|
+
* token to identify the running instance of the action. It can be reused to return more
|
|
2944
|
+
* information about the progress of the custom action. When the action is complete, no
|
|
2945
|
+
* continuation token should be supplied.</p>
|
|
2946
|
+
*/
|
|
2947
|
+
continuationToken?: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* <p>The execution details of the successful job, such as the actions taken by the job
|
|
2950
|
+
* worker.</p>
|
|
2951
|
+
*/
|
|
2952
|
+
executionDetails?: ExecutionDetails;
|
|
2953
|
+
/**
|
|
2954
|
+
* <p>Key-value pairs produced as output by a job worker that can be made available to a
|
|
2955
|
+
* downstream action configuration. <code>outputVariables</code> can be included only when
|
|
2956
|
+
* there is no continuation token on the request.</p>
|
|
2957
|
+
*/
|
|
2958
|
+
outputVariables?: Record<string, string>;
|
|
2959
|
+
}
|
|
2960
|
+
/**
|
|
2961
|
+
* <p>Represents the input of a <code>PutThirdPartyJobFailureResult</code>
|
|
2962
|
+
* action.</p>
|
|
2963
|
+
*/
|
|
2964
|
+
export interface PutThirdPartyJobFailureResultInput {
|
|
2965
|
+
/**
|
|
2966
|
+
* <p>The ID of the job that failed. This is the same ID returned from
|
|
2967
|
+
* <code>PollForThirdPartyJobs</code>.</p>
|
|
2968
|
+
*/
|
|
2969
|
+
jobId: string | undefined;
|
|
2970
|
+
/**
|
|
2971
|
+
* <p>The clientToken portion of the clientId and clientToken pair used to verify that
|
|
2972
|
+
* the calling entity is allowed access to the job and its details.</p>
|
|
2973
|
+
*/
|
|
2974
|
+
clientToken: string | undefined;
|
|
2975
|
+
/**
|
|
2976
|
+
* <p>Represents information about failure details.</p>
|
|
2977
|
+
*/
|
|
2978
|
+
failureDetails: FailureDetails | undefined;
|
|
2979
|
+
}
|
|
2980
|
+
/**
|
|
2981
|
+
* <p>Represents the input of a <code>PutThirdPartyJobSuccessResult</code>
|
|
2982
|
+
* action.</p>
|
|
2983
|
+
*/
|
|
2984
|
+
export interface PutThirdPartyJobSuccessResultInput {
|
|
2985
|
+
/**
|
|
2986
|
+
* <p>The ID of the job that successfully completed. This is the same ID returned from
|
|
2987
|
+
* <code>PollForThirdPartyJobs</code>.</p>
|
|
2988
|
+
*/
|
|
2989
|
+
jobId: string | undefined;
|
|
2990
|
+
/**
|
|
2991
|
+
* <p>The clientToken portion of the clientId and clientToken pair used to verify that
|
|
2992
|
+
* the calling entity is allowed access to the job and its details.</p>
|
|
2993
|
+
*/
|
|
2994
|
+
clientToken: string | undefined;
|
|
2995
|
+
/**
|
|
2996
|
+
* <p>Represents information about a current revision.</p>
|
|
2997
|
+
*/
|
|
2998
|
+
currentRevision?: CurrentRevision;
|
|
2999
|
+
/**
|
|
3000
|
+
* <p>A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a
|
|
3001
|
+
* successful job provides to identify a partner action in progress. Future jobs use this
|
|
3002
|
+
* token to identify the running instance of the action. It can be reused to return more
|
|
3003
|
+
* information about the progress of the partner action. When the action is complete, no
|
|
3004
|
+
* continuation token should be supplied.</p>
|
|
3005
|
+
*/
|
|
3006
|
+
continuationToken?: string;
|
|
3007
|
+
/**
|
|
3008
|
+
* <p>The details of the actions taken and results produced on an artifact as it passes
|
|
3009
|
+
* through stages in the pipeline. </p>
|
|
3010
|
+
*/
|
|
3011
|
+
executionDetails?: ExecutionDetails;
|
|
3012
|
+
}
|
|
3013
|
+
/**
|
|
3014
|
+
* <p>The specified authentication type is in an invalid format.</p>
|
|
3015
|
+
*/
|
|
3016
|
+
export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
3017
|
+
readonly name: "InvalidWebhookAuthenticationParametersException";
|
|
3018
|
+
readonly $fault: "client";
|
|
3019
|
+
/**
|
|
3020
|
+
* @internal
|
|
3021
|
+
*/
|
|
3022
|
+
constructor(opts: __ExceptionOptionType<InvalidWebhookAuthenticationParametersException, __BaseException>);
|
|
3023
|
+
}
|
|
3024
|
+
/**
|
|
3025
|
+
* <p>The specified event filter rule is in an invalid format.</p>
|
|
3026
|
+
*/
|
|
3027
|
+
export declare class InvalidWebhookFilterPatternException extends __BaseException {
|
|
3028
|
+
readonly name: "InvalidWebhookFilterPatternException";
|
|
3029
|
+
readonly $fault: "client";
|
|
3030
|
+
/**
|
|
3031
|
+
* @internal
|
|
3032
|
+
*/
|
|
3033
|
+
constructor(opts: __ExceptionOptionType<InvalidWebhookFilterPatternException, __BaseException>);
|
|
3034
|
+
}
|
|
3035
|
+
export interface PutWebhookInput {
|
|
3036
|
+
/**
|
|
3037
|
+
* <p>The detail provided in an input file to create the webhook, such as the webhook
|
|
3038
|
+
* name, the pipeline name, and the action name. Give the webhook a unique name that helps
|
|
3039
|
+
* you identify it. You might name the webhook after the pipeline and action it targets so
|
|
3040
|
+
* that you can easily recognize what it's used for later.</p>
|
|
3041
|
+
*/
|
|
3042
|
+
webhook: WebhookDefinition | undefined;
|
|
3043
|
+
/**
|
|
3044
|
+
* <p>The tags for the webhook.</p>
|
|
3045
|
+
*/
|
|
3046
|
+
tags?: Tag[];
|
|
3047
|
+
}
|
|
3048
|
+
export interface PutWebhookOutput {
|
|
3049
|
+
/**
|
|
3050
|
+
* <p>The detail returned from creating the webhook, such as the webhook name, webhook
|
|
3051
|
+
* URL, and webhook ARN.</p>
|
|
3052
|
+
*/
|
|
3053
|
+
webhook?: ListWebhookItem;
|
|
3054
|
+
}
|
|
3055
|
+
export interface RegisterWebhookWithThirdPartyInput {
|
|
3056
|
+
/**
|
|
3057
|
+
* <p>The name of an existing webhook created with PutWebhook to register with a
|
|
3058
|
+
* supported third party. </p>
|
|
3059
|
+
*/
|
|
3060
|
+
webhookName?: string;
|
|
3061
|
+
}
|
|
3062
|
+
export interface RegisterWebhookWithThirdPartyOutput {
|
|
3063
|
+
}
|
|
3064
|
+
/**
|
|
3065
|
+
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
3066
|
+
* activities. Try again later.</p>
|
|
3067
|
+
*/
|
|
3068
|
+
export declare class ConflictException extends __BaseException {
|
|
3069
|
+
readonly name: "ConflictException";
|
|
3070
|
+
readonly $fault: "client";
|
|
3071
|
+
/**
|
|
3072
|
+
* @internal
|
|
3073
|
+
*/
|
|
3074
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
3075
|
+
}
|
|
3076
|
+
/**
|
|
3077
|
+
* <p>The stage has failed in a later run of the pipeline and the pipelineExecutionId
|
|
3078
|
+
* associated with the request is out of date.</p>
|
|
3079
|
+
*/
|
|
3080
|
+
export declare class NotLatestPipelineExecutionException extends __BaseException {
|
|
3081
|
+
readonly name: "NotLatestPipelineExecutionException";
|
|
3082
|
+
readonly $fault: "client";
|
|
3083
|
+
/**
|
|
3084
|
+
* @internal
|
|
3085
|
+
*/
|
|
3086
|
+
constructor(opts: __ExceptionOptionType<NotLatestPipelineExecutionException, __BaseException>);
|
|
3087
|
+
}
|
|
3088
|
+
export declare enum StageRetryMode {
|
|
3089
|
+
FAILED_ACTIONS = "FAILED_ACTIONS"
|
|
3090
|
+
}
|
|
3091
|
+
/**
|
|
3092
|
+
* <p>Represents the input of a <code>RetryStageExecution</code> action.</p>
|
|
3093
|
+
*/
|
|
3094
|
+
export interface RetryStageExecutionInput {
|
|
3095
|
+
/**
|
|
3096
|
+
* <p>The name of the pipeline that contains the failed stage.</p>
|
|
3097
|
+
*/
|
|
3098
|
+
pipelineName: string | undefined;
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>The name of the failed stage to be retried.</p>
|
|
3101
|
+
*/
|
|
3102
|
+
stageName: string | undefined;
|
|
3103
|
+
/**
|
|
3104
|
+
* <p>The ID of the pipeline execution in the failed stage to be retried. Use the <a>GetPipelineState</a> action to retrieve the current pipelineExecutionId of
|
|
3105
|
+
* the failed stage</p>
|
|
3106
|
+
*/
|
|
3107
|
+
pipelineExecutionId: string | undefined;
|
|
3108
|
+
/**
|
|
3109
|
+
* <p>The scope of the retry attempt. Currently, the only supported value is
|
|
3110
|
+
* FAILED_ACTIONS.</p>
|
|
3111
|
+
*/
|
|
3112
|
+
retryMode: StageRetryMode | string | undefined;
|
|
3113
|
+
}
|
|
3114
|
+
/**
|
|
3115
|
+
* <p>Represents the output of a <code>RetryStageExecution</code> action.</p>
|
|
3116
|
+
*/
|
|
3117
|
+
export interface RetryStageExecutionOutput {
|
|
3118
|
+
/**
|
|
3119
|
+
* <p>The ID of the current workflow execution in the failed stage.</p>
|
|
3120
|
+
*/
|
|
3121
|
+
pipelineExecutionId?: string;
|
|
3122
|
+
}
|
|
3123
|
+
/**
|
|
3124
|
+
* <p>Unable to retry. The pipeline structure or stage state might have changed while
|
|
3125
|
+
* actions awaited retry, or the stage contains no failed
|
|
3126
|
+
* actions.</p>
|
|
3127
|
+
*/
|
|
3128
|
+
export declare class StageNotRetryableException extends __BaseException {
|
|
3129
|
+
readonly name: "StageNotRetryableException";
|
|
3130
|
+
readonly $fault: "client";
|
|
3131
|
+
/**
|
|
3132
|
+
* @internal
|
|
3133
|
+
*/
|
|
3134
|
+
constructor(opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>);
|
|
3135
|
+
}
|
|
3136
|
+
/**
|
|
3137
|
+
* <p>Represents the input of a <code>StartPipelineExecution</code> action.</p>
|
|
3138
|
+
*/
|
|
3139
|
+
export interface StartPipelineExecutionInput {
|
|
3140
|
+
/**
|
|
3141
|
+
* <p>The name of the pipeline to start.</p>
|
|
3142
|
+
*/
|
|
3143
|
+
name: string | undefined;
|
|
3144
|
+
/**
|
|
3145
|
+
* <p>The system-generated unique ID used to identify a unique execution
|
|
3146
|
+
* request.</p>
|
|
3147
|
+
*/
|
|
3148
|
+
clientRequestToken?: string;
|
|
3149
|
+
}
|
|
3150
|
+
/**
|
|
3151
|
+
* <p>Represents the output of a <code>StartPipelineExecution</code> action.</p>
|
|
3152
|
+
*/
|
|
3153
|
+
export interface StartPipelineExecutionOutput {
|
|
3154
|
+
/**
|
|
3155
|
+
* <p>The unique system-generated ID of the pipeline execution that was
|
|
3156
|
+
* started.</p>
|
|
3157
|
+
*/
|
|
3158
|
+
pipelineExecutionId?: string;
|
|
3159
|
+
}
|
|
3160
|
+
/**
|
|
3161
|
+
* <p>The pipeline execution is already in a <code>Stopping</code> state. If you already
|
|
3162
|
+
* chose to stop and wait, you cannot make that request again. You can choose to stop and
|
|
3163
|
+
* abandon now, but be aware that this option can lead to failed tasks or out of sequence
|
|
3164
|
+
* tasks. If you already chose to stop and abandon, you cannot make that request
|
|
3165
|
+
* again.</p>
|
|
3166
|
+
*/
|
|
3167
|
+
export declare class DuplicatedStopRequestException extends __BaseException {
|
|
3168
|
+
readonly name: "DuplicatedStopRequestException";
|
|
3169
|
+
readonly $fault: "client";
|
|
3170
|
+
/**
|
|
3171
|
+
* @internal
|
|
3172
|
+
*/
|
|
3173
|
+
constructor(opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>);
|
|
3174
|
+
}
|
|
3175
|
+
/**
|
|
3176
|
+
* <p>Unable to stop the pipeline execution. The execution might already be in a
|
|
3177
|
+
* <code>Stopped</code> state, or it might no longer be in progress.</p>
|
|
3178
|
+
*/
|
|
3179
|
+
export declare class PipelineExecutionNotStoppableException extends __BaseException {
|
|
3180
|
+
readonly name: "PipelineExecutionNotStoppableException";
|
|
3181
|
+
readonly $fault: "client";
|
|
3182
|
+
/**
|
|
3183
|
+
* @internal
|
|
3184
|
+
*/
|
|
3185
|
+
constructor(opts: __ExceptionOptionType<PipelineExecutionNotStoppableException, __BaseException>);
|
|
3186
|
+
}
|
|
3187
|
+
export interface StopPipelineExecutionInput {
|
|
3188
|
+
/**
|
|
3189
|
+
* <p>The name of the pipeline to stop.</p>
|
|
3190
|
+
*/
|
|
3191
|
+
pipelineName: string | undefined;
|
|
3192
|
+
/**
|
|
3193
|
+
* <p>The ID of the pipeline execution to be stopped in the current stage. Use the
|
|
3194
|
+
* <code>GetPipelineState</code> action to retrieve the current
|
|
3195
|
+
* pipelineExecutionId.</p>
|
|
3196
|
+
*/
|
|
3197
|
+
pipelineExecutionId: string | undefined;
|
|
3198
|
+
/**
|
|
3199
|
+
* <p>Use this option to stop the pipeline execution by abandoning, rather than finishing,
|
|
3200
|
+
* in-progress actions.</p>
|
|
3201
|
+
* <note>
|
|
3202
|
+
* <p>This option can lead to failed or out-of-sequence tasks.</p>
|
|
3203
|
+
* </note>
|
|
3204
|
+
*/
|
|
3205
|
+
abandon?: boolean;
|
|
3206
|
+
/**
|
|
3207
|
+
* <p>Use this option to enter comments, such as the reason the pipeline was stopped.</p>
|
|
3208
|
+
*/
|
|
3209
|
+
reason?: string;
|
|
3210
|
+
}
|
|
3211
|
+
export interface StopPipelineExecutionOutput {
|
|
3212
|
+
/**
|
|
3213
|
+
* <p>The unique system-generated ID of the pipeline execution that was stopped.</p>
|
|
3214
|
+
*/
|
|
3215
|
+
pipelineExecutionId?: string;
|
|
3216
|
+
}
|
|
3217
|
+
export interface TagResourceInput {
|
|
3218
|
+
/**
|
|
3219
|
+
* <p>The Amazon Resource Name (ARN) of the resource you want to add tags to.</p>
|
|
3220
|
+
*/
|
|
3221
|
+
resourceArn: string | undefined;
|
|
3222
|
+
/**
|
|
3223
|
+
* <p>The tags you want to modify or add to the resource.</p>
|
|
3224
|
+
*/
|
|
3225
|
+
tags: Tag[] | undefined;
|
|
3226
|
+
}
|
|
3227
|
+
export interface TagResourceOutput {
|
|
3228
|
+
}
|
|
3229
|
+
export interface UntagResourceInput {
|
|
3230
|
+
/**
|
|
3231
|
+
* <p> The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
|
|
3232
|
+
*/
|
|
3233
|
+
resourceArn: string | undefined;
|
|
3234
|
+
/**
|
|
3235
|
+
* <p>The list of keys for the tags to be removed from the resource.</p>
|
|
3236
|
+
*/
|
|
3237
|
+
tagKeys: string[] | undefined;
|
|
3238
|
+
}
|
|
3239
|
+
export interface UntagResourceOutput {
|
|
3240
|
+
}
|
|
3241
|
+
/**
|
|
3242
|
+
* <p>The request failed because of an unknown error, exception, or failure.</p>
|
|
3243
|
+
*/
|
|
3244
|
+
export declare class RequestFailedException extends __BaseException {
|
|
3245
|
+
readonly name: "RequestFailedException";
|
|
3246
|
+
readonly $fault: "client";
|
|
3247
|
+
/**
|
|
3248
|
+
* @internal
|
|
3249
|
+
*/
|
|
3250
|
+
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
3251
|
+
}
|
|
3252
|
+
export interface UpdateActionTypeInput {
|
|
3253
|
+
/**
|
|
3254
|
+
* <p>The action type definition for the action type to be updated.</p>
|
|
3255
|
+
*/
|
|
3256
|
+
actionType: ActionTypeDeclaration | undefined;
|
|
3257
|
+
}
|
|
3258
|
+
/**
|
|
3259
|
+
* <p>Represents the input of an <code>UpdatePipeline</code> action.</p>
|
|
3260
|
+
*/
|
|
3261
|
+
export interface UpdatePipelineInput {
|
|
3262
|
+
/**
|
|
3263
|
+
* <p>The name of the pipeline to be updated.</p>
|
|
3264
|
+
*/
|
|
3265
|
+
pipeline: PipelineDeclaration | undefined;
|
|
3266
|
+
}
|
|
3267
|
+
/**
|
|
3268
|
+
* <p>Represents the output of an <code>UpdatePipeline</code> action.</p>
|
|
3269
|
+
*/
|
|
3270
|
+
export interface UpdatePipelineOutput {
|
|
3271
|
+
/**
|
|
3272
|
+
* <p>The structure of the updated pipeline.</p>
|
|
3273
|
+
*/
|
|
3274
|
+
pipeline?: PipelineDeclaration;
|
|
3275
|
+
}
|
|
3276
|
+
/**
|
|
3277
|
+
* @internal
|
|
3278
|
+
*/
|
|
3279
|
+
export declare const AcknowledgeJobInputFilterSensitiveLog: (obj: AcknowledgeJobInput) => any;
|
|
3280
|
+
/**
|
|
3281
|
+
* @internal
|
|
3282
|
+
*/
|
|
3283
|
+
export declare const AcknowledgeJobOutputFilterSensitiveLog: (obj: AcknowledgeJobOutput) => any;
|
|
3284
|
+
/**
|
|
3285
|
+
* @internal
|
|
3286
|
+
*/
|
|
3287
|
+
export declare const AcknowledgeThirdPartyJobInputFilterSensitiveLog: (obj: AcknowledgeThirdPartyJobInput) => any;
|
|
3288
|
+
/**
|
|
3289
|
+
* @internal
|
|
3290
|
+
*/
|
|
3291
|
+
export declare const AcknowledgeThirdPartyJobOutputFilterSensitiveLog: (obj: AcknowledgeThirdPartyJobOutput) => any;
|
|
3292
|
+
/**
|
|
3293
|
+
* @internal
|
|
3294
|
+
*/
|
|
3295
|
+
export declare const ActionConfigurationFilterSensitiveLog: (obj: ActionConfiguration) => any;
|
|
3296
|
+
/**
|
|
3297
|
+
* @internal
|
|
3298
|
+
*/
|
|
3299
|
+
export declare const ActionConfigurationPropertyFilterSensitiveLog: (obj: ActionConfigurationProperty) => any;
|
|
3300
|
+
/**
|
|
3301
|
+
* @internal
|
|
3302
|
+
*/
|
|
3303
|
+
export declare const ActionContextFilterSensitiveLog: (obj: ActionContext) => any;
|
|
3304
|
+
/**
|
|
3305
|
+
* @internal
|
|
3306
|
+
*/
|
|
3307
|
+
export declare const ActionTypeIdFilterSensitiveLog: (obj: ActionTypeId) => any;
|
|
3308
|
+
/**
|
|
3309
|
+
* @internal
|
|
3310
|
+
*/
|
|
3311
|
+
export declare const InputArtifactFilterSensitiveLog: (obj: InputArtifact) => any;
|
|
3312
|
+
/**
|
|
3313
|
+
* @internal
|
|
3314
|
+
*/
|
|
3315
|
+
export declare const OutputArtifactFilterSensitiveLog: (obj: OutputArtifact) => any;
|
|
3316
|
+
/**
|
|
3317
|
+
* @internal
|
|
3318
|
+
*/
|
|
3319
|
+
export declare const ActionDeclarationFilterSensitiveLog: (obj: ActionDeclaration) => any;
|
|
3320
|
+
/**
|
|
3321
|
+
* @internal
|
|
3322
|
+
*/
|
|
3323
|
+
export declare const ErrorDetailsFilterSensitiveLog: (obj: ErrorDetails) => any;
|
|
3324
|
+
/**
|
|
3325
|
+
* @internal
|
|
3326
|
+
*/
|
|
3327
|
+
export declare const ActionExecutionFilterSensitiveLog: (obj: ActionExecution) => any;
|
|
3328
|
+
/**
|
|
3329
|
+
* @internal
|
|
3330
|
+
*/
|
|
3331
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
3332
|
+
/**
|
|
3333
|
+
* @internal
|
|
3334
|
+
*/
|
|
3335
|
+
export declare const ArtifactDetailFilterSensitiveLog: (obj: ArtifactDetail) => any;
|
|
3336
|
+
/**
|
|
3337
|
+
* @internal
|
|
3338
|
+
*/
|
|
3339
|
+
export declare const ActionExecutionInputFilterSensitiveLog: (obj: ActionExecutionInput) => any;
|
|
3340
|
+
/**
|
|
3341
|
+
* @internal
|
|
3342
|
+
*/
|
|
3343
|
+
export declare const ActionExecutionResultFilterSensitiveLog: (obj: ActionExecutionResult) => any;
|
|
3344
|
+
/**
|
|
3345
|
+
* @internal
|
|
3346
|
+
*/
|
|
3347
|
+
export declare const ActionExecutionOutputFilterSensitiveLog: (obj: ActionExecutionOutput) => any;
|
|
3348
|
+
/**
|
|
3349
|
+
* @internal
|
|
3350
|
+
*/
|
|
3351
|
+
export declare const ActionExecutionDetailFilterSensitiveLog: (obj: ActionExecutionDetail) => any;
|
|
3352
|
+
/**
|
|
3353
|
+
* @internal
|
|
3354
|
+
*/
|
|
3355
|
+
export declare const ActionExecutionFilterFilterSensitiveLog: (obj: ActionExecutionFilter) => any;
|
|
3356
|
+
/**
|
|
3357
|
+
* @internal
|
|
3358
|
+
*/
|
|
3359
|
+
export declare const ActionRevisionFilterSensitiveLog: (obj: ActionRevision) => any;
|
|
3360
|
+
/**
|
|
3361
|
+
* @internal
|
|
3362
|
+
*/
|
|
3363
|
+
export declare const ActionStateFilterSensitiveLog: (obj: ActionState) => any;
|
|
3364
|
+
/**
|
|
3365
|
+
* @internal
|
|
3366
|
+
*/
|
|
3367
|
+
export declare const ArtifactDetailsFilterSensitiveLog: (obj: ArtifactDetails) => any;
|
|
3368
|
+
/**
|
|
3369
|
+
* @internal
|
|
3370
|
+
*/
|
|
3371
|
+
export declare const ActionTypeSettingsFilterSensitiveLog: (obj: ActionTypeSettings) => any;
|
|
3372
|
+
/**
|
|
3373
|
+
* @internal
|
|
3374
|
+
*/
|
|
3375
|
+
export declare const ActionTypeFilterSensitiveLog: (obj: ActionType) => any;
|
|
3376
|
+
/**
|
|
3377
|
+
* @internal
|
|
3378
|
+
*/
|
|
3379
|
+
export declare const ActionTypeArtifactDetailsFilterSensitiveLog: (obj: ActionTypeArtifactDetails) => any;
|
|
3380
|
+
/**
|
|
3381
|
+
* @internal
|
|
3382
|
+
*/
|
|
3383
|
+
export declare const JobWorkerExecutorConfigurationFilterSensitiveLog: (obj: JobWorkerExecutorConfiguration) => any;
|
|
3384
|
+
/**
|
|
3385
|
+
* @internal
|
|
3386
|
+
*/
|
|
3387
|
+
export declare const LambdaExecutorConfigurationFilterSensitiveLog: (obj: LambdaExecutorConfiguration) => any;
|
|
3388
|
+
/**
|
|
3389
|
+
* @internal
|
|
3390
|
+
*/
|
|
3391
|
+
export declare const ExecutorConfigurationFilterSensitiveLog: (obj: ExecutorConfiguration) => any;
|
|
3392
|
+
/**
|
|
3393
|
+
* @internal
|
|
3394
|
+
*/
|
|
3395
|
+
export declare const ActionTypeExecutorFilterSensitiveLog: (obj: ActionTypeExecutor) => any;
|
|
3396
|
+
/**
|
|
3397
|
+
* @internal
|
|
3398
|
+
*/
|
|
3399
|
+
export declare const ActionTypeIdentifierFilterSensitiveLog: (obj: ActionTypeIdentifier) => any;
|
|
3400
|
+
/**
|
|
3401
|
+
* @internal
|
|
3402
|
+
*/
|
|
3403
|
+
export declare const ActionTypePermissionsFilterSensitiveLog: (obj: ActionTypePermissions) => any;
|
|
3404
|
+
/**
|
|
3405
|
+
* @internal
|
|
3406
|
+
*/
|
|
3407
|
+
export declare const ActionTypePropertyFilterSensitiveLog: (obj: ActionTypeProperty) => any;
|
|
3408
|
+
/**
|
|
3409
|
+
* @internal
|
|
3410
|
+
*/
|
|
3411
|
+
export declare const ActionTypeUrlsFilterSensitiveLog: (obj: ActionTypeUrls) => any;
|
|
3412
|
+
/**
|
|
3413
|
+
* @internal
|
|
3414
|
+
*/
|
|
3415
|
+
export declare const ActionTypeDeclarationFilterSensitiveLog: (obj: ActionTypeDeclaration) => any;
|
|
3416
|
+
/**
|
|
3417
|
+
* @internal
|
|
3418
|
+
*/
|
|
3419
|
+
export declare const ApprovalResultFilterSensitiveLog: (obj: ApprovalResult) => any;
|
|
3420
|
+
/**
|
|
3421
|
+
* @internal
|
|
3422
|
+
*/
|
|
3423
|
+
export declare const S3ArtifactLocationFilterSensitiveLog: (obj: S3ArtifactLocation) => any;
|
|
3424
|
+
/**
|
|
3425
|
+
* @internal
|
|
3426
|
+
*/
|
|
3427
|
+
export declare const ArtifactLocationFilterSensitiveLog: (obj: ArtifactLocation) => any;
|
|
3428
|
+
/**
|
|
3429
|
+
* @internal
|
|
3430
|
+
*/
|
|
3431
|
+
export declare const ArtifactFilterSensitiveLog: (obj: Artifact) => any;
|
|
3432
|
+
/**
|
|
3433
|
+
* @internal
|
|
3434
|
+
*/
|
|
3435
|
+
export declare const ArtifactRevisionFilterSensitiveLog: (obj: ArtifactRevision) => any;
|
|
3436
|
+
/**
|
|
3437
|
+
* @internal
|
|
3438
|
+
*/
|
|
3439
|
+
export declare const EncryptionKeyFilterSensitiveLog: (obj: EncryptionKey) => any;
|
|
3440
|
+
/**
|
|
3441
|
+
* @internal
|
|
3442
|
+
*/
|
|
3443
|
+
export declare const ArtifactStoreFilterSensitiveLog: (obj: ArtifactStore) => any;
|
|
3444
|
+
/**
|
|
3445
|
+
* @internal
|
|
3446
|
+
*/
|
|
3447
|
+
export declare const AWSSessionCredentialsFilterSensitiveLog: (obj: AWSSessionCredentials) => any;
|
|
3448
|
+
/**
|
|
3449
|
+
* @internal
|
|
3450
|
+
*/
|
|
3451
|
+
export declare const BlockerDeclarationFilterSensitiveLog: (obj: BlockerDeclaration) => any;
|
|
3452
|
+
/**
|
|
3453
|
+
* @internal
|
|
3454
|
+
*/
|
|
3455
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
3456
|
+
/**
|
|
3457
|
+
* @internal
|
|
3458
|
+
*/
|
|
3459
|
+
export declare const CreateCustomActionTypeInputFilterSensitiveLog: (obj: CreateCustomActionTypeInput) => any;
|
|
3460
|
+
/**
|
|
3461
|
+
* @internal
|
|
3462
|
+
*/
|
|
3463
|
+
export declare const CreateCustomActionTypeOutputFilterSensitiveLog: (obj: CreateCustomActionTypeOutput) => any;
|
|
3464
|
+
/**
|
|
3465
|
+
* @internal
|
|
3466
|
+
*/
|
|
3467
|
+
export declare const StageDeclarationFilterSensitiveLog: (obj: StageDeclaration) => any;
|
|
3468
|
+
/**
|
|
3469
|
+
* @internal
|
|
3470
|
+
*/
|
|
3471
|
+
export declare const PipelineDeclarationFilterSensitiveLog: (obj: PipelineDeclaration) => any;
|
|
3472
|
+
/**
|
|
3473
|
+
* @internal
|
|
3474
|
+
*/
|
|
3475
|
+
export declare const CreatePipelineInputFilterSensitiveLog: (obj: CreatePipelineInput) => any;
|
|
3476
|
+
/**
|
|
3477
|
+
* @internal
|
|
3478
|
+
*/
|
|
3479
|
+
export declare const CreatePipelineOutputFilterSensitiveLog: (obj: CreatePipelineOutput) => any;
|
|
3480
|
+
/**
|
|
3481
|
+
* @internal
|
|
3482
|
+
*/
|
|
3483
|
+
export declare const DeleteCustomActionTypeInputFilterSensitiveLog: (obj: DeleteCustomActionTypeInput) => any;
|
|
3484
|
+
/**
|
|
3485
|
+
* @internal
|
|
3486
|
+
*/
|
|
3487
|
+
export declare const DeletePipelineInputFilterSensitiveLog: (obj: DeletePipelineInput) => any;
|
|
3488
|
+
/**
|
|
3489
|
+
* @internal
|
|
3490
|
+
*/
|
|
3491
|
+
export declare const DeleteWebhookInputFilterSensitiveLog: (obj: DeleteWebhookInput) => any;
|
|
3492
|
+
/**
|
|
3493
|
+
* @internal
|
|
3494
|
+
*/
|
|
3495
|
+
export declare const DeleteWebhookOutputFilterSensitiveLog: (obj: DeleteWebhookOutput) => any;
|
|
3496
|
+
/**
|
|
3497
|
+
* @internal
|
|
3498
|
+
*/
|
|
3499
|
+
export declare const DeregisterWebhookWithThirdPartyInputFilterSensitiveLog: (obj: DeregisterWebhookWithThirdPartyInput) => any;
|
|
3500
|
+
/**
|
|
3501
|
+
* @internal
|
|
3502
|
+
*/
|
|
3503
|
+
export declare const DeregisterWebhookWithThirdPartyOutputFilterSensitiveLog: (obj: DeregisterWebhookWithThirdPartyOutput) => any;
|
|
3504
|
+
/**
|
|
3505
|
+
* @internal
|
|
3506
|
+
*/
|
|
3507
|
+
export declare const DisableStageTransitionInputFilterSensitiveLog: (obj: DisableStageTransitionInput) => any;
|
|
3508
|
+
/**
|
|
3509
|
+
* @internal
|
|
3510
|
+
*/
|
|
3511
|
+
export declare const EnableStageTransitionInputFilterSensitiveLog: (obj: EnableStageTransitionInput) => any;
|
|
3512
|
+
/**
|
|
3513
|
+
* @internal
|
|
3514
|
+
*/
|
|
3515
|
+
export declare const GetActionTypeInputFilterSensitiveLog: (obj: GetActionTypeInput) => any;
|
|
3516
|
+
/**
|
|
3517
|
+
* @internal
|
|
3518
|
+
*/
|
|
3519
|
+
export declare const GetActionTypeOutputFilterSensitiveLog: (obj: GetActionTypeOutput) => any;
|
|
3520
|
+
/**
|
|
3521
|
+
* @internal
|
|
3522
|
+
*/
|
|
3523
|
+
export declare const GetJobDetailsInputFilterSensitiveLog: (obj: GetJobDetailsInput) => any;
|
|
3524
|
+
/**
|
|
3525
|
+
* @internal
|
|
3526
|
+
*/
|
|
3527
|
+
export declare const StageContextFilterSensitiveLog: (obj: StageContext) => any;
|
|
3528
|
+
/**
|
|
3529
|
+
* @internal
|
|
3530
|
+
*/
|
|
3531
|
+
export declare const PipelineContextFilterSensitiveLog: (obj: PipelineContext) => any;
|
|
3532
|
+
/**
|
|
3533
|
+
* @internal
|
|
3534
|
+
*/
|
|
3535
|
+
export declare const JobDataFilterSensitiveLog: (obj: JobData) => any;
|
|
3536
|
+
/**
|
|
3537
|
+
* @internal
|
|
3538
|
+
*/
|
|
3539
|
+
export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
|
|
3540
|
+
/**
|
|
3541
|
+
* @internal
|
|
3542
|
+
*/
|
|
3543
|
+
export declare const GetJobDetailsOutputFilterSensitiveLog: (obj: GetJobDetailsOutput) => any;
|
|
3544
|
+
/**
|
|
3545
|
+
* @internal
|
|
3546
|
+
*/
|
|
3547
|
+
export declare const GetPipelineInputFilterSensitiveLog: (obj: GetPipelineInput) => any;
|
|
3548
|
+
/**
|
|
3549
|
+
* @internal
|
|
3550
|
+
*/
|
|
3551
|
+
export declare const PipelineMetadataFilterSensitiveLog: (obj: PipelineMetadata) => any;
|
|
3552
|
+
/**
|
|
3553
|
+
* @internal
|
|
3554
|
+
*/
|
|
3555
|
+
export declare const GetPipelineOutputFilterSensitiveLog: (obj: GetPipelineOutput) => any;
|
|
3556
|
+
/**
|
|
3557
|
+
* @internal
|
|
3558
|
+
*/
|
|
3559
|
+
export declare const GetPipelineExecutionInputFilterSensitiveLog: (obj: GetPipelineExecutionInput) => any;
|
|
3560
|
+
/**
|
|
3561
|
+
* @internal
|
|
3562
|
+
*/
|
|
3563
|
+
export declare const PipelineExecutionFilterSensitiveLog: (obj: PipelineExecution) => any;
|
|
3564
|
+
/**
|
|
3565
|
+
* @internal
|
|
3566
|
+
*/
|
|
3567
|
+
export declare const GetPipelineExecutionOutputFilterSensitiveLog: (obj: GetPipelineExecutionOutput) => any;
|
|
3568
|
+
/**
|
|
3569
|
+
* @internal
|
|
3570
|
+
*/
|
|
3571
|
+
export declare const GetPipelineStateInputFilterSensitiveLog: (obj: GetPipelineStateInput) => any;
|
|
3572
|
+
/**
|
|
3573
|
+
* @internal
|
|
3574
|
+
*/
|
|
3575
|
+
export declare const StageExecutionFilterSensitiveLog: (obj: StageExecution) => any;
|
|
3576
|
+
/**
|
|
3577
|
+
* @internal
|
|
3578
|
+
*/
|
|
3579
|
+
export declare const TransitionStateFilterSensitiveLog: (obj: TransitionState) => any;
|
|
3580
|
+
/**
|
|
3581
|
+
* @internal
|
|
3582
|
+
*/
|
|
3583
|
+
export declare const StageStateFilterSensitiveLog: (obj: StageState) => any;
|
|
3584
|
+
/**
|
|
3585
|
+
* @internal
|
|
3586
|
+
*/
|
|
3587
|
+
export declare const GetPipelineStateOutputFilterSensitiveLog: (obj: GetPipelineStateOutput) => any;
|
|
3588
|
+
/**
|
|
3589
|
+
* @internal
|
|
3590
|
+
*/
|
|
3591
|
+
export declare const GetThirdPartyJobDetailsInputFilterSensitiveLog: (obj: GetThirdPartyJobDetailsInput) => any;
|
|
3592
|
+
/**
|
|
3593
|
+
* @internal
|
|
3594
|
+
*/
|
|
3595
|
+
export declare const ThirdPartyJobDataFilterSensitiveLog: (obj: ThirdPartyJobData) => any;
|
|
3596
|
+
/**
|
|
3597
|
+
* @internal
|
|
3598
|
+
*/
|
|
3599
|
+
export declare const ThirdPartyJobDetailsFilterSensitiveLog: (obj: ThirdPartyJobDetails) => any;
|
|
3600
|
+
/**
|
|
3601
|
+
* @internal
|
|
3602
|
+
*/
|
|
3603
|
+
export declare const GetThirdPartyJobDetailsOutputFilterSensitiveLog: (obj: GetThirdPartyJobDetailsOutput) => any;
|
|
3604
|
+
/**
|
|
3605
|
+
* @internal
|
|
3606
|
+
*/
|
|
3607
|
+
export declare const ListActionExecutionsInputFilterSensitiveLog: (obj: ListActionExecutionsInput) => any;
|
|
3608
|
+
/**
|
|
3609
|
+
* @internal
|
|
3610
|
+
*/
|
|
3611
|
+
export declare const ListActionExecutionsOutputFilterSensitiveLog: (obj: ListActionExecutionsOutput) => any;
|
|
3612
|
+
/**
|
|
3613
|
+
* @internal
|
|
3614
|
+
*/
|
|
3615
|
+
export declare const ListActionTypesInputFilterSensitiveLog: (obj: ListActionTypesInput) => any;
|
|
3616
|
+
/**
|
|
3617
|
+
* @internal
|
|
3618
|
+
*/
|
|
3619
|
+
export declare const ListActionTypesOutputFilterSensitiveLog: (obj: ListActionTypesOutput) => any;
|
|
3620
|
+
/**
|
|
3621
|
+
* @internal
|
|
3622
|
+
*/
|
|
3623
|
+
export declare const ListPipelineExecutionsInputFilterSensitiveLog: (obj: ListPipelineExecutionsInput) => any;
|
|
3624
|
+
/**
|
|
3625
|
+
* @internal
|
|
3626
|
+
*/
|
|
3627
|
+
export declare const SourceRevisionFilterSensitiveLog: (obj: SourceRevision) => any;
|
|
3628
|
+
/**
|
|
3629
|
+
* @internal
|
|
3630
|
+
*/
|
|
3631
|
+
export declare const StopExecutionTriggerFilterSensitiveLog: (obj: StopExecutionTrigger) => any;
|
|
3632
|
+
/**
|
|
3633
|
+
* @internal
|
|
3634
|
+
*/
|
|
3635
|
+
export declare const ExecutionTriggerFilterSensitiveLog: (obj: ExecutionTrigger) => any;
|
|
3636
|
+
/**
|
|
3637
|
+
* @internal
|
|
3638
|
+
*/
|
|
3639
|
+
export declare const PipelineExecutionSummaryFilterSensitiveLog: (obj: PipelineExecutionSummary) => any;
|
|
3640
|
+
/**
|
|
3641
|
+
* @internal
|
|
3642
|
+
*/
|
|
3643
|
+
export declare const ListPipelineExecutionsOutputFilterSensitiveLog: (obj: ListPipelineExecutionsOutput) => any;
|
|
3644
|
+
/**
|
|
3645
|
+
* @internal
|
|
3646
|
+
*/
|
|
3647
|
+
export declare const ListPipelinesInputFilterSensitiveLog: (obj: ListPipelinesInput) => any;
|
|
3648
|
+
/**
|
|
3649
|
+
* @internal
|
|
3650
|
+
*/
|
|
3651
|
+
export declare const PipelineSummaryFilterSensitiveLog: (obj: PipelineSummary) => any;
|
|
3652
|
+
/**
|
|
3653
|
+
* @internal
|
|
3654
|
+
*/
|
|
3655
|
+
export declare const ListPipelinesOutputFilterSensitiveLog: (obj: ListPipelinesOutput) => any;
|
|
3656
|
+
/**
|
|
3657
|
+
* @internal
|
|
3658
|
+
*/
|
|
3659
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
3660
|
+
/**
|
|
3661
|
+
* @internal
|
|
3662
|
+
*/
|
|
3663
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
3664
|
+
/**
|
|
3665
|
+
* @internal
|
|
3666
|
+
*/
|
|
3667
|
+
export declare const ListWebhooksInputFilterSensitiveLog: (obj: ListWebhooksInput) => any;
|
|
3668
|
+
/**
|
|
3669
|
+
* @internal
|
|
3670
|
+
*/
|
|
3671
|
+
export declare const WebhookAuthConfigurationFilterSensitiveLog: (obj: WebhookAuthConfiguration) => any;
|
|
3672
|
+
/**
|
|
3673
|
+
* @internal
|
|
3674
|
+
*/
|
|
3675
|
+
export declare const WebhookFilterRuleFilterSensitiveLog: (obj: WebhookFilterRule) => any;
|
|
3676
|
+
/**
|
|
3677
|
+
* @internal
|
|
3678
|
+
*/
|
|
3679
|
+
export declare const WebhookDefinitionFilterSensitiveLog: (obj: WebhookDefinition) => any;
|
|
3680
|
+
/**
|
|
3681
|
+
* @internal
|
|
3682
|
+
*/
|
|
3683
|
+
export declare const ListWebhookItemFilterSensitiveLog: (obj: ListWebhookItem) => any;
|
|
3684
|
+
/**
|
|
3685
|
+
* @internal
|
|
3686
|
+
*/
|
|
3687
|
+
export declare const ListWebhooksOutputFilterSensitiveLog: (obj: ListWebhooksOutput) => any;
|
|
3688
|
+
/**
|
|
3689
|
+
* @internal
|
|
3690
|
+
*/
|
|
3691
|
+
export declare const PollForJobsInputFilterSensitiveLog: (obj: PollForJobsInput) => any;
|
|
3692
|
+
/**
|
|
3693
|
+
* @internal
|
|
3694
|
+
*/
|
|
3695
|
+
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
3696
|
+
/**
|
|
3697
|
+
* @internal
|
|
3698
|
+
*/
|
|
3699
|
+
export declare const PollForJobsOutputFilterSensitiveLog: (obj: PollForJobsOutput) => any;
|
|
3700
|
+
/**
|
|
3701
|
+
* @internal
|
|
3702
|
+
*/
|
|
3703
|
+
export declare const PollForThirdPartyJobsInputFilterSensitiveLog: (obj: PollForThirdPartyJobsInput) => any;
|
|
3704
|
+
/**
|
|
3705
|
+
* @internal
|
|
3706
|
+
*/
|
|
3707
|
+
export declare const ThirdPartyJobFilterSensitiveLog: (obj: ThirdPartyJob) => any;
|
|
3708
|
+
/**
|
|
3709
|
+
* @internal
|
|
3710
|
+
*/
|
|
3711
|
+
export declare const PollForThirdPartyJobsOutputFilterSensitiveLog: (obj: PollForThirdPartyJobsOutput) => any;
|
|
3712
|
+
/**
|
|
3713
|
+
* @internal
|
|
3714
|
+
*/
|
|
3715
|
+
export declare const PutActionRevisionInputFilterSensitiveLog: (obj: PutActionRevisionInput) => any;
|
|
3716
|
+
/**
|
|
3717
|
+
* @internal
|
|
3718
|
+
*/
|
|
3719
|
+
export declare const PutActionRevisionOutputFilterSensitiveLog: (obj: PutActionRevisionOutput) => any;
|
|
3720
|
+
/**
|
|
3721
|
+
* @internal
|
|
3722
|
+
*/
|
|
3723
|
+
export declare const PutApprovalResultInputFilterSensitiveLog: (obj: PutApprovalResultInput) => any;
|
|
3724
|
+
/**
|
|
3725
|
+
* @internal
|
|
3726
|
+
*/
|
|
3727
|
+
export declare const PutApprovalResultOutputFilterSensitiveLog: (obj: PutApprovalResultOutput) => any;
|
|
3728
|
+
/**
|
|
3729
|
+
* @internal
|
|
3730
|
+
*/
|
|
3731
|
+
export declare const FailureDetailsFilterSensitiveLog: (obj: FailureDetails) => any;
|
|
3732
|
+
/**
|
|
3733
|
+
* @internal
|
|
3734
|
+
*/
|
|
3735
|
+
export declare const PutJobFailureResultInputFilterSensitiveLog: (obj: PutJobFailureResultInput) => any;
|
|
3736
|
+
/**
|
|
3737
|
+
* @internal
|
|
3738
|
+
*/
|
|
3739
|
+
export declare const CurrentRevisionFilterSensitiveLog: (obj: CurrentRevision) => any;
|
|
3740
|
+
/**
|
|
3741
|
+
* @internal
|
|
3742
|
+
*/
|
|
3743
|
+
export declare const ExecutionDetailsFilterSensitiveLog: (obj: ExecutionDetails) => any;
|
|
3744
|
+
/**
|
|
3745
|
+
* @internal
|
|
3746
|
+
*/
|
|
3747
|
+
export declare const PutJobSuccessResultInputFilterSensitiveLog: (obj: PutJobSuccessResultInput) => any;
|
|
3748
|
+
/**
|
|
3749
|
+
* @internal
|
|
3750
|
+
*/
|
|
3751
|
+
export declare const PutThirdPartyJobFailureResultInputFilterSensitiveLog: (obj: PutThirdPartyJobFailureResultInput) => any;
|
|
3752
|
+
/**
|
|
3753
|
+
* @internal
|
|
3754
|
+
*/
|
|
3755
|
+
export declare const PutThirdPartyJobSuccessResultInputFilterSensitiveLog: (obj: PutThirdPartyJobSuccessResultInput) => any;
|
|
3756
|
+
/**
|
|
3757
|
+
* @internal
|
|
3758
|
+
*/
|
|
3759
|
+
export declare const PutWebhookInputFilterSensitiveLog: (obj: PutWebhookInput) => any;
|
|
3760
|
+
/**
|
|
3761
|
+
* @internal
|
|
3762
|
+
*/
|
|
3763
|
+
export declare const PutWebhookOutputFilterSensitiveLog: (obj: PutWebhookOutput) => any;
|
|
3764
|
+
/**
|
|
3765
|
+
* @internal
|
|
3766
|
+
*/
|
|
3767
|
+
export declare const RegisterWebhookWithThirdPartyInputFilterSensitiveLog: (obj: RegisterWebhookWithThirdPartyInput) => any;
|
|
3768
|
+
/**
|
|
3769
|
+
* @internal
|
|
3770
|
+
*/
|
|
3771
|
+
export declare const RegisterWebhookWithThirdPartyOutputFilterSensitiveLog: (obj: RegisterWebhookWithThirdPartyOutput) => any;
|
|
3772
|
+
/**
|
|
3773
|
+
* @internal
|
|
3774
|
+
*/
|
|
3775
|
+
export declare const RetryStageExecutionInputFilterSensitiveLog: (obj: RetryStageExecutionInput) => any;
|
|
3776
|
+
/**
|
|
3777
|
+
* @internal
|
|
3778
|
+
*/
|
|
3779
|
+
export declare const RetryStageExecutionOutputFilterSensitiveLog: (obj: RetryStageExecutionOutput) => any;
|
|
3780
|
+
/**
|
|
3781
|
+
* @internal
|
|
3782
|
+
*/
|
|
3783
|
+
export declare const StartPipelineExecutionInputFilterSensitiveLog: (obj: StartPipelineExecutionInput) => any;
|
|
3784
|
+
/**
|
|
3785
|
+
* @internal
|
|
3786
|
+
*/
|
|
3787
|
+
export declare const StartPipelineExecutionOutputFilterSensitiveLog: (obj: StartPipelineExecutionOutput) => any;
|
|
3788
|
+
/**
|
|
3789
|
+
* @internal
|
|
3790
|
+
*/
|
|
3791
|
+
export declare const StopPipelineExecutionInputFilterSensitiveLog: (obj: StopPipelineExecutionInput) => any;
|
|
3792
|
+
/**
|
|
3793
|
+
* @internal
|
|
3794
|
+
*/
|
|
3795
|
+
export declare const StopPipelineExecutionOutputFilterSensitiveLog: (obj: StopPipelineExecutionOutput) => any;
|
|
3796
|
+
/**
|
|
3797
|
+
* @internal
|
|
3798
|
+
*/
|
|
3799
|
+
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
3800
|
+
/**
|
|
3801
|
+
* @internal
|
|
3802
|
+
*/
|
|
3803
|
+
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
3804
|
+
/**
|
|
3805
|
+
* @internal
|
|
3806
|
+
*/
|
|
3807
|
+
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
3808
|
+
/**
|
|
3809
|
+
* @internal
|
|
3810
|
+
*/
|
|
3811
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
3812
|
+
/**
|
|
3813
|
+
* @internal
|
|
3814
|
+
*/
|
|
3815
|
+
export declare const UpdateActionTypeInputFilterSensitiveLog: (obj: UpdateActionTypeInput) => any;
|
|
3816
|
+
/**
|
|
3817
|
+
* @internal
|
|
3818
|
+
*/
|
|
3819
|
+
export declare const UpdatePipelineInputFilterSensitiveLog: (obj: UpdatePipelineInput) => any;
|
|
3820
|
+
/**
|
|
3821
|
+
* @internal
|
|
3822
|
+
*/
|
|
3823
|
+
export declare const UpdatePipelineOutputFilterSensitiveLog: (obj: UpdatePipelineOutput) => any;
|