@cdk8s/awscdk-resolver 0.0.54 → 0.0.56
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/.jsii +3 -3
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/README.md +88 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/CreateGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DeleteGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeResourceScanCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/GetGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListGeneratedTemplatesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanRelatedResourcesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanResourcesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScansCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/StartResourceScanCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/UpdateGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1677 -73
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListGeneratedTemplatesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanRelatedResourcesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanResourcesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScansPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +22 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/index.js +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_0.js +104 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListGeneratedTemplatesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanRelatedResourcesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanResourcesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScansPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/protocols/Aws_query.js +1322 -92
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +13 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +168 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +156 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +4075 -3877
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +974 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScansPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/protocols/Aws_query.d.ts +99 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +187 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +66 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +250 -99
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListGeneratedTemplatesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanResourcesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScansPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/protocols/Aws_query.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +6 -2
- package/node_modules/@aws-sdk/client-cloudformation/package.json +13 -13
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +14 -13
- package/node_modules/@aws-sdk/client-sso/package.json +10 -10
- package/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDC.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDCClient.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenWithIAMCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/RegisterClientCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/StartDeviceAuthorizationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/credentialDefaultProvider.js +29 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1115 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/SSOOIDCServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +49 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +24 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +27 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/credentialDefaultProvider.js +3 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +217 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +553 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +44 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +20 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +210 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +243 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/credentialDefaultProvider.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +734 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +142 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +103 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +1 -29
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +1 -29
- package/node_modules/@aws-sdk/client-sts/dist-cjs/credentialDefaultProvider.js +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +1 -78
- package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1412 -72
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +1 -12
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +1 -149
- package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1 -1084
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/client-sts/dist-es/credentialDefaultProvider.js +3 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/client-sts/dist-types/credentialDefaultProvider.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +8 -3
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +26 -14
- package/node_modules/@aws-sdk/client-sts/package.json +14 -12
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +5 -3
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +2 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +4 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +32 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +59 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +59 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/package.json +67 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +71 -43
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/loadSts.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/loadSts.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +10 -9
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +9 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +4 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +24 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +5 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +17 -14
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +5 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +8 -7
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +4 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +31 -7
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +5 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +7 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +6 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +5 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +7 -5
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/loadSts.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +6 -5
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/loadSts.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +4 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +14 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +12 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -2
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-logger/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +3 -3
- package/node_modules/@aws-sdk/middleware-signing/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +4 -4
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +27 -24
- package/node_modules/@aws-sdk/token-providers/dist-cjs/loadSsoOidc.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +3 -3
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/loadSsoOidc.js +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +3 -3
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/loadSsoOidc.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +7 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/loadSsoOidc.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/package.json +6 -43
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +3 -171
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
- package/node_modules/@aws-sdk/types/package.json +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +4 -24
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +0 -1032
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +0 -1038
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +0 -1010
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +0 -1017
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +0 -191
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +0 -191
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +0 -235
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +0 -235
@@ -4,12 +4,14 @@ export * from "./BatchDescribeTypeConfigurationsCommand";
|
|
4
4
|
export * from "./CancelUpdateStackCommand";
|
5
5
|
export * from "./ContinueUpdateRollbackCommand";
|
6
6
|
export * from "./CreateChangeSetCommand";
|
7
|
+
export * from "./CreateGeneratedTemplateCommand";
|
7
8
|
export * from "./CreateStackCommand";
|
8
9
|
export * from "./CreateStackInstancesCommand";
|
9
10
|
export * from "./CreateStackSetCommand";
|
10
11
|
export * from "./DeactivateOrganizationsAccessCommand";
|
11
12
|
export * from "./DeactivateTypeCommand";
|
12
13
|
export * from "./DeleteChangeSetCommand";
|
14
|
+
export * from "./DeleteGeneratedTemplateCommand";
|
13
15
|
export * from "./DeleteStackCommand";
|
14
16
|
export * from "./DeleteStackInstancesCommand";
|
15
17
|
export * from "./DeleteStackSetCommand";
|
@@ -17,8 +19,10 @@ export * from "./DeregisterTypeCommand";
|
|
17
19
|
export * from "./DescribeAccountLimitsCommand";
|
18
20
|
export * from "./DescribeChangeSetCommand";
|
19
21
|
export * from "./DescribeChangeSetHooksCommand";
|
22
|
+
export * from "./DescribeGeneratedTemplateCommand";
|
20
23
|
export * from "./DescribeOrganizationsAccessCommand";
|
21
24
|
export * from "./DescribePublisherCommand";
|
25
|
+
export * from "./DescribeResourceScanCommand";
|
22
26
|
export * from "./DescribeStackDriftDetectionStatusCommand";
|
23
27
|
export * from "./DescribeStackEventsCommand";
|
24
28
|
export * from "./DescribeStackInstanceCommand";
|
@@ -35,13 +39,18 @@ export * from "./DetectStackResourceDriftCommand";
|
|
35
39
|
export * from "./DetectStackSetDriftCommand";
|
36
40
|
export * from "./EstimateTemplateCostCommand";
|
37
41
|
export * from "./ExecuteChangeSetCommand";
|
42
|
+
export * from "./GetGeneratedTemplateCommand";
|
38
43
|
export * from "./GetStackPolicyCommand";
|
39
44
|
export * from "./GetTemplateCommand";
|
40
45
|
export * from "./GetTemplateSummaryCommand";
|
41
46
|
export * from "./ImportStacksToStackSetCommand";
|
42
47
|
export * from "./ListChangeSetsCommand";
|
43
48
|
export * from "./ListExportsCommand";
|
49
|
+
export * from "./ListGeneratedTemplatesCommand";
|
44
50
|
export * from "./ListImportsCommand";
|
51
|
+
export * from "./ListResourceScanRelatedResourcesCommand";
|
52
|
+
export * from "./ListResourceScanResourcesCommand";
|
53
|
+
export * from "./ListResourceScansCommand";
|
45
54
|
export * from "./ListStackInstanceResourceDriftsCommand";
|
46
55
|
export * from "./ListStackInstancesCommand";
|
47
56
|
export * from "./ListStackResourcesCommand";
|
@@ -61,8 +70,10 @@ export * from "./SetStackPolicyCommand";
|
|
61
70
|
export * from "./SetTypeConfigurationCommand";
|
62
71
|
export * from "./SetTypeDefaultVersionCommand";
|
63
72
|
export * from "./SignalResourceCommand";
|
73
|
+
export * from "./StartResourceScanCommand";
|
64
74
|
export * from "./StopStackSetOperationCommand";
|
65
75
|
export * from "./TestTypeCommand";
|
76
|
+
export * from "./UpdateGeneratedTemplateCommand";
|
66
77
|
export * from "./UpdateStackCommand";
|
67
78
|
export * from "./UpdateStackInstancesCommand";
|
68
79
|
export * from "./UpdateStackSetCommand";
|
@@ -423,6 +423,47 @@ export declare class LimitExceededException extends __BaseException {
|
|
423
423
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
424
424
|
);
|
425
425
|
}
|
426
|
+
export declare class ConcurrentResourcesLimitExceededException extends __BaseException {
|
427
|
+
readonly name: "ConcurrentResourcesLimitExceededException";
|
428
|
+
readonly $fault: "client";
|
429
|
+
Message?: string;
|
430
|
+
constructor(
|
431
|
+
opts: __ExceptionOptionType<
|
432
|
+
ConcurrentResourcesLimitExceededException,
|
433
|
+
__BaseException
|
434
|
+
>
|
435
|
+
);
|
436
|
+
}
|
437
|
+
export interface ResourceDefinition {
|
438
|
+
ResourceType: string | undefined;
|
439
|
+
LogicalResourceId?: string;
|
440
|
+
ResourceIdentifier: Record<string, string> | undefined;
|
441
|
+
}
|
442
|
+
export declare const GeneratedTemplateDeletionPolicy: {
|
443
|
+
readonly DELETE: "DELETE";
|
444
|
+
readonly RETAIN: "RETAIN";
|
445
|
+
};
|
446
|
+
export type GeneratedTemplateDeletionPolicy =
|
447
|
+
(typeof GeneratedTemplateDeletionPolicy)[keyof typeof GeneratedTemplateDeletionPolicy];
|
448
|
+
export declare const GeneratedTemplateUpdateReplacePolicy: {
|
449
|
+
readonly DELETE: "DELETE";
|
450
|
+
readonly RETAIN: "RETAIN";
|
451
|
+
};
|
452
|
+
export type GeneratedTemplateUpdateReplacePolicy =
|
453
|
+
(typeof GeneratedTemplateUpdateReplacePolicy)[keyof typeof GeneratedTemplateUpdateReplacePolicy];
|
454
|
+
export interface TemplateConfiguration {
|
455
|
+
DeletionPolicy?: GeneratedTemplateDeletionPolicy;
|
456
|
+
UpdateReplacePolicy?: GeneratedTemplateUpdateReplacePolicy;
|
457
|
+
}
|
458
|
+
export interface CreateGeneratedTemplateInput {
|
459
|
+
Resources?: ResourceDefinition[];
|
460
|
+
GeneratedTemplateName: string | undefined;
|
461
|
+
StackName?: string;
|
462
|
+
TemplateConfiguration?: TemplateConfiguration;
|
463
|
+
}
|
464
|
+
export interface CreateGeneratedTemplateOutput {
|
465
|
+
GeneratedTemplateId?: string;
|
466
|
+
}
|
426
467
|
export declare const OnFailure: {
|
427
468
|
readonly DELETE: "DELETE";
|
428
469
|
readonly DO_NOTHING: "DO_NOTHING";
|
@@ -596,6 +637,20 @@ export declare class InvalidChangeSetStatusException extends __BaseException {
|
|
596
637
|
>
|
597
638
|
);
|
598
639
|
}
|
640
|
+
export interface DeleteGeneratedTemplateInput {
|
641
|
+
GeneratedTemplateName: string | undefined;
|
642
|
+
}
|
643
|
+
export declare class GeneratedTemplateNotFoundException extends __BaseException {
|
644
|
+
readonly name: "GeneratedTemplateNotFoundException";
|
645
|
+
readonly $fault: "client";
|
646
|
+
Message?: string;
|
647
|
+
constructor(
|
648
|
+
opts: __ExceptionOptionType<
|
649
|
+
GeneratedTemplateNotFoundException,
|
650
|
+
__BaseException
|
651
|
+
>
|
652
|
+
);
|
653
|
+
}
|
599
654
|
export interface DeleteStackInput {
|
600
655
|
StackName: string | undefined;
|
601
656
|
RetainResources?: string[];
|
@@ -691,6 +746,71 @@ export interface DescribeChangeSetHooksOutput {
|
|
691
746
|
StackId?: string;
|
692
747
|
StackName?: string;
|
693
748
|
}
|
749
|
+
export interface DescribeGeneratedTemplateInput {
|
750
|
+
GeneratedTemplateName: string | undefined;
|
751
|
+
}
|
752
|
+
export interface TemplateProgress {
|
753
|
+
ResourcesSucceeded?: number;
|
754
|
+
ResourcesFailed?: number;
|
755
|
+
ResourcesProcessing?: number;
|
756
|
+
ResourcesPending?: number;
|
757
|
+
}
|
758
|
+
export declare const GeneratedTemplateResourceStatus: {
|
759
|
+
readonly COMPLETE: "COMPLETE";
|
760
|
+
readonly FAILED: "FAILED";
|
761
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
762
|
+
readonly PENDING: "PENDING";
|
763
|
+
};
|
764
|
+
export type GeneratedTemplateResourceStatus =
|
765
|
+
(typeof GeneratedTemplateResourceStatus)[keyof typeof GeneratedTemplateResourceStatus];
|
766
|
+
export interface WarningProperty {
|
767
|
+
PropertyPath?: string;
|
768
|
+
Required?: boolean;
|
769
|
+
Description?: string;
|
770
|
+
}
|
771
|
+
export declare const WarningType: {
|
772
|
+
readonly MUTUALLY_EXCLUSIVE_PROPERTIES: "MUTUALLY_EXCLUSIVE_PROPERTIES";
|
773
|
+
readonly MUTUALLY_EXCLUSIVE_TYPES: "MUTUALLY_EXCLUSIVE_TYPES";
|
774
|
+
readonly UNSUPPORTED_PROPERTIES: "UNSUPPORTED_PROPERTIES";
|
775
|
+
};
|
776
|
+
export type WarningType = (typeof WarningType)[keyof typeof WarningType];
|
777
|
+
export interface WarningDetail {
|
778
|
+
Type?: WarningType;
|
779
|
+
Properties?: WarningProperty[];
|
780
|
+
}
|
781
|
+
export interface ResourceDetail {
|
782
|
+
ResourceType?: string;
|
783
|
+
LogicalResourceId?: string;
|
784
|
+
ResourceIdentifier?: Record<string, string>;
|
785
|
+
ResourceStatus?: GeneratedTemplateResourceStatus;
|
786
|
+
ResourceStatusReason?: string;
|
787
|
+
Warnings?: WarningDetail[];
|
788
|
+
}
|
789
|
+
export declare const GeneratedTemplateStatus: {
|
790
|
+
readonly COMPLETE: "COMPLETE";
|
791
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
792
|
+
readonly CREATE_PENDING: "CREATE_PENDING";
|
793
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
794
|
+
readonly DELETE_PENDING: "DELETE_PENDING";
|
795
|
+
readonly FAILED: "FAILED";
|
796
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
797
|
+
readonly UPDATE_PENDING: "UPDATE_PENDING";
|
798
|
+
};
|
799
|
+
export type GeneratedTemplateStatus =
|
800
|
+
(typeof GeneratedTemplateStatus)[keyof typeof GeneratedTemplateStatus];
|
801
|
+
export interface DescribeGeneratedTemplateOutput {
|
802
|
+
GeneratedTemplateId?: string;
|
803
|
+
GeneratedTemplateName?: string;
|
804
|
+
Resources?: ResourceDetail[];
|
805
|
+
Status?: GeneratedTemplateStatus;
|
806
|
+
StatusReason?: string;
|
807
|
+
CreationTime?: Date;
|
808
|
+
LastUpdatedTime?: Date;
|
809
|
+
Progress?: TemplateProgress;
|
810
|
+
StackId?: string;
|
811
|
+
TemplateConfiguration?: TemplateConfiguration;
|
812
|
+
TotalWarnings?: number;
|
813
|
+
}
|
694
814
|
export interface DescribeOrganizationsAccessInput {
|
695
815
|
CallAs?: CallAs;
|
696
816
|
}
|
@@ -726,6 +846,36 @@ export interface DescribePublisherOutput {
|
|
726
846
|
IdentityProvider?: IdentityProvider;
|
727
847
|
PublisherProfile?: string;
|
728
848
|
}
|
849
|
+
export interface DescribeResourceScanInput {
|
850
|
+
ResourceScanId: string | undefined;
|
851
|
+
}
|
852
|
+
export declare const ResourceScanStatus: {
|
853
|
+
readonly COMPLETE: "COMPLETE";
|
854
|
+
readonly EXPIRED: "EXPIRED";
|
855
|
+
readonly FAILED: "FAILED";
|
856
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
857
|
+
};
|
858
|
+
export type ResourceScanStatus =
|
859
|
+
(typeof ResourceScanStatus)[keyof typeof ResourceScanStatus];
|
860
|
+
export interface DescribeResourceScanOutput {
|
861
|
+
ResourceScanId?: string;
|
862
|
+
Status?: ResourceScanStatus;
|
863
|
+
StatusReason?: string;
|
864
|
+
StartTime?: Date;
|
865
|
+
EndTime?: Date;
|
866
|
+
PercentageCompleted?: number;
|
867
|
+
ResourceTypes?: string[];
|
868
|
+
ResourcesScanned?: number;
|
869
|
+
ResourcesRead?: number;
|
870
|
+
}
|
871
|
+
export declare class ResourceScanNotFoundException extends __BaseException {
|
872
|
+
readonly name: "ResourceScanNotFoundException";
|
873
|
+
readonly $fault: "client";
|
874
|
+
Message?: string;
|
875
|
+
constructor(
|
876
|
+
opts: __ExceptionOptionType<ResourceScanNotFoundException, __BaseException>
|
877
|
+
);
|
878
|
+
}
|
729
879
|
export interface DescribeStackDriftDetectionStatusInput {
|
730
880
|
StackDriftDetectionId: string | undefined;
|
731
881
|
}
|
@@ -1254,6 +1404,20 @@ export interface ExecuteChangeSetInput {
|
|
1254
1404
|
RetainExceptOnCreate?: boolean;
|
1255
1405
|
}
|
1256
1406
|
export interface ExecuteChangeSetOutput {}
|
1407
|
+
export declare const TemplateFormat: {
|
1408
|
+
readonly JSON: "JSON";
|
1409
|
+
readonly YAML: "YAML";
|
1410
|
+
};
|
1411
|
+
export type TemplateFormat =
|
1412
|
+
(typeof TemplateFormat)[keyof typeof TemplateFormat];
|
1413
|
+
export interface GetGeneratedTemplateInput {
|
1414
|
+
Format?: TemplateFormat;
|
1415
|
+
GeneratedTemplateName: string | undefined;
|
1416
|
+
}
|
1417
|
+
export interface GetGeneratedTemplateOutput {
|
1418
|
+
Status?: GeneratedTemplateStatus;
|
1419
|
+
TemplateBody?: string;
|
1420
|
+
}
|
1257
1421
|
export interface GetStackPolicyInput {
|
1258
1422
|
StackName: string | undefined;
|
1259
1423
|
}
|
@@ -1356,6 +1520,23 @@ export interface ListExportsOutput {
|
|
1356
1520
|
Exports?: Export[];
|
1357
1521
|
NextToken?: string;
|
1358
1522
|
}
|
1523
|
+
export interface ListGeneratedTemplatesInput {
|
1524
|
+
NextToken?: string;
|
1525
|
+
MaxResults?: number;
|
1526
|
+
}
|
1527
|
+
export interface TemplateSummary {
|
1528
|
+
GeneratedTemplateId?: string;
|
1529
|
+
GeneratedTemplateName?: string;
|
1530
|
+
Status?: GeneratedTemplateStatus;
|
1531
|
+
StatusReason?: string;
|
1532
|
+
CreationTime?: Date;
|
1533
|
+
LastUpdatedTime?: Date;
|
1534
|
+
NumberOfResources?: number;
|
1535
|
+
}
|
1536
|
+
export interface ListGeneratedTemplatesOutput {
|
1537
|
+
Summaries?: TemplateSummary[];
|
1538
|
+
NextToken?: string;
|
1539
|
+
}
|
1359
1540
|
export interface ListImportsInput {
|
1360
1541
|
ExportName: string | undefined;
|
1361
1542
|
NextToken?: string;
|
@@ -1364,6 +1545,65 @@ export interface ListImportsOutput {
|
|
1364
1545
|
Imports?: string[];
|
1365
1546
|
NextToken?: string;
|
1366
1547
|
}
|
1548
|
+
export interface ScannedResourceIdentifier {
|
1549
|
+
ResourceType: string | undefined;
|
1550
|
+
ResourceIdentifier: Record<string, string> | undefined;
|
1551
|
+
}
|
1552
|
+
export interface ListResourceScanRelatedResourcesInput {
|
1553
|
+
ResourceScanId: string | undefined;
|
1554
|
+
Resources: ScannedResourceIdentifier[] | undefined;
|
1555
|
+
NextToken?: string;
|
1556
|
+
MaxResults?: number;
|
1557
|
+
}
|
1558
|
+
export interface ScannedResource {
|
1559
|
+
ResourceType?: string;
|
1560
|
+
ResourceIdentifier?: Record<string, string>;
|
1561
|
+
ManagedByStack?: boolean;
|
1562
|
+
}
|
1563
|
+
export interface ListResourceScanRelatedResourcesOutput {
|
1564
|
+
RelatedResources?: ScannedResource[];
|
1565
|
+
NextToken?: string;
|
1566
|
+
}
|
1567
|
+
export declare class ResourceScanInProgressException extends __BaseException {
|
1568
|
+
readonly name: "ResourceScanInProgressException";
|
1569
|
+
readonly $fault: "client";
|
1570
|
+
Message?: string;
|
1571
|
+
constructor(
|
1572
|
+
opts: __ExceptionOptionType<
|
1573
|
+
ResourceScanInProgressException,
|
1574
|
+
__BaseException
|
1575
|
+
>
|
1576
|
+
);
|
1577
|
+
}
|
1578
|
+
export interface ListResourceScanResourcesInput {
|
1579
|
+
ResourceScanId: string | undefined;
|
1580
|
+
ResourceIdentifier?: string;
|
1581
|
+
ResourceTypePrefix?: string;
|
1582
|
+
TagKey?: string;
|
1583
|
+
TagValue?: string;
|
1584
|
+
NextToken?: string;
|
1585
|
+
MaxResults?: number;
|
1586
|
+
}
|
1587
|
+
export interface ListResourceScanResourcesOutput {
|
1588
|
+
Resources?: ScannedResource[];
|
1589
|
+
NextToken?: string;
|
1590
|
+
}
|
1591
|
+
export interface ListResourceScansInput {
|
1592
|
+
NextToken?: string;
|
1593
|
+
MaxResults?: number;
|
1594
|
+
}
|
1595
|
+
export interface ResourceScanSummary {
|
1596
|
+
ResourceScanId?: string;
|
1597
|
+
Status?: ResourceScanStatus;
|
1598
|
+
StatusReason?: string;
|
1599
|
+
StartTime?: Date;
|
1600
|
+
EndTime?: Date;
|
1601
|
+
PercentageCompleted?: number;
|
1602
|
+
}
|
1603
|
+
export interface ListResourceScansOutput {
|
1604
|
+
ResourceScanSummaries?: ResourceScanSummary[];
|
1605
|
+
NextToken?: string;
|
1606
|
+
}
|
1367
1607
|
export interface ListStackInstanceResourceDriftsInput {
|
1368
1608
|
StackSetName: string | undefined;
|
1369
1609
|
NextToken?: string;
|
@@ -1752,103 +1992,14 @@ export interface SignalResourceInput {
|
|
1752
1992
|
UniqueId: string | undefined;
|
1753
1993
|
Status: ResourceSignalStatus | undefined;
|
1754
1994
|
}
|
1755
|
-
export
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
VersionId?: string;
|
1766
|
-
LogDeliveryBucket?: string;
|
1767
|
-
}
|
1768
|
-
export interface TestTypeOutput {
|
1769
|
-
TypeVersionArn?: string;
|
1770
|
-
}
|
1771
|
-
export interface UpdateStackInput {
|
1772
|
-
StackName: string | undefined;
|
1773
|
-
TemplateBody?: string;
|
1774
|
-
TemplateURL?: string;
|
1775
|
-
UsePreviousTemplate?: boolean;
|
1776
|
-
StackPolicyDuringUpdateBody?: string;
|
1777
|
-
StackPolicyDuringUpdateURL?: string;
|
1778
|
-
Parameters?: Parameter[];
|
1779
|
-
Capabilities?: Capability[];
|
1780
|
-
ResourceTypes?: string[];
|
1781
|
-
RoleARN?: string;
|
1782
|
-
RollbackConfiguration?: RollbackConfiguration;
|
1783
|
-
StackPolicyBody?: string;
|
1784
|
-
StackPolicyURL?: string;
|
1785
|
-
NotificationARNs?: string[];
|
1786
|
-
Tags?: Tag[];
|
1787
|
-
DisableRollback?: boolean;
|
1788
|
-
ClientRequestToken?: string;
|
1789
|
-
RetainExceptOnCreate?: boolean;
|
1790
|
-
}
|
1791
|
-
export interface UpdateStackOutput {
|
1792
|
-
StackId?: string;
|
1793
|
-
}
|
1794
|
-
export interface UpdateStackInstancesInput {
|
1795
|
-
StackSetName: string | undefined;
|
1796
|
-
Accounts?: string[];
|
1797
|
-
DeploymentTargets?: DeploymentTargets;
|
1798
|
-
Regions: string[] | undefined;
|
1799
|
-
ParameterOverrides?: Parameter[];
|
1800
|
-
OperationPreferences?: StackSetOperationPreferences;
|
1801
|
-
OperationId?: string;
|
1802
|
-
CallAs?: CallAs;
|
1803
|
-
}
|
1804
|
-
export interface UpdateStackInstancesOutput {
|
1805
|
-
OperationId?: string;
|
1806
|
-
}
|
1807
|
-
export interface UpdateStackSetInput {
|
1808
|
-
StackSetName: string | undefined;
|
1809
|
-
Description?: string;
|
1810
|
-
TemplateBody?: string;
|
1811
|
-
TemplateURL?: string;
|
1812
|
-
UsePreviousTemplate?: boolean;
|
1813
|
-
Parameters?: Parameter[];
|
1814
|
-
Capabilities?: Capability[];
|
1815
|
-
Tags?: Tag[];
|
1816
|
-
OperationPreferences?: StackSetOperationPreferences;
|
1817
|
-
AdministrationRoleARN?: string;
|
1818
|
-
ExecutionRoleName?: string;
|
1819
|
-
DeploymentTargets?: DeploymentTargets;
|
1820
|
-
PermissionModel?: PermissionModels;
|
1821
|
-
AutoDeployment?: AutoDeployment;
|
1822
|
-
OperationId?: string;
|
1823
|
-
Accounts?: string[];
|
1824
|
-
Regions?: string[];
|
1825
|
-
CallAs?: CallAs;
|
1826
|
-
ManagedExecution?: ManagedExecution;
|
1827
|
-
}
|
1828
|
-
export interface UpdateStackSetOutput {
|
1829
|
-
OperationId?: string;
|
1830
|
-
}
|
1831
|
-
export interface UpdateTerminationProtectionInput {
|
1832
|
-
EnableTerminationProtection: boolean | undefined;
|
1833
|
-
StackName: string | undefined;
|
1834
|
-
}
|
1835
|
-
export interface UpdateTerminationProtectionOutput {
|
1836
|
-
StackId?: string;
|
1837
|
-
}
|
1838
|
-
export interface ValidateTemplateInput {
|
1839
|
-
TemplateBody?: string;
|
1840
|
-
TemplateURL?: string;
|
1841
|
-
}
|
1842
|
-
export interface TemplateParameter {
|
1843
|
-
ParameterKey?: string;
|
1844
|
-
DefaultValue?: string;
|
1845
|
-
NoEcho?: boolean;
|
1846
|
-
Description?: string;
|
1847
|
-
}
|
1848
|
-
export interface ValidateTemplateOutput {
|
1849
|
-
Parameters?: TemplateParameter[];
|
1850
|
-
Description?: string;
|
1851
|
-
Capabilities?: Capability[];
|
1852
|
-
CapabilitiesReason?: string;
|
1853
|
-
DeclaredTransforms?: string[];
|
1995
|
+
export declare class ResourceScanLimitExceededException extends __BaseException {
|
1996
|
+
readonly name: "ResourceScanLimitExceededException";
|
1997
|
+
readonly $fault: "client";
|
1998
|
+
Message?: string;
|
1999
|
+
constructor(
|
2000
|
+
opts: __ExceptionOptionType<
|
2001
|
+
ResourceScanLimitExceededException,
|
2002
|
+
__BaseException
|
2003
|
+
>
|
2004
|
+
);
|
1854
2005
|
}
|
@@ -0,0 +1,132 @@
|
|
1
|
+
import {
|
2
|
+
AutoDeployment,
|
3
|
+
CallAs,
|
4
|
+
Capability,
|
5
|
+
DeploymentTargets,
|
6
|
+
ManagedExecution,
|
7
|
+
Parameter,
|
8
|
+
PermissionModels,
|
9
|
+
ResourceDefinition,
|
10
|
+
RollbackConfiguration,
|
11
|
+
StackSetOperationPreferences,
|
12
|
+
Tag,
|
13
|
+
TemplateConfiguration,
|
14
|
+
ThirdPartyType,
|
15
|
+
} from "./models_0";
|
16
|
+
export interface StartResourceScanInput {
|
17
|
+
ClientRequestToken?: string;
|
18
|
+
}
|
19
|
+
export interface StartResourceScanOutput {
|
20
|
+
ResourceScanId?: string;
|
21
|
+
}
|
22
|
+
export interface StopStackSetOperationInput {
|
23
|
+
StackSetName: string | undefined;
|
24
|
+
OperationId: string | undefined;
|
25
|
+
CallAs?: CallAs;
|
26
|
+
}
|
27
|
+
export interface StopStackSetOperationOutput {}
|
28
|
+
export interface TestTypeInput {
|
29
|
+
Arn?: string;
|
30
|
+
Type?: ThirdPartyType;
|
31
|
+
TypeName?: string;
|
32
|
+
VersionId?: string;
|
33
|
+
LogDeliveryBucket?: string;
|
34
|
+
}
|
35
|
+
export interface TestTypeOutput {
|
36
|
+
TypeVersionArn?: string;
|
37
|
+
}
|
38
|
+
export interface UpdateGeneratedTemplateInput {
|
39
|
+
GeneratedTemplateName: string | undefined;
|
40
|
+
NewGeneratedTemplateName?: string;
|
41
|
+
AddResources?: ResourceDefinition[];
|
42
|
+
RemoveResources?: string[];
|
43
|
+
RefreshAllResources?: boolean;
|
44
|
+
TemplateConfiguration?: TemplateConfiguration;
|
45
|
+
}
|
46
|
+
export interface UpdateGeneratedTemplateOutput {
|
47
|
+
GeneratedTemplateId?: string;
|
48
|
+
}
|
49
|
+
export interface UpdateStackInput {
|
50
|
+
StackName: string | undefined;
|
51
|
+
TemplateBody?: string;
|
52
|
+
TemplateURL?: string;
|
53
|
+
UsePreviousTemplate?: boolean;
|
54
|
+
StackPolicyDuringUpdateBody?: string;
|
55
|
+
StackPolicyDuringUpdateURL?: string;
|
56
|
+
Parameters?: Parameter[];
|
57
|
+
Capabilities?: Capability[];
|
58
|
+
ResourceTypes?: string[];
|
59
|
+
RoleARN?: string;
|
60
|
+
RollbackConfiguration?: RollbackConfiguration;
|
61
|
+
StackPolicyBody?: string;
|
62
|
+
StackPolicyURL?: string;
|
63
|
+
NotificationARNs?: string[];
|
64
|
+
Tags?: Tag[];
|
65
|
+
DisableRollback?: boolean;
|
66
|
+
ClientRequestToken?: string;
|
67
|
+
RetainExceptOnCreate?: boolean;
|
68
|
+
}
|
69
|
+
export interface UpdateStackOutput {
|
70
|
+
StackId?: string;
|
71
|
+
}
|
72
|
+
export interface UpdateStackInstancesInput {
|
73
|
+
StackSetName: string | undefined;
|
74
|
+
Accounts?: string[];
|
75
|
+
DeploymentTargets?: DeploymentTargets;
|
76
|
+
Regions: string[] | undefined;
|
77
|
+
ParameterOverrides?: Parameter[];
|
78
|
+
OperationPreferences?: StackSetOperationPreferences;
|
79
|
+
OperationId?: string;
|
80
|
+
CallAs?: CallAs;
|
81
|
+
}
|
82
|
+
export interface UpdateStackInstancesOutput {
|
83
|
+
OperationId?: string;
|
84
|
+
}
|
85
|
+
export interface UpdateStackSetInput {
|
86
|
+
StackSetName: string | undefined;
|
87
|
+
Description?: string;
|
88
|
+
TemplateBody?: string;
|
89
|
+
TemplateURL?: string;
|
90
|
+
UsePreviousTemplate?: boolean;
|
91
|
+
Parameters?: Parameter[];
|
92
|
+
Capabilities?: Capability[];
|
93
|
+
Tags?: Tag[];
|
94
|
+
OperationPreferences?: StackSetOperationPreferences;
|
95
|
+
AdministrationRoleARN?: string;
|
96
|
+
ExecutionRoleName?: string;
|
97
|
+
DeploymentTargets?: DeploymentTargets;
|
98
|
+
PermissionModel?: PermissionModels;
|
99
|
+
AutoDeployment?: AutoDeployment;
|
100
|
+
OperationId?: string;
|
101
|
+
Accounts?: string[];
|
102
|
+
Regions?: string[];
|
103
|
+
CallAs?: CallAs;
|
104
|
+
ManagedExecution?: ManagedExecution;
|
105
|
+
}
|
106
|
+
export interface UpdateStackSetOutput {
|
107
|
+
OperationId?: string;
|
108
|
+
}
|
109
|
+
export interface UpdateTerminationProtectionInput {
|
110
|
+
EnableTerminationProtection: boolean | undefined;
|
111
|
+
StackName: string | undefined;
|
112
|
+
}
|
113
|
+
export interface UpdateTerminationProtectionOutput {
|
114
|
+
StackId?: string;
|
115
|
+
}
|
116
|
+
export interface ValidateTemplateInput {
|
117
|
+
TemplateBody?: string;
|
118
|
+
TemplateURL?: string;
|
119
|
+
}
|
120
|
+
export interface TemplateParameter {
|
121
|
+
ParameterKey?: string;
|
122
|
+
DefaultValue?: string;
|
123
|
+
NoEcho?: boolean;
|
124
|
+
Description?: string;
|
125
|
+
}
|
126
|
+
export interface ValidateTemplateOutput {
|
127
|
+
Parameters?: TemplateParameter[];
|
128
|
+
Description?: string;
|
129
|
+
Capabilities?: Capability[];
|
130
|
+
CapabilitiesReason?: string;
|
131
|
+
DeclaredTransforms?: string[];
|
132
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import {
|
3
|
+
ListGeneratedTemplatesCommandInput,
|
4
|
+
ListGeneratedTemplatesCommandOutput,
|
5
|
+
} from "../commands/ListGeneratedTemplatesCommand";
|
6
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
7
|
+
export declare const paginateListGeneratedTemplates: (
|
8
|
+
config: CloudFormationPaginationConfiguration,
|
9
|
+
input: ListGeneratedTemplatesCommandInput,
|
10
|
+
...rest: any[]
|
11
|
+
) => Paginator<ListGeneratedTemplatesCommandOutput>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import {
|
3
|
+
ListResourceScanRelatedResourcesCommandInput,
|
4
|
+
ListResourceScanRelatedResourcesCommandOutput,
|
5
|
+
} from "../commands/ListResourceScanRelatedResourcesCommand";
|
6
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
7
|
+
export declare const paginateListResourceScanRelatedResources: (
|
8
|
+
config: CloudFormationPaginationConfiguration,
|
9
|
+
input: ListResourceScanRelatedResourcesCommandInput,
|
10
|
+
...rest: any[]
|
11
|
+
) => Paginator<ListResourceScanRelatedResourcesCommandOutput>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import {
|
3
|
+
ListResourceScanResourcesCommandInput,
|
4
|
+
ListResourceScanResourcesCommandOutput,
|
5
|
+
} from "../commands/ListResourceScanResourcesCommand";
|
6
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
7
|
+
export declare const paginateListResourceScanResources: (
|
8
|
+
config: CloudFormationPaginationConfiguration,
|
9
|
+
input: ListResourceScanResourcesCommandInput,
|
10
|
+
...rest: any[]
|
11
|
+
) => Paginator<ListResourceScanResourcesCommandOutput>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import {
|
3
|
+
ListResourceScansCommandInput,
|
4
|
+
ListResourceScansCommandOutput,
|
5
|
+
} from "../commands/ListResourceScansCommand";
|
6
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
7
|
+
export declare const paginateListResourceScans: (
|
8
|
+
config: CloudFormationPaginationConfiguration,
|
9
|
+
input: ListResourceScansCommandInput,
|
10
|
+
...rest: any[]
|
11
|
+
) => Paginator<ListResourceScansCommandOutput>;
|
@@ -5,7 +5,11 @@ export * from "./DescribeStacksPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
6
6
|
export * from "./ListChangeSetsPaginator";
|
7
7
|
export * from "./ListExportsPaginator";
|
8
|
+
export * from "./ListGeneratedTemplatesPaginator";
|
8
9
|
export * from "./ListImportsPaginator";
|
10
|
+
export * from "./ListResourceScanRelatedResourcesPaginator";
|
11
|
+
export * from "./ListResourceScanResourcesPaginator";
|
12
|
+
export * from "./ListResourceScansPaginator";
|
9
13
|
export * from "./ListStackInstancesPaginator";
|
10
14
|
export * from "./ListStackResourcesPaginator";
|
11
15
|
export * from "./ListStackSetOperationResultsPaginator";
|