@effect-aws/client-cloudformation 1.10.6

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.
Files changed (53) hide show
  1. package/CloudFormationClientInstance/package.json +6 -0
  2. package/CloudFormationService/package.json +6 -0
  3. package/CloudFormationServiceConfig/package.json +6 -0
  4. package/Errors/package.json +6 -0
  5. package/LICENSE +19 -0
  6. package/README.md +58 -0
  7. package/dist/cjs/CloudFormationClientInstance.d.ts +24 -0
  8. package/dist/cjs/CloudFormationClientInstance.d.ts.map +1 -0
  9. package/dist/cjs/CloudFormationClientInstance.js +50 -0
  10. package/dist/cjs/CloudFormationClientInstance.js.map +1 -0
  11. package/dist/cjs/CloudFormationService.d.ts +406 -0
  12. package/dist/cjs/CloudFormationService.d.ts.map +1 -0
  13. package/dist/cjs/CloudFormationService.js +149 -0
  14. package/dist/cjs/CloudFormationService.js.map +1 -0
  15. package/dist/cjs/CloudFormationServiceConfig.d.ts +25 -0
  16. package/dist/cjs/CloudFormationServiceConfig.d.ts.map +1 -0
  17. package/dist/cjs/CloudFormationServiceConfig.js +35 -0
  18. package/dist/cjs/CloudFormationServiceConfig.js.map +1 -0
  19. package/dist/cjs/Errors.d.ts +36 -0
  20. package/dist/cjs/Errors.d.ts.map +1 -0
  21. package/dist/cjs/Errors.js +35 -0
  22. package/dist/cjs/Errors.js.map +1 -0
  23. package/dist/cjs/index.d.ts +44 -0
  24. package/dist/cjs/index.d.ts.map +1 -0
  25. package/dist/cjs/index.js +56 -0
  26. package/dist/cjs/index.js.map +1 -0
  27. package/dist/dts/CloudFormationClientInstance.d.ts +24 -0
  28. package/dist/dts/CloudFormationClientInstance.d.ts.map +1 -0
  29. package/dist/dts/CloudFormationService.d.ts +406 -0
  30. package/dist/dts/CloudFormationService.d.ts.map +1 -0
  31. package/dist/dts/CloudFormationServiceConfig.d.ts +25 -0
  32. package/dist/dts/CloudFormationServiceConfig.d.ts.map +1 -0
  33. package/dist/dts/Errors.d.ts +36 -0
  34. package/dist/dts/Errors.d.ts.map +1 -0
  35. package/dist/dts/index.d.ts +44 -0
  36. package/dist/dts/index.d.ts.map +1 -0
  37. package/dist/esm/CloudFormationClientInstance.js +23 -0
  38. package/dist/esm/CloudFormationClientInstance.js.map +1 -0
  39. package/dist/esm/CloudFormationService.js +122 -0
  40. package/dist/esm/CloudFormationService.js.map +1 -0
  41. package/dist/esm/CloudFormationServiceConfig.js +31 -0
  42. package/dist/esm/CloudFormationServiceConfig.js.map +1 -0
  43. package/dist/esm/Errors.js +32 -0
  44. package/dist/esm/Errors.js.map +1 -0
  45. package/dist/esm/index.js +27 -0
  46. package/dist/esm/index.js.map +1 -0
  47. package/dist/esm/package.json +4 -0
  48. package/package.json +71 -0
  49. package/src/CloudFormationClientInstance.ts +33 -0
  50. package/src/CloudFormationService.ts +1509 -0
  51. package/src/CloudFormationServiceConfig.ts +52 -0
  52. package/src/Errors.ts +95 -0
  53. package/src/index.ts +50 -0
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/CloudFormationClientInstance.js",
3
+ "module": "../dist/esm/CloudFormationClientInstance.js",
4
+ "types": "../dist/dts/CloudFormationClientInstance.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/CloudFormationService.js",
3
+ "module": "../dist/esm/CloudFormationService.js",
4
+ "types": "../dist/dts/CloudFormationService.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/CloudFormationServiceConfig.js",
3
+ "module": "../dist/esm/CloudFormationServiceConfig.js",
4
+ "types": "../dist/dts/CloudFormationServiceConfig.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/Errors.js",
3
+ "module": "../dist/esm/Errors.js",
4
+ "types": "../dist/dts/Errors.d.ts",
5
+ "sideEffects": []
6
+ }
package/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2025 Victor Korzunin
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # @effect-aws/client-cloudformation
2
+
3
+ [![npm version](https://img.shields.io/npm/v/%40effect-aws%2Fclient-cloudformation?color=brightgreen&label=npm%20package)](https://www.npmjs.com/package/@effect-aws/client-cloudformation)
4
+ [![npm downloads](https://img.shields.io/npm/dm/%40effect-aws%2Fclient-cloudformation)](https://www.npmjs.com/package/@effect-aws/client-cloudformation)
5
+
6
+ ## Installation
7
+
8
+ ```bash
9
+ npm install --save @effect-aws/client-cloudformation
10
+ ```
11
+
12
+ ## Usage
13
+
14
+ With default CloudFormationClient instance:
15
+
16
+ ```typescript
17
+ import { CloudFormation } from "@effect-aws/client-cloudformation";
18
+
19
+ const program = CloudFormation.listStacks(args);
20
+
21
+ const result = pipe(
22
+ program,
23
+ Effect.provide(CloudFormation.defaultLayer),
24
+ Effect.runPromise,
25
+ );
26
+ ```
27
+
28
+ With custom CloudFormationClient instance:
29
+
30
+ ```typescript
31
+ import { CloudFormation } from "@effect-aws/client-cloudformation";
32
+
33
+ const program = CloudFormation.listStacks(args);
34
+
35
+ const result = await pipe(
36
+ program,
37
+ Effect.provide(
38
+ CloudFormation.baseLayer(() => new CloudFormationClient({ region: "eu-central-1" })),
39
+ ),
40
+ Effect.runPromise,
41
+ );
42
+ ```
43
+
44
+ With custom CloudFormationClient configuration:
45
+
46
+ ```typescript
47
+ import { CloudFormation } from "@effect-aws/client-cloudformation";
48
+
49
+ const program = CloudFormation.listStacks(args);
50
+
51
+ const result = await pipe(
52
+ program,
53
+ Effect.provide(CloudFormation.layer({ region: "eu-central-1" })),
54
+ Effect.runPromiseExit,
55
+ );
56
+ ```
57
+
58
+ or use `CloudFormation.baseLayer((default) => new CloudFormationClient({ ...default, region: "eu-central-1" }))`
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { CloudFormationClient } from "@aws-sdk/client-cloudformation";
5
+ import { Context, Effect, Layer } from "effect";
6
+ declare const CloudFormationClientInstance_base: Context.TagClass<CloudFormationClientInstance, "@effect-aws/client-cloudformation/CloudFormationClientInstance", CloudFormationClient>;
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export declare class CloudFormationClientInstance extends CloudFormationClientInstance_base {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export declare const make: Effect.Effect<CloudFormationClient, never, import("effect/Scope").Scope>;
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export declare const layer: Layer.Layer<CloudFormationClientInstance, never, never>;
23
+ export {};
24
+ //# sourceMappingURL=CloudFormationClientInstance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudFormationClientInstance.d.ts","sourceRoot":"","sources":["../../src/CloudFormationClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,4BAA6B,SAAQ,iCAEK;CAAG;AAE1D;;;GAGG;AACH,eAAO,MAAM,IAAI,0EAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,yDAAmD,CAAC"}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.layer = exports.make = exports.CloudFormationClientInstance = void 0;
27
+ /**
28
+ * @since 1.0.0
29
+ */
30
+ const client_cloudformation_1 = require("@aws-sdk/client-cloudformation");
31
+ const effect_1 = require("effect");
32
+ const CloudFormationServiceConfig = __importStar(require("./CloudFormationServiceConfig.js"));
33
+ /**
34
+ * @since 1.0.0
35
+ * @category tags
36
+ */
37
+ class CloudFormationClientInstance extends effect_1.Context.Tag("@effect-aws/client-cloudformation/CloudFormationClientInstance")() {
38
+ }
39
+ exports.CloudFormationClientInstance = CloudFormationClientInstance;
40
+ /**
41
+ * @since 1.0.0
42
+ * @category constructors
43
+ */
44
+ exports.make = effect_1.Effect.flatMap(CloudFormationServiceConfig.toCloudFormationClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_cloudformation_1.CloudFormationClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
45
+ /**
46
+ * @since 1.0.0
47
+ * @category layers
48
+ */
49
+ exports.layer = effect_1.Layer.scoped(CloudFormationClientInstance, exports.make);
50
+ //# sourceMappingURL=CloudFormationClientInstance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CloudFormationClientInstance.js","sourceRoot":"","sources":["../../src/CloudFormationClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,0EAAsE;AACtE,mCAAgD;AAChD,8FAAgF;AAEhF;;;GAGG;AACH,MAAa,4BAA6B,SAAQ,gBAAO,CAAC,GAAG,CAC3D,gEAAgE,CACjE,EAAsD;CAAG;AAF1D,oEAE0D;AAE1D;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,2BAA2B,CAAC,4BAA4B,EACxD,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,4CAAoB,CAAC,MAAM,CAAC,CAAC,EACnD,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,4BAA4B,EAAE,YAAI,CAAC,CAAC"}
@@ -0,0 +1,406 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { type ActivateOrganizationsAccessCommandInput, type ActivateOrganizationsAccessCommandOutput, type ActivateTypeCommandInput, type ActivateTypeCommandOutput, type BatchDescribeTypeConfigurationsCommandInput, type BatchDescribeTypeConfigurationsCommandOutput, type CancelUpdateStackCommandInput, type CancelUpdateStackCommandOutput, type CloudFormationClient, type CloudFormationClientConfig, type ContinueUpdateRollbackCommandInput, type ContinueUpdateRollbackCommandOutput, type CreateChangeSetCommandInput, type CreateChangeSetCommandOutput, type CreateGeneratedTemplateCommandInput, type CreateGeneratedTemplateCommandOutput, type CreateStackCommandInput, type CreateStackCommandOutput, type CreateStackInstancesCommandInput, type CreateStackInstancesCommandOutput, type CreateStackRefactorCommandInput, type CreateStackRefactorCommandOutput, type CreateStackSetCommandInput, type CreateStackSetCommandOutput, type DeactivateOrganizationsAccessCommandInput, type DeactivateOrganizationsAccessCommandOutput, type DeactivateTypeCommandInput, type DeactivateTypeCommandOutput, type DeleteChangeSetCommandInput, type DeleteChangeSetCommandOutput, type DeleteGeneratedTemplateCommandInput, type DeleteGeneratedTemplateCommandOutput, type DeleteStackCommandInput, type DeleteStackCommandOutput, type DeleteStackInstancesCommandInput, type DeleteStackInstancesCommandOutput, type DeleteStackSetCommandInput, type DeleteStackSetCommandOutput, type DeregisterTypeCommandInput, type DeregisterTypeCommandOutput, type DescribeAccountLimitsCommandInput, type DescribeAccountLimitsCommandOutput, type DescribeChangeSetCommandInput, type DescribeChangeSetCommandOutput, type DescribeChangeSetHooksCommandInput, type DescribeChangeSetHooksCommandOutput, type DescribeEventsCommandInput, type DescribeEventsCommandOutput, type DescribeGeneratedTemplateCommandInput, type DescribeGeneratedTemplateCommandOutput, type DescribeOrganizationsAccessCommandInput, type DescribeOrganizationsAccessCommandOutput, type DescribePublisherCommandInput, type DescribePublisherCommandOutput, type DescribeResourceScanCommandInput, type DescribeResourceScanCommandOutput, type DescribeStackDriftDetectionStatusCommandInput, type DescribeStackDriftDetectionStatusCommandOutput, type DescribeStackEventsCommandInput, type DescribeStackEventsCommandOutput, type DescribeStackInstanceCommandInput, type DescribeStackInstanceCommandOutput, type DescribeStackRefactorCommandInput, type DescribeStackRefactorCommandOutput, type DescribeStackResourceCommandInput, type DescribeStackResourceCommandOutput, type DescribeStackResourceDriftsCommandInput, type DescribeStackResourceDriftsCommandOutput, type DescribeStackResourcesCommandInput, type DescribeStackResourcesCommandOutput, type DescribeStacksCommandInput, type DescribeStacksCommandOutput, type DescribeStackSetCommandInput, type DescribeStackSetCommandOutput, type DescribeStackSetOperationCommandInput, type DescribeStackSetOperationCommandOutput, type DescribeTypeCommandInput, type DescribeTypeCommandOutput, type DescribeTypeRegistrationCommandInput, type DescribeTypeRegistrationCommandOutput, type DetectStackDriftCommandInput, type DetectStackDriftCommandOutput, type DetectStackResourceDriftCommandInput, type DetectStackResourceDriftCommandOutput, type DetectStackSetDriftCommandInput, type DetectStackSetDriftCommandOutput, type EstimateTemplateCostCommandInput, type EstimateTemplateCostCommandOutput, type ExecuteChangeSetCommandInput, type ExecuteChangeSetCommandOutput, type ExecuteStackRefactorCommandInput, type ExecuteStackRefactorCommandOutput, type GetGeneratedTemplateCommandInput, type GetGeneratedTemplateCommandOutput, type GetHookResultCommandInput, type GetHookResultCommandOutput, type GetStackPolicyCommandInput, type GetStackPolicyCommandOutput, type GetTemplateCommandInput, type GetTemplateCommandOutput, type GetTemplateSummaryCommandInput, type GetTemplateSummaryCommandOutput, type ImportStacksToStackSetCommandInput, type ImportStacksToStackSetCommandOutput, type ListChangeSetsCommandInput, type ListChangeSetsCommandOutput, type ListExportsCommandInput, type ListExportsCommandOutput, type ListGeneratedTemplatesCommandInput, type ListGeneratedTemplatesCommandOutput, type ListHookResultsCommandInput, type ListHookResultsCommandOutput, type ListImportsCommandInput, type ListImportsCommandOutput, type ListResourceScanRelatedResourcesCommandInput, type ListResourceScanRelatedResourcesCommandOutput, type ListResourceScanResourcesCommandInput, type ListResourceScanResourcesCommandOutput, type ListResourceScansCommandInput, type ListResourceScansCommandOutput, type ListStackInstanceResourceDriftsCommandInput, type ListStackInstanceResourceDriftsCommandOutput, type ListStackInstancesCommandInput, type ListStackInstancesCommandOutput, type ListStackRefactorActionsCommandInput, type ListStackRefactorActionsCommandOutput, type ListStackRefactorsCommandInput, type ListStackRefactorsCommandOutput, type ListStackResourcesCommandInput, type ListStackResourcesCommandOutput, type ListStacksCommandInput, type ListStacksCommandOutput, type ListStackSetAutoDeploymentTargetsCommandInput, type ListStackSetAutoDeploymentTargetsCommandOutput, type ListStackSetOperationResultsCommandInput, type ListStackSetOperationResultsCommandOutput, type ListStackSetOperationsCommandInput, type ListStackSetOperationsCommandOutput, type ListStackSetsCommandInput, type ListStackSetsCommandOutput, type ListTypeRegistrationsCommandInput, type ListTypeRegistrationsCommandOutput, type ListTypesCommandInput, type ListTypesCommandOutput, type ListTypeVersionsCommandInput, type ListTypeVersionsCommandOutput, type PublishTypeCommandInput, type PublishTypeCommandOutput, type RecordHandlerProgressCommandInput, type RecordHandlerProgressCommandOutput, type RegisterPublisherCommandInput, type RegisterPublisherCommandOutput, type RegisterTypeCommandInput, type RegisterTypeCommandOutput, type RollbackStackCommandInput, type RollbackStackCommandOutput, type SetStackPolicyCommandInput, type SetStackPolicyCommandOutput, type SetTypeConfigurationCommandInput, type SetTypeConfigurationCommandOutput, type SetTypeDefaultVersionCommandInput, type SetTypeDefaultVersionCommandOutput, type SignalResourceCommandInput, type SignalResourceCommandOutput, type StartResourceScanCommandInput, type StartResourceScanCommandOutput, type StopStackSetOperationCommandInput, type StopStackSetOperationCommandOutput, type TestTypeCommandInput, type TestTypeCommandOutput, type UpdateGeneratedTemplateCommandInput, type UpdateGeneratedTemplateCommandOutput, type UpdateStackCommandInput, type UpdateStackCommandOutput, type UpdateStackInstancesCommandInput, type UpdateStackInstancesCommandOutput, type UpdateStackSetCommandInput, type UpdateStackSetCommandOutput, type UpdateTerminationProtectionCommandInput, type UpdateTerminationProtectionCommandOutput, type ValidateTemplateCommandInput, type ValidateTemplateCommandOutput } from "@aws-sdk/client-cloudformation";
5
+ import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
6
+ import type { Cause } from "effect";
7
+ import { Effect, Layer } from "effect";
8
+ import * as Instance from "./CloudFormationClientInstance.js";
9
+ import type { AlreadyExistsError, CFNRegistryError, ChangeSetNotFoundError, ConcurrentResourcesLimitExceededError, CreatedButModifiedError, GeneratedTemplateNotFoundError, HookResultNotFoundError, InsufficientCapabilitiesError, InvalidChangeSetStatusError, InvalidOperationError, InvalidStateTransitionError, LimitExceededError, NameAlreadyExistsError, OperationIdAlreadyExistsError, OperationInProgressError, OperationNotFoundError, OperationStatusCheckFailedError, ResourceScanInProgressError, ResourceScanLimitExceededError, ResourceScanNotFoundError, SdkError, StackInstanceNotFoundError, StackNotFoundError, StackRefactorNotFoundError, StackSetNotEmptyError, StackSetNotFoundError, StaleRequestError, TokenAlreadyExistsError, TypeConfigurationNotFoundError, TypeNotFoundError } from "./Errors.js";
10
+ interface CloudFormationService$ {
11
+ readonly _: unique symbol;
12
+ /**
13
+ * @see {@link ActivateOrganizationsAccessCommand}
14
+ */
15
+ activateOrganizationsAccess(args: ActivateOrganizationsAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<ActivateOrganizationsAccessCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError>;
16
+ /**
17
+ * @see {@link ActivateTypeCommand}
18
+ */
19
+ activateType(args: ActivateTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<ActivateTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
20
+ /**
21
+ * @see {@link BatchDescribeTypeConfigurationsCommand}
22
+ */
23
+ batchDescribeTypeConfigurations(args: BatchDescribeTypeConfigurationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDescribeTypeConfigurationsCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeConfigurationNotFoundError>;
24
+ /**
25
+ * @see {@link CancelUpdateStackCommand}
26
+ */
27
+ cancelUpdateStack(args: CancelUpdateStackCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelUpdateStackCommandOutput, Cause.TimeoutException | SdkError | TokenAlreadyExistsError>;
28
+ /**
29
+ * @see {@link ContinueUpdateRollbackCommand}
30
+ */
31
+ continueUpdateRollback(args: ContinueUpdateRollbackCommandInput, options?: HttpHandlerOptions): Effect.Effect<ContinueUpdateRollbackCommandOutput, Cause.TimeoutException | SdkError | TokenAlreadyExistsError>;
32
+ /**
33
+ * @see {@link CreateChangeSetCommand}
34
+ */
35
+ createChangeSet(args: CreateChangeSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateChangeSetCommandOutput, Cause.TimeoutException | SdkError | AlreadyExistsError | InsufficientCapabilitiesError | LimitExceededError>;
36
+ /**
37
+ * @see {@link CreateGeneratedTemplateCommand}
38
+ */
39
+ createGeneratedTemplate(args: CreateGeneratedTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGeneratedTemplateCommandOutput, Cause.TimeoutException | SdkError | AlreadyExistsError | ConcurrentResourcesLimitExceededError | LimitExceededError>;
40
+ /**
41
+ * @see {@link CreateStackCommand}
42
+ */
43
+ createStack(args: CreateStackCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStackCommandOutput, Cause.TimeoutException | SdkError | AlreadyExistsError | InsufficientCapabilitiesError | LimitExceededError | TokenAlreadyExistsError>;
44
+ /**
45
+ * @see {@link CreateStackInstancesCommand}
46
+ */
47
+ createStackInstances(args: CreateStackInstancesCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStackInstancesCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | LimitExceededError | OperationIdAlreadyExistsError | OperationInProgressError | StackSetNotFoundError | StaleRequestError>;
48
+ /**
49
+ * @see {@link CreateStackRefactorCommand}
50
+ */
51
+ createStackRefactor(args: CreateStackRefactorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStackRefactorCommandOutput, Cause.TimeoutException | SdkError>;
52
+ /**
53
+ * @see {@link CreateStackSetCommand}
54
+ */
55
+ createStackSet(args: CreateStackSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStackSetCommandOutput, Cause.TimeoutException | SdkError | CreatedButModifiedError | LimitExceededError | NameAlreadyExistsError>;
56
+ /**
57
+ * @see {@link DeactivateOrganizationsAccessCommand}
58
+ */
59
+ deactivateOrganizationsAccess(args: DeactivateOrganizationsAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeactivateOrganizationsAccessCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError>;
60
+ /**
61
+ * @see {@link DeactivateTypeCommand}
62
+ */
63
+ deactivateType(args: DeactivateTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeactivateTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
64
+ /**
65
+ * @see {@link DeleteChangeSetCommand}
66
+ */
67
+ deleteChangeSet(args: DeleteChangeSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteChangeSetCommandOutput, Cause.TimeoutException | SdkError | InvalidChangeSetStatusError>;
68
+ /**
69
+ * @see {@link DeleteGeneratedTemplateCommand}
70
+ */
71
+ deleteGeneratedTemplate(args: DeleteGeneratedTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGeneratedTemplateCommandOutput, Cause.TimeoutException | SdkError | ConcurrentResourcesLimitExceededError | GeneratedTemplateNotFoundError>;
72
+ /**
73
+ * @see {@link DeleteStackCommand}
74
+ */
75
+ deleteStack(args: DeleteStackCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStackCommandOutput, Cause.TimeoutException | SdkError | TokenAlreadyExistsError>;
76
+ /**
77
+ * @see {@link DeleteStackInstancesCommand}
78
+ */
79
+ deleteStackInstances(args: DeleteStackInstancesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStackInstancesCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationIdAlreadyExistsError | OperationInProgressError | StackSetNotFoundError | StaleRequestError>;
80
+ /**
81
+ * @see {@link DeleteStackSetCommand}
82
+ */
83
+ deleteStackSet(args: DeleteStackSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStackSetCommandOutput, Cause.TimeoutException | SdkError | OperationInProgressError | StackSetNotEmptyError>;
84
+ /**
85
+ * @see {@link DeregisterTypeCommand}
86
+ */
87
+ deregisterType(args: DeregisterTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeregisterTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
88
+ /**
89
+ * @see {@link DescribeAccountLimitsCommand}
90
+ */
91
+ describeAccountLimits(args: DescribeAccountLimitsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeAccountLimitsCommandOutput, Cause.TimeoutException | SdkError>;
92
+ /**
93
+ * @see {@link DescribeChangeSetCommand}
94
+ */
95
+ describeChangeSet(args: DescribeChangeSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeChangeSetCommandOutput, Cause.TimeoutException | SdkError | ChangeSetNotFoundError>;
96
+ /**
97
+ * @see {@link DescribeChangeSetHooksCommand}
98
+ */
99
+ describeChangeSetHooks(args: DescribeChangeSetHooksCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeChangeSetHooksCommandOutput, Cause.TimeoutException | SdkError | ChangeSetNotFoundError>;
100
+ /**
101
+ * @see {@link DescribeEventsCommand}
102
+ */
103
+ describeEvents(args: DescribeEventsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeEventsCommandOutput, Cause.TimeoutException | SdkError>;
104
+ /**
105
+ * @see {@link DescribeGeneratedTemplateCommand}
106
+ */
107
+ describeGeneratedTemplate(args: DescribeGeneratedTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeGeneratedTemplateCommandOutput, Cause.TimeoutException | SdkError | GeneratedTemplateNotFoundError>;
108
+ /**
109
+ * @see {@link DescribeOrganizationsAccessCommand}
110
+ */
111
+ describeOrganizationsAccess(args: DescribeOrganizationsAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeOrganizationsAccessCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError>;
112
+ /**
113
+ * @see {@link DescribePublisherCommand}
114
+ */
115
+ describePublisher(args: DescribePublisherCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribePublisherCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
116
+ /**
117
+ * @see {@link DescribeResourceScanCommand}
118
+ */
119
+ describeResourceScan(args: DescribeResourceScanCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeResourceScanCommandOutput, Cause.TimeoutException | SdkError | ResourceScanNotFoundError>;
120
+ /**
121
+ * @see {@link DescribeStackDriftDetectionStatusCommand}
122
+ */
123
+ describeStackDriftDetectionStatus(args: DescribeStackDriftDetectionStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackDriftDetectionStatusCommandOutput, Cause.TimeoutException | SdkError>;
124
+ /**
125
+ * @see {@link DescribeStackEventsCommand}
126
+ */
127
+ describeStackEvents(args: DescribeStackEventsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackEventsCommandOutput, Cause.TimeoutException | SdkError>;
128
+ /**
129
+ * @see {@link DescribeStackInstanceCommand}
130
+ */
131
+ describeStackInstance(args: DescribeStackInstanceCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackInstanceCommandOutput, Cause.TimeoutException | SdkError | StackInstanceNotFoundError | StackSetNotFoundError>;
132
+ /**
133
+ * @see {@link DescribeStackRefactorCommand}
134
+ */
135
+ describeStackRefactor(args: DescribeStackRefactorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackRefactorCommandOutput, Cause.TimeoutException | SdkError | StackRefactorNotFoundError>;
136
+ /**
137
+ * @see {@link DescribeStackResourceCommand}
138
+ */
139
+ describeStackResource(args: DescribeStackResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackResourceCommandOutput, Cause.TimeoutException | SdkError>;
140
+ /**
141
+ * @see {@link DescribeStackResourceDriftsCommand}
142
+ */
143
+ describeStackResourceDrifts(args: DescribeStackResourceDriftsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackResourceDriftsCommandOutput, Cause.TimeoutException | SdkError>;
144
+ /**
145
+ * @see {@link DescribeStackResourcesCommand}
146
+ */
147
+ describeStackResources(args: DescribeStackResourcesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackResourcesCommandOutput, Cause.TimeoutException | SdkError>;
148
+ /**
149
+ * @see {@link DescribeStackSetCommand}
150
+ */
151
+ describeStackSet(args: DescribeStackSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackSetCommandOutput, Cause.TimeoutException | SdkError | StackSetNotFoundError>;
152
+ /**
153
+ * @see {@link DescribeStackSetOperationCommand}
154
+ */
155
+ describeStackSetOperation(args: DescribeStackSetOperationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStackSetOperationCommandOutput, Cause.TimeoutException | SdkError | OperationNotFoundError | StackSetNotFoundError>;
156
+ /**
157
+ * @see {@link DescribeStacksCommand}
158
+ */
159
+ describeStacks(args: DescribeStacksCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStacksCommandOutput, Cause.TimeoutException | SdkError>;
160
+ /**
161
+ * @see {@link DescribeTypeCommand}
162
+ */
163
+ describeType(args: DescribeTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
164
+ /**
165
+ * @see {@link DescribeTypeRegistrationCommand}
166
+ */
167
+ describeTypeRegistration(args: DescribeTypeRegistrationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeTypeRegistrationCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
168
+ /**
169
+ * @see {@link DetectStackDriftCommand}
170
+ */
171
+ detectStackDrift(args: DetectStackDriftCommandInput, options?: HttpHandlerOptions): Effect.Effect<DetectStackDriftCommandOutput, Cause.TimeoutException | SdkError>;
172
+ /**
173
+ * @see {@link DetectStackResourceDriftCommand}
174
+ */
175
+ detectStackResourceDrift(args: DetectStackResourceDriftCommandInput, options?: HttpHandlerOptions): Effect.Effect<DetectStackResourceDriftCommandOutput, Cause.TimeoutException | SdkError>;
176
+ /**
177
+ * @see {@link DetectStackSetDriftCommand}
178
+ */
179
+ detectStackSetDrift(args: DetectStackSetDriftCommandInput, options?: HttpHandlerOptions): Effect.Effect<DetectStackSetDriftCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationInProgressError | StackSetNotFoundError>;
180
+ /**
181
+ * @see {@link EstimateTemplateCostCommand}
182
+ */
183
+ estimateTemplateCost(args: EstimateTemplateCostCommandInput, options?: HttpHandlerOptions): Effect.Effect<EstimateTemplateCostCommandOutput, Cause.TimeoutException | SdkError>;
184
+ /**
185
+ * @see {@link ExecuteChangeSetCommand}
186
+ */
187
+ executeChangeSet(args: ExecuteChangeSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExecuteChangeSetCommandOutput, Cause.TimeoutException | SdkError | ChangeSetNotFoundError | InsufficientCapabilitiesError | InvalidChangeSetStatusError | TokenAlreadyExistsError>;
188
+ /**
189
+ * @see {@link ExecuteStackRefactorCommand}
190
+ */
191
+ executeStackRefactor(args: ExecuteStackRefactorCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExecuteStackRefactorCommandOutput, Cause.TimeoutException | SdkError>;
192
+ /**
193
+ * @see {@link GetGeneratedTemplateCommand}
194
+ */
195
+ getGeneratedTemplate(args: GetGeneratedTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGeneratedTemplateCommandOutput, Cause.TimeoutException | SdkError | GeneratedTemplateNotFoundError>;
196
+ /**
197
+ * @see {@link GetHookResultCommand}
198
+ */
199
+ getHookResult(args: GetHookResultCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetHookResultCommandOutput, Cause.TimeoutException | SdkError | HookResultNotFoundError>;
200
+ /**
201
+ * @see {@link GetStackPolicyCommand}
202
+ */
203
+ getStackPolicy(args: GetStackPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetStackPolicyCommandOutput, Cause.TimeoutException | SdkError>;
204
+ /**
205
+ * @see {@link GetTemplateCommand}
206
+ */
207
+ getTemplate(args: GetTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTemplateCommandOutput, Cause.TimeoutException | SdkError | ChangeSetNotFoundError>;
208
+ /**
209
+ * @see {@link GetTemplateSummaryCommand}
210
+ */
211
+ getTemplateSummary(args: GetTemplateSummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTemplateSummaryCommandOutput, Cause.TimeoutException | SdkError | StackSetNotFoundError>;
212
+ /**
213
+ * @see {@link ImportStacksToStackSetCommand}
214
+ */
215
+ importStacksToStackSet(args: ImportStacksToStackSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<ImportStacksToStackSetCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | LimitExceededError | OperationIdAlreadyExistsError | OperationInProgressError | StackNotFoundError | StackSetNotFoundError | StaleRequestError>;
216
+ /**
217
+ * @see {@link ListChangeSetsCommand}
218
+ */
219
+ listChangeSets(args: ListChangeSetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListChangeSetsCommandOutput, Cause.TimeoutException | SdkError>;
220
+ /**
221
+ * @see {@link ListExportsCommand}
222
+ */
223
+ listExports(args: ListExportsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListExportsCommandOutput, Cause.TimeoutException | SdkError>;
224
+ /**
225
+ * @see {@link ListGeneratedTemplatesCommand}
226
+ */
227
+ listGeneratedTemplates(args: ListGeneratedTemplatesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGeneratedTemplatesCommandOutput, Cause.TimeoutException | SdkError>;
228
+ /**
229
+ * @see {@link ListHookResultsCommand}
230
+ */
231
+ listHookResults(args: ListHookResultsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHookResultsCommandOutput, Cause.TimeoutException | SdkError | HookResultNotFoundError>;
232
+ /**
233
+ * @see {@link ListImportsCommand}
234
+ */
235
+ listImports(args: ListImportsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListImportsCommandOutput, Cause.TimeoutException | SdkError>;
236
+ /**
237
+ * @see {@link ListResourceScanRelatedResourcesCommand}
238
+ */
239
+ listResourceScanRelatedResources(args: ListResourceScanRelatedResourcesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListResourceScanRelatedResourcesCommandOutput, Cause.TimeoutException | SdkError | ResourceScanInProgressError | ResourceScanNotFoundError>;
240
+ /**
241
+ * @see {@link ListResourceScanResourcesCommand}
242
+ */
243
+ listResourceScanResources(args: ListResourceScanResourcesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListResourceScanResourcesCommandOutput, Cause.TimeoutException | SdkError | ResourceScanInProgressError | ResourceScanNotFoundError>;
244
+ /**
245
+ * @see {@link ListResourceScansCommand}
246
+ */
247
+ listResourceScans(args: ListResourceScansCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListResourceScansCommandOutput, Cause.TimeoutException | SdkError>;
248
+ /**
249
+ * @see {@link ListStackInstanceResourceDriftsCommand}
250
+ */
251
+ listStackInstanceResourceDrifts(args: ListStackInstanceResourceDriftsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackInstanceResourceDriftsCommandOutput, Cause.TimeoutException | SdkError | OperationNotFoundError | StackInstanceNotFoundError | StackSetNotFoundError>;
252
+ /**
253
+ * @see {@link ListStackInstancesCommand}
254
+ */
255
+ listStackInstances(args: ListStackInstancesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackInstancesCommandOutput, Cause.TimeoutException | SdkError | StackSetNotFoundError>;
256
+ /**
257
+ * @see {@link ListStackRefactorActionsCommand}
258
+ */
259
+ listStackRefactorActions(args: ListStackRefactorActionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackRefactorActionsCommandOutput, Cause.TimeoutException | SdkError>;
260
+ /**
261
+ * @see {@link ListStackRefactorsCommand}
262
+ */
263
+ listStackRefactors(args: ListStackRefactorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackRefactorsCommandOutput, Cause.TimeoutException | SdkError>;
264
+ /**
265
+ * @see {@link ListStackResourcesCommand}
266
+ */
267
+ listStackResources(args: ListStackResourcesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackResourcesCommandOutput, Cause.TimeoutException | SdkError>;
268
+ /**
269
+ * @see {@link ListStackSetAutoDeploymentTargetsCommand}
270
+ */
271
+ listStackSetAutoDeploymentTargets(args: ListStackSetAutoDeploymentTargetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackSetAutoDeploymentTargetsCommandOutput, Cause.TimeoutException | SdkError | StackSetNotFoundError>;
272
+ /**
273
+ * @see {@link ListStackSetOperationResultsCommand}
274
+ */
275
+ listStackSetOperationResults(args: ListStackSetOperationResultsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackSetOperationResultsCommandOutput, Cause.TimeoutException | SdkError | OperationNotFoundError | StackSetNotFoundError>;
276
+ /**
277
+ * @see {@link ListStackSetOperationsCommand}
278
+ */
279
+ listStackSetOperations(args: ListStackSetOperationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackSetOperationsCommandOutput, Cause.TimeoutException | SdkError | StackSetNotFoundError>;
280
+ /**
281
+ * @see {@link ListStackSetsCommand}
282
+ */
283
+ listStackSets(args: ListStackSetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStackSetsCommandOutput, Cause.TimeoutException | SdkError>;
284
+ /**
285
+ * @see {@link ListStacksCommand}
286
+ */
287
+ listStacks(args: ListStacksCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStacksCommandOutput, Cause.TimeoutException | SdkError>;
288
+ /**
289
+ * @see {@link ListTypeRegistrationsCommand}
290
+ */
291
+ listTypeRegistrations(args: ListTypeRegistrationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTypeRegistrationsCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
292
+ /**
293
+ * @see {@link ListTypeVersionsCommand}
294
+ */
295
+ listTypeVersions(args: ListTypeVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTypeVersionsCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
296
+ /**
297
+ * @see {@link ListTypesCommand}
298
+ */
299
+ listTypes(args: ListTypesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTypesCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
300
+ /**
301
+ * @see {@link PublishTypeCommand}
302
+ */
303
+ publishType(args: PublishTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
304
+ /**
305
+ * @see {@link RecordHandlerProgressCommand}
306
+ */
307
+ recordHandlerProgress(args: RecordHandlerProgressCommandInput, options?: HttpHandlerOptions): Effect.Effect<RecordHandlerProgressCommandOutput, Cause.TimeoutException | SdkError | InvalidStateTransitionError | OperationStatusCheckFailedError>;
308
+ /**
309
+ * @see {@link RegisterPublisherCommand}
310
+ */
311
+ registerPublisher(args: RegisterPublisherCommandInput, options?: HttpHandlerOptions): Effect.Effect<RegisterPublisherCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
312
+ /**
313
+ * @see {@link RegisterTypeCommand}
314
+ */
315
+ registerType(args: RegisterTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<RegisterTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError>;
316
+ /**
317
+ * @see {@link RollbackStackCommand}
318
+ */
319
+ rollbackStack(args: RollbackStackCommandInput, options?: HttpHandlerOptions): Effect.Effect<RollbackStackCommandOutput, Cause.TimeoutException | SdkError | TokenAlreadyExistsError>;
320
+ /**
321
+ * @see {@link SetStackPolicyCommand}
322
+ */
323
+ setStackPolicy(args: SetStackPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetStackPolicyCommandOutput, Cause.TimeoutException | SdkError>;
324
+ /**
325
+ * @see {@link SetTypeConfigurationCommand}
326
+ */
327
+ setTypeConfiguration(args: SetTypeConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTypeConfigurationCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
328
+ /**
329
+ * @see {@link SetTypeDefaultVersionCommand}
330
+ */
331
+ setTypeDefaultVersion(args: SetTypeDefaultVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTypeDefaultVersionCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
332
+ /**
333
+ * @see {@link SignalResourceCommand}
334
+ */
335
+ signalResource(args: SignalResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<SignalResourceCommandOutput, Cause.TimeoutException | SdkError>;
336
+ /**
337
+ * @see {@link StartResourceScanCommand}
338
+ */
339
+ startResourceScan(args: StartResourceScanCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartResourceScanCommandOutput, Cause.TimeoutException | SdkError | ResourceScanInProgressError | ResourceScanLimitExceededError>;
340
+ /**
341
+ * @see {@link StopStackSetOperationCommand}
342
+ */
343
+ stopStackSetOperation(args: StopStackSetOperationCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopStackSetOperationCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError | StackSetNotFoundError>;
344
+ /**
345
+ * @see {@link TestTypeCommand}
346
+ */
347
+ testType(args: TestTypeCommandInput, options?: HttpHandlerOptions): Effect.Effect<TestTypeCommandOutput, Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError>;
348
+ /**
349
+ * @see {@link UpdateGeneratedTemplateCommand}
350
+ */
351
+ updateGeneratedTemplate(args: UpdateGeneratedTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGeneratedTemplateCommandOutput, Cause.TimeoutException | SdkError | AlreadyExistsError | GeneratedTemplateNotFoundError | LimitExceededError>;
352
+ /**
353
+ * @see {@link UpdateStackCommand}
354
+ */
355
+ updateStack(args: UpdateStackCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStackCommandOutput, Cause.TimeoutException | SdkError | InsufficientCapabilitiesError | TokenAlreadyExistsError>;
356
+ /**
357
+ * @see {@link UpdateStackInstancesCommand}
358
+ */
359
+ updateStackInstances(args: UpdateStackInstancesCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStackInstancesCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationIdAlreadyExistsError | OperationInProgressError | StackInstanceNotFoundError | StackSetNotFoundError | StaleRequestError>;
360
+ /**
361
+ * @see {@link UpdateStackSetCommand}
362
+ */
363
+ updateStackSet(args: UpdateStackSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStackSetCommandOutput, Cause.TimeoutException | SdkError | InvalidOperationError | OperationIdAlreadyExistsError | OperationInProgressError | StackInstanceNotFoundError | StackSetNotFoundError | StaleRequestError>;
364
+ /**
365
+ * @see {@link UpdateTerminationProtectionCommand}
366
+ */
367
+ updateTerminationProtection(args: UpdateTerminationProtectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateTerminationProtectionCommandOutput, Cause.TimeoutException | SdkError>;
368
+ /**
369
+ * @see {@link ValidateTemplateCommand}
370
+ */
371
+ validateTemplate(args: ValidateTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<ValidateTemplateCommandOutput, Cause.TimeoutException | SdkError>;
372
+ }
373
+ /**
374
+ * @since 1.0.0
375
+ * @category constructors
376
+ */
377
+ export declare const makeCloudFormationService: Effect.Effect<CloudFormationService$, never, Instance.CloudFormationClientInstance>;
378
+ declare const CloudFormationService_base: import("effect/Context").TagClass<CloudFormationService, "@effect-aws/client-cloudformation/CloudFormationService", CloudFormationService$> & Effect.Tag.Proxy<CloudFormationService, CloudFormationService$> & {
379
+ use: <X>(body: (_: CloudFormationService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, CloudFormationService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, CloudFormationService> : Effect.Effect<X, never, CloudFormationService>;
380
+ };
381
+ /**
382
+ * @since 1.0.0
383
+ * @category models
384
+ */
385
+ export declare class CloudFormationService extends CloudFormationService_base {
386
+ static readonly defaultLayer: Layer.Layer<CloudFormationService, never, never>;
387
+ static readonly layer: (config: CloudFormationService.Config) => Layer.Layer<CloudFormationService, never, never>;
388
+ static readonly baseLayer: (evaluate: (defaultConfig: CloudFormationClientConfig) => CloudFormationClient) => Layer.Layer<CloudFormationService, never, never>;
389
+ }
390
+ /**
391
+ * @since 1.0.0
392
+ */
393
+ export declare namespace CloudFormationService {
394
+ /**
395
+ * @since 1.0.0
396
+ */
397
+ interface Config extends Omit<CloudFormationClientConfig, "logger"> {
398
+ readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
399
+ }
400
+ /**
401
+ * @since 1.0.0
402
+ */
403
+ type Type = CloudFormationService$;
404
+ }
405
+ export {};
406
+ //# sourceMappingURL=CloudFormationService.d.ts.map