@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.
- package/CloudFormationClientInstance/package.json +6 -0
- package/CloudFormationService/package.json +6 -0
- package/CloudFormationServiceConfig/package.json +6 -0
- package/Errors/package.json +6 -0
- package/LICENSE +19 -0
- package/README.md +58 -0
- package/dist/cjs/CloudFormationClientInstance.d.ts +24 -0
- package/dist/cjs/CloudFormationClientInstance.d.ts.map +1 -0
- package/dist/cjs/CloudFormationClientInstance.js +50 -0
- package/dist/cjs/CloudFormationClientInstance.js.map +1 -0
- package/dist/cjs/CloudFormationService.d.ts +406 -0
- package/dist/cjs/CloudFormationService.d.ts.map +1 -0
- package/dist/cjs/CloudFormationService.js +149 -0
- package/dist/cjs/CloudFormationService.js.map +1 -0
- package/dist/cjs/CloudFormationServiceConfig.d.ts +25 -0
- package/dist/cjs/CloudFormationServiceConfig.d.ts.map +1 -0
- package/dist/cjs/CloudFormationServiceConfig.js +35 -0
- package/dist/cjs/CloudFormationServiceConfig.js.map +1 -0
- package/dist/cjs/Errors.d.ts +36 -0
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +35 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/index.d.ts +44 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/CloudFormationClientInstance.d.ts +24 -0
- package/dist/dts/CloudFormationClientInstance.d.ts.map +1 -0
- package/dist/dts/CloudFormationService.d.ts +406 -0
- package/dist/dts/CloudFormationService.d.ts.map +1 -0
- package/dist/dts/CloudFormationServiceConfig.d.ts +25 -0
- package/dist/dts/CloudFormationServiceConfig.d.ts.map +1 -0
- package/dist/dts/Errors.d.ts +36 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/index.d.ts +44 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/CloudFormationClientInstance.js +23 -0
- package/dist/esm/CloudFormationClientInstance.js.map +1 -0
- package/dist/esm/CloudFormationService.js +122 -0
- package/dist/esm/CloudFormationService.js.map +1 -0
- package/dist/esm/CloudFormationServiceConfig.js +31 -0
- package/dist/esm/CloudFormationServiceConfig.js.map +1 -0
- package/dist/esm/Errors.js +32 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +71 -0
- package/src/CloudFormationClientInstance.ts +33 -0
- package/src/CloudFormationService.ts +1509 -0
- package/src/CloudFormationServiceConfig.ts +52 -0
- package/src/Errors.ts +95 -0
- package/src/index.ts +50 -0
|
@@ -0,0 +1,1509 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import {
|
|
5
|
+
ActivateOrganizationsAccessCommand,
|
|
6
|
+
type ActivateOrganizationsAccessCommandInput,
|
|
7
|
+
type ActivateOrganizationsAccessCommandOutput,
|
|
8
|
+
ActivateTypeCommand,
|
|
9
|
+
type ActivateTypeCommandInput,
|
|
10
|
+
type ActivateTypeCommandOutput,
|
|
11
|
+
BatchDescribeTypeConfigurationsCommand,
|
|
12
|
+
type BatchDescribeTypeConfigurationsCommandInput,
|
|
13
|
+
type BatchDescribeTypeConfigurationsCommandOutput,
|
|
14
|
+
CancelUpdateStackCommand,
|
|
15
|
+
type CancelUpdateStackCommandInput,
|
|
16
|
+
type CancelUpdateStackCommandOutput,
|
|
17
|
+
type CloudFormationClient,
|
|
18
|
+
type CloudFormationClientConfig,
|
|
19
|
+
ContinueUpdateRollbackCommand,
|
|
20
|
+
type ContinueUpdateRollbackCommandInput,
|
|
21
|
+
type ContinueUpdateRollbackCommandOutput,
|
|
22
|
+
CreateChangeSetCommand,
|
|
23
|
+
type CreateChangeSetCommandInput,
|
|
24
|
+
type CreateChangeSetCommandOutput,
|
|
25
|
+
CreateGeneratedTemplateCommand,
|
|
26
|
+
type CreateGeneratedTemplateCommandInput,
|
|
27
|
+
type CreateGeneratedTemplateCommandOutput,
|
|
28
|
+
CreateStackCommand,
|
|
29
|
+
type CreateStackCommandInput,
|
|
30
|
+
type CreateStackCommandOutput,
|
|
31
|
+
CreateStackInstancesCommand,
|
|
32
|
+
type CreateStackInstancesCommandInput,
|
|
33
|
+
type CreateStackInstancesCommandOutput,
|
|
34
|
+
CreateStackRefactorCommand,
|
|
35
|
+
type CreateStackRefactorCommandInput,
|
|
36
|
+
type CreateStackRefactorCommandOutput,
|
|
37
|
+
CreateStackSetCommand,
|
|
38
|
+
type CreateStackSetCommandInput,
|
|
39
|
+
type CreateStackSetCommandOutput,
|
|
40
|
+
DeactivateOrganizationsAccessCommand,
|
|
41
|
+
type DeactivateOrganizationsAccessCommandInput,
|
|
42
|
+
type DeactivateOrganizationsAccessCommandOutput,
|
|
43
|
+
DeactivateTypeCommand,
|
|
44
|
+
type DeactivateTypeCommandInput,
|
|
45
|
+
type DeactivateTypeCommandOutput,
|
|
46
|
+
DeleteChangeSetCommand,
|
|
47
|
+
type DeleteChangeSetCommandInput,
|
|
48
|
+
type DeleteChangeSetCommandOutput,
|
|
49
|
+
DeleteGeneratedTemplateCommand,
|
|
50
|
+
type DeleteGeneratedTemplateCommandInput,
|
|
51
|
+
type DeleteGeneratedTemplateCommandOutput,
|
|
52
|
+
DeleteStackCommand,
|
|
53
|
+
type DeleteStackCommandInput,
|
|
54
|
+
type DeleteStackCommandOutput,
|
|
55
|
+
DeleteStackInstancesCommand,
|
|
56
|
+
type DeleteStackInstancesCommandInput,
|
|
57
|
+
type DeleteStackInstancesCommandOutput,
|
|
58
|
+
DeleteStackSetCommand,
|
|
59
|
+
type DeleteStackSetCommandInput,
|
|
60
|
+
type DeleteStackSetCommandOutput,
|
|
61
|
+
DeregisterTypeCommand,
|
|
62
|
+
type DeregisterTypeCommandInput,
|
|
63
|
+
type DeregisterTypeCommandOutput,
|
|
64
|
+
DescribeAccountLimitsCommand,
|
|
65
|
+
type DescribeAccountLimitsCommandInput,
|
|
66
|
+
type DescribeAccountLimitsCommandOutput,
|
|
67
|
+
DescribeChangeSetCommand,
|
|
68
|
+
type DescribeChangeSetCommandInput,
|
|
69
|
+
type DescribeChangeSetCommandOutput,
|
|
70
|
+
DescribeChangeSetHooksCommand,
|
|
71
|
+
type DescribeChangeSetHooksCommandInput,
|
|
72
|
+
type DescribeChangeSetHooksCommandOutput,
|
|
73
|
+
DescribeEventsCommand,
|
|
74
|
+
type DescribeEventsCommandInput,
|
|
75
|
+
type DescribeEventsCommandOutput,
|
|
76
|
+
DescribeGeneratedTemplateCommand,
|
|
77
|
+
type DescribeGeneratedTemplateCommandInput,
|
|
78
|
+
type DescribeGeneratedTemplateCommandOutput,
|
|
79
|
+
DescribeOrganizationsAccessCommand,
|
|
80
|
+
type DescribeOrganizationsAccessCommandInput,
|
|
81
|
+
type DescribeOrganizationsAccessCommandOutput,
|
|
82
|
+
DescribePublisherCommand,
|
|
83
|
+
type DescribePublisherCommandInput,
|
|
84
|
+
type DescribePublisherCommandOutput,
|
|
85
|
+
DescribeResourceScanCommand,
|
|
86
|
+
type DescribeResourceScanCommandInput,
|
|
87
|
+
type DescribeResourceScanCommandOutput,
|
|
88
|
+
DescribeStackDriftDetectionStatusCommand,
|
|
89
|
+
type DescribeStackDriftDetectionStatusCommandInput,
|
|
90
|
+
type DescribeStackDriftDetectionStatusCommandOutput,
|
|
91
|
+
DescribeStackEventsCommand,
|
|
92
|
+
type DescribeStackEventsCommandInput,
|
|
93
|
+
type DescribeStackEventsCommandOutput,
|
|
94
|
+
DescribeStackInstanceCommand,
|
|
95
|
+
type DescribeStackInstanceCommandInput,
|
|
96
|
+
type DescribeStackInstanceCommandOutput,
|
|
97
|
+
DescribeStackRefactorCommand,
|
|
98
|
+
type DescribeStackRefactorCommandInput,
|
|
99
|
+
type DescribeStackRefactorCommandOutput,
|
|
100
|
+
DescribeStackResourceCommand,
|
|
101
|
+
type DescribeStackResourceCommandInput,
|
|
102
|
+
type DescribeStackResourceCommandOutput,
|
|
103
|
+
DescribeStackResourceDriftsCommand,
|
|
104
|
+
type DescribeStackResourceDriftsCommandInput,
|
|
105
|
+
type DescribeStackResourceDriftsCommandOutput,
|
|
106
|
+
DescribeStackResourcesCommand,
|
|
107
|
+
type DescribeStackResourcesCommandInput,
|
|
108
|
+
type DescribeStackResourcesCommandOutput,
|
|
109
|
+
DescribeStacksCommand,
|
|
110
|
+
type DescribeStacksCommandInput,
|
|
111
|
+
type DescribeStacksCommandOutput,
|
|
112
|
+
DescribeStackSetCommand,
|
|
113
|
+
type DescribeStackSetCommandInput,
|
|
114
|
+
type DescribeStackSetCommandOutput,
|
|
115
|
+
DescribeStackSetOperationCommand,
|
|
116
|
+
type DescribeStackSetOperationCommandInput,
|
|
117
|
+
type DescribeStackSetOperationCommandOutput,
|
|
118
|
+
DescribeTypeCommand,
|
|
119
|
+
type DescribeTypeCommandInput,
|
|
120
|
+
type DescribeTypeCommandOutput,
|
|
121
|
+
DescribeTypeRegistrationCommand,
|
|
122
|
+
type DescribeTypeRegistrationCommandInput,
|
|
123
|
+
type DescribeTypeRegistrationCommandOutput,
|
|
124
|
+
DetectStackDriftCommand,
|
|
125
|
+
type DetectStackDriftCommandInput,
|
|
126
|
+
type DetectStackDriftCommandOutput,
|
|
127
|
+
DetectStackResourceDriftCommand,
|
|
128
|
+
type DetectStackResourceDriftCommandInput,
|
|
129
|
+
type DetectStackResourceDriftCommandOutput,
|
|
130
|
+
DetectStackSetDriftCommand,
|
|
131
|
+
type DetectStackSetDriftCommandInput,
|
|
132
|
+
type DetectStackSetDriftCommandOutput,
|
|
133
|
+
EstimateTemplateCostCommand,
|
|
134
|
+
type EstimateTemplateCostCommandInput,
|
|
135
|
+
type EstimateTemplateCostCommandOutput,
|
|
136
|
+
ExecuteChangeSetCommand,
|
|
137
|
+
type ExecuteChangeSetCommandInput,
|
|
138
|
+
type ExecuteChangeSetCommandOutput,
|
|
139
|
+
ExecuteStackRefactorCommand,
|
|
140
|
+
type ExecuteStackRefactorCommandInput,
|
|
141
|
+
type ExecuteStackRefactorCommandOutput,
|
|
142
|
+
GetGeneratedTemplateCommand,
|
|
143
|
+
type GetGeneratedTemplateCommandInput,
|
|
144
|
+
type GetGeneratedTemplateCommandOutput,
|
|
145
|
+
GetHookResultCommand,
|
|
146
|
+
type GetHookResultCommandInput,
|
|
147
|
+
type GetHookResultCommandOutput,
|
|
148
|
+
GetStackPolicyCommand,
|
|
149
|
+
type GetStackPolicyCommandInput,
|
|
150
|
+
type GetStackPolicyCommandOutput,
|
|
151
|
+
GetTemplateCommand,
|
|
152
|
+
type GetTemplateCommandInput,
|
|
153
|
+
type GetTemplateCommandOutput,
|
|
154
|
+
GetTemplateSummaryCommand,
|
|
155
|
+
type GetTemplateSummaryCommandInput,
|
|
156
|
+
type GetTemplateSummaryCommandOutput,
|
|
157
|
+
ImportStacksToStackSetCommand,
|
|
158
|
+
type ImportStacksToStackSetCommandInput,
|
|
159
|
+
type ImportStacksToStackSetCommandOutput,
|
|
160
|
+
ListChangeSetsCommand,
|
|
161
|
+
type ListChangeSetsCommandInput,
|
|
162
|
+
type ListChangeSetsCommandOutput,
|
|
163
|
+
ListExportsCommand,
|
|
164
|
+
type ListExportsCommandInput,
|
|
165
|
+
type ListExportsCommandOutput,
|
|
166
|
+
ListGeneratedTemplatesCommand,
|
|
167
|
+
type ListGeneratedTemplatesCommandInput,
|
|
168
|
+
type ListGeneratedTemplatesCommandOutput,
|
|
169
|
+
ListHookResultsCommand,
|
|
170
|
+
type ListHookResultsCommandInput,
|
|
171
|
+
type ListHookResultsCommandOutput,
|
|
172
|
+
ListImportsCommand,
|
|
173
|
+
type ListImportsCommandInput,
|
|
174
|
+
type ListImportsCommandOutput,
|
|
175
|
+
ListResourceScanRelatedResourcesCommand,
|
|
176
|
+
type ListResourceScanRelatedResourcesCommandInput,
|
|
177
|
+
type ListResourceScanRelatedResourcesCommandOutput,
|
|
178
|
+
ListResourceScanResourcesCommand,
|
|
179
|
+
type ListResourceScanResourcesCommandInput,
|
|
180
|
+
type ListResourceScanResourcesCommandOutput,
|
|
181
|
+
ListResourceScansCommand,
|
|
182
|
+
type ListResourceScansCommandInput,
|
|
183
|
+
type ListResourceScansCommandOutput,
|
|
184
|
+
ListStackInstanceResourceDriftsCommand,
|
|
185
|
+
type ListStackInstanceResourceDriftsCommandInput,
|
|
186
|
+
type ListStackInstanceResourceDriftsCommandOutput,
|
|
187
|
+
ListStackInstancesCommand,
|
|
188
|
+
type ListStackInstancesCommandInput,
|
|
189
|
+
type ListStackInstancesCommandOutput,
|
|
190
|
+
ListStackRefactorActionsCommand,
|
|
191
|
+
type ListStackRefactorActionsCommandInput,
|
|
192
|
+
type ListStackRefactorActionsCommandOutput,
|
|
193
|
+
ListStackRefactorsCommand,
|
|
194
|
+
type ListStackRefactorsCommandInput,
|
|
195
|
+
type ListStackRefactorsCommandOutput,
|
|
196
|
+
ListStackResourcesCommand,
|
|
197
|
+
type ListStackResourcesCommandInput,
|
|
198
|
+
type ListStackResourcesCommandOutput,
|
|
199
|
+
ListStacksCommand,
|
|
200
|
+
type ListStacksCommandInput,
|
|
201
|
+
type ListStacksCommandOutput,
|
|
202
|
+
ListStackSetAutoDeploymentTargetsCommand,
|
|
203
|
+
type ListStackSetAutoDeploymentTargetsCommandInput,
|
|
204
|
+
type ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
205
|
+
ListStackSetOperationResultsCommand,
|
|
206
|
+
type ListStackSetOperationResultsCommandInput,
|
|
207
|
+
type ListStackSetOperationResultsCommandOutput,
|
|
208
|
+
ListStackSetOperationsCommand,
|
|
209
|
+
type ListStackSetOperationsCommandInput,
|
|
210
|
+
type ListStackSetOperationsCommandOutput,
|
|
211
|
+
ListStackSetsCommand,
|
|
212
|
+
type ListStackSetsCommandInput,
|
|
213
|
+
type ListStackSetsCommandOutput,
|
|
214
|
+
ListTypeRegistrationsCommand,
|
|
215
|
+
type ListTypeRegistrationsCommandInput,
|
|
216
|
+
type ListTypeRegistrationsCommandOutput,
|
|
217
|
+
ListTypesCommand,
|
|
218
|
+
type ListTypesCommandInput,
|
|
219
|
+
type ListTypesCommandOutput,
|
|
220
|
+
ListTypeVersionsCommand,
|
|
221
|
+
type ListTypeVersionsCommandInput,
|
|
222
|
+
type ListTypeVersionsCommandOutput,
|
|
223
|
+
PublishTypeCommand,
|
|
224
|
+
type PublishTypeCommandInput,
|
|
225
|
+
type PublishTypeCommandOutput,
|
|
226
|
+
RecordHandlerProgressCommand,
|
|
227
|
+
type RecordHandlerProgressCommandInput,
|
|
228
|
+
type RecordHandlerProgressCommandOutput,
|
|
229
|
+
RegisterPublisherCommand,
|
|
230
|
+
type RegisterPublisherCommandInput,
|
|
231
|
+
type RegisterPublisherCommandOutput,
|
|
232
|
+
RegisterTypeCommand,
|
|
233
|
+
type RegisterTypeCommandInput,
|
|
234
|
+
type RegisterTypeCommandOutput,
|
|
235
|
+
RollbackStackCommand,
|
|
236
|
+
type RollbackStackCommandInput,
|
|
237
|
+
type RollbackStackCommandOutput,
|
|
238
|
+
SetStackPolicyCommand,
|
|
239
|
+
type SetStackPolicyCommandInput,
|
|
240
|
+
type SetStackPolicyCommandOutput,
|
|
241
|
+
SetTypeConfigurationCommand,
|
|
242
|
+
type SetTypeConfigurationCommandInput,
|
|
243
|
+
type SetTypeConfigurationCommandOutput,
|
|
244
|
+
SetTypeDefaultVersionCommand,
|
|
245
|
+
type SetTypeDefaultVersionCommandInput,
|
|
246
|
+
type SetTypeDefaultVersionCommandOutput,
|
|
247
|
+
SignalResourceCommand,
|
|
248
|
+
type SignalResourceCommandInput,
|
|
249
|
+
type SignalResourceCommandOutput,
|
|
250
|
+
StartResourceScanCommand,
|
|
251
|
+
type StartResourceScanCommandInput,
|
|
252
|
+
type StartResourceScanCommandOutput,
|
|
253
|
+
StopStackSetOperationCommand,
|
|
254
|
+
type StopStackSetOperationCommandInput,
|
|
255
|
+
type StopStackSetOperationCommandOutput,
|
|
256
|
+
TestTypeCommand,
|
|
257
|
+
type TestTypeCommandInput,
|
|
258
|
+
type TestTypeCommandOutput,
|
|
259
|
+
UpdateGeneratedTemplateCommand,
|
|
260
|
+
type UpdateGeneratedTemplateCommandInput,
|
|
261
|
+
type UpdateGeneratedTemplateCommandOutput,
|
|
262
|
+
UpdateStackCommand,
|
|
263
|
+
type UpdateStackCommandInput,
|
|
264
|
+
type UpdateStackCommandOutput,
|
|
265
|
+
UpdateStackInstancesCommand,
|
|
266
|
+
type UpdateStackInstancesCommandInput,
|
|
267
|
+
type UpdateStackInstancesCommandOutput,
|
|
268
|
+
UpdateStackSetCommand,
|
|
269
|
+
type UpdateStackSetCommandInput,
|
|
270
|
+
type UpdateStackSetCommandOutput,
|
|
271
|
+
UpdateTerminationProtectionCommand,
|
|
272
|
+
type UpdateTerminationProtectionCommandInput,
|
|
273
|
+
type UpdateTerminationProtectionCommandOutput,
|
|
274
|
+
ValidateTemplateCommand,
|
|
275
|
+
type ValidateTemplateCommandInput,
|
|
276
|
+
type ValidateTemplateCommandOutput,
|
|
277
|
+
} from "@aws-sdk/client-cloudformation";
|
|
278
|
+
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
279
|
+
import { Service } from "@effect-aws/commons";
|
|
280
|
+
import type { Cause } from "effect";
|
|
281
|
+
import { Effect, Layer } from "effect";
|
|
282
|
+
import * as Instance from "./CloudFormationClientInstance.js";
|
|
283
|
+
import * as CloudFormationServiceConfig from "./CloudFormationServiceConfig.js";
|
|
284
|
+
import type {
|
|
285
|
+
AlreadyExistsError,
|
|
286
|
+
CFNRegistryError,
|
|
287
|
+
ChangeSetNotFoundError,
|
|
288
|
+
ConcurrentResourcesLimitExceededError,
|
|
289
|
+
CreatedButModifiedError,
|
|
290
|
+
GeneratedTemplateNotFoundError,
|
|
291
|
+
HookResultNotFoundError,
|
|
292
|
+
InsufficientCapabilitiesError,
|
|
293
|
+
InvalidChangeSetStatusError,
|
|
294
|
+
InvalidOperationError,
|
|
295
|
+
InvalidStateTransitionError,
|
|
296
|
+
LimitExceededError,
|
|
297
|
+
NameAlreadyExistsError,
|
|
298
|
+
OperationIdAlreadyExistsError,
|
|
299
|
+
OperationInProgressError,
|
|
300
|
+
OperationNotFoundError,
|
|
301
|
+
OperationStatusCheckFailedError,
|
|
302
|
+
ResourceScanInProgressError,
|
|
303
|
+
ResourceScanLimitExceededError,
|
|
304
|
+
ResourceScanNotFoundError,
|
|
305
|
+
SdkError,
|
|
306
|
+
StackInstanceNotFoundError,
|
|
307
|
+
StackNotFoundError,
|
|
308
|
+
StackRefactorNotFoundError,
|
|
309
|
+
StackSetNotEmptyError,
|
|
310
|
+
StackSetNotFoundError,
|
|
311
|
+
StaleRequestError,
|
|
312
|
+
TokenAlreadyExistsError,
|
|
313
|
+
TypeConfigurationNotFoundError,
|
|
314
|
+
TypeNotFoundError,
|
|
315
|
+
} from "./Errors.js";
|
|
316
|
+
import { AllServiceErrors } from "./Errors.js";
|
|
317
|
+
|
|
318
|
+
const commands = {
|
|
319
|
+
ActivateOrganizationsAccessCommand,
|
|
320
|
+
ActivateTypeCommand,
|
|
321
|
+
BatchDescribeTypeConfigurationsCommand,
|
|
322
|
+
CancelUpdateStackCommand,
|
|
323
|
+
ContinueUpdateRollbackCommand,
|
|
324
|
+
CreateChangeSetCommand,
|
|
325
|
+
CreateGeneratedTemplateCommand,
|
|
326
|
+
CreateStackCommand,
|
|
327
|
+
CreateStackInstancesCommand,
|
|
328
|
+
CreateStackRefactorCommand,
|
|
329
|
+
CreateStackSetCommand,
|
|
330
|
+
DeactivateOrganizationsAccessCommand,
|
|
331
|
+
DeactivateTypeCommand,
|
|
332
|
+
DeleteChangeSetCommand,
|
|
333
|
+
DeleteGeneratedTemplateCommand,
|
|
334
|
+
DeleteStackCommand,
|
|
335
|
+
DeleteStackInstancesCommand,
|
|
336
|
+
DeleteStackSetCommand,
|
|
337
|
+
DeregisterTypeCommand,
|
|
338
|
+
DescribeAccountLimitsCommand,
|
|
339
|
+
DescribeChangeSetCommand,
|
|
340
|
+
DescribeChangeSetHooksCommand,
|
|
341
|
+
DescribeEventsCommand,
|
|
342
|
+
DescribeGeneratedTemplateCommand,
|
|
343
|
+
DescribeOrganizationsAccessCommand,
|
|
344
|
+
DescribePublisherCommand,
|
|
345
|
+
DescribeResourceScanCommand,
|
|
346
|
+
DescribeStackDriftDetectionStatusCommand,
|
|
347
|
+
DescribeStackEventsCommand,
|
|
348
|
+
DescribeStackInstanceCommand,
|
|
349
|
+
DescribeStackRefactorCommand,
|
|
350
|
+
DescribeStackResourceCommand,
|
|
351
|
+
DescribeStackResourceDriftsCommand,
|
|
352
|
+
DescribeStackResourcesCommand,
|
|
353
|
+
DescribeStackSetCommand,
|
|
354
|
+
DescribeStackSetOperationCommand,
|
|
355
|
+
DescribeStacksCommand,
|
|
356
|
+
DescribeTypeCommand,
|
|
357
|
+
DescribeTypeRegistrationCommand,
|
|
358
|
+
DetectStackDriftCommand,
|
|
359
|
+
DetectStackResourceDriftCommand,
|
|
360
|
+
DetectStackSetDriftCommand,
|
|
361
|
+
EstimateTemplateCostCommand,
|
|
362
|
+
ExecuteChangeSetCommand,
|
|
363
|
+
ExecuteStackRefactorCommand,
|
|
364
|
+
GetGeneratedTemplateCommand,
|
|
365
|
+
GetHookResultCommand,
|
|
366
|
+
GetStackPolicyCommand,
|
|
367
|
+
GetTemplateCommand,
|
|
368
|
+
GetTemplateSummaryCommand,
|
|
369
|
+
ImportStacksToStackSetCommand,
|
|
370
|
+
ListChangeSetsCommand,
|
|
371
|
+
ListExportsCommand,
|
|
372
|
+
ListGeneratedTemplatesCommand,
|
|
373
|
+
ListHookResultsCommand,
|
|
374
|
+
ListImportsCommand,
|
|
375
|
+
ListResourceScanRelatedResourcesCommand,
|
|
376
|
+
ListResourceScanResourcesCommand,
|
|
377
|
+
ListResourceScansCommand,
|
|
378
|
+
ListStackInstanceResourceDriftsCommand,
|
|
379
|
+
ListStackInstancesCommand,
|
|
380
|
+
ListStackRefactorActionsCommand,
|
|
381
|
+
ListStackRefactorsCommand,
|
|
382
|
+
ListStackResourcesCommand,
|
|
383
|
+
ListStackSetAutoDeploymentTargetsCommand,
|
|
384
|
+
ListStackSetOperationResultsCommand,
|
|
385
|
+
ListStackSetOperationsCommand,
|
|
386
|
+
ListStackSetsCommand,
|
|
387
|
+
ListStacksCommand,
|
|
388
|
+
ListTypeRegistrationsCommand,
|
|
389
|
+
ListTypeVersionsCommand,
|
|
390
|
+
ListTypesCommand,
|
|
391
|
+
PublishTypeCommand,
|
|
392
|
+
RecordHandlerProgressCommand,
|
|
393
|
+
RegisterPublisherCommand,
|
|
394
|
+
RegisterTypeCommand,
|
|
395
|
+
RollbackStackCommand,
|
|
396
|
+
SetStackPolicyCommand,
|
|
397
|
+
SetTypeConfigurationCommand,
|
|
398
|
+
SetTypeDefaultVersionCommand,
|
|
399
|
+
SignalResourceCommand,
|
|
400
|
+
StartResourceScanCommand,
|
|
401
|
+
StopStackSetOperationCommand,
|
|
402
|
+
TestTypeCommand,
|
|
403
|
+
UpdateGeneratedTemplateCommand,
|
|
404
|
+
UpdateStackCommand,
|
|
405
|
+
UpdateStackInstancesCommand,
|
|
406
|
+
UpdateStackSetCommand,
|
|
407
|
+
UpdateTerminationProtectionCommand,
|
|
408
|
+
ValidateTemplateCommand,
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
interface CloudFormationService$ {
|
|
412
|
+
readonly _: unique symbol;
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* @see {@link ActivateOrganizationsAccessCommand}
|
|
416
|
+
*/
|
|
417
|
+
activateOrganizationsAccess(
|
|
418
|
+
args: ActivateOrganizationsAccessCommandInput,
|
|
419
|
+
options?: HttpHandlerOptions,
|
|
420
|
+
): Effect.Effect<
|
|
421
|
+
ActivateOrganizationsAccessCommandOutput,
|
|
422
|
+
Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError
|
|
423
|
+
>;
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* @see {@link ActivateTypeCommand}
|
|
427
|
+
*/
|
|
428
|
+
activateType(
|
|
429
|
+
args: ActivateTypeCommandInput,
|
|
430
|
+
options?: HttpHandlerOptions,
|
|
431
|
+
): Effect.Effect<
|
|
432
|
+
ActivateTypeCommandOutput,
|
|
433
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
434
|
+
>;
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* @see {@link BatchDescribeTypeConfigurationsCommand}
|
|
438
|
+
*/
|
|
439
|
+
batchDescribeTypeConfigurations(
|
|
440
|
+
args: BatchDescribeTypeConfigurationsCommandInput,
|
|
441
|
+
options?: HttpHandlerOptions,
|
|
442
|
+
): Effect.Effect<
|
|
443
|
+
BatchDescribeTypeConfigurationsCommandOutput,
|
|
444
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeConfigurationNotFoundError
|
|
445
|
+
>;
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* @see {@link CancelUpdateStackCommand}
|
|
449
|
+
*/
|
|
450
|
+
cancelUpdateStack(
|
|
451
|
+
args: CancelUpdateStackCommandInput,
|
|
452
|
+
options?: HttpHandlerOptions,
|
|
453
|
+
): Effect.Effect<
|
|
454
|
+
CancelUpdateStackCommandOutput,
|
|
455
|
+
Cause.TimeoutException | SdkError | TokenAlreadyExistsError
|
|
456
|
+
>;
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* @see {@link ContinueUpdateRollbackCommand}
|
|
460
|
+
*/
|
|
461
|
+
continueUpdateRollback(
|
|
462
|
+
args: ContinueUpdateRollbackCommandInput,
|
|
463
|
+
options?: HttpHandlerOptions,
|
|
464
|
+
): Effect.Effect<
|
|
465
|
+
ContinueUpdateRollbackCommandOutput,
|
|
466
|
+
Cause.TimeoutException | SdkError | TokenAlreadyExistsError
|
|
467
|
+
>;
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* @see {@link CreateChangeSetCommand}
|
|
471
|
+
*/
|
|
472
|
+
createChangeSet(
|
|
473
|
+
args: CreateChangeSetCommandInput,
|
|
474
|
+
options?: HttpHandlerOptions,
|
|
475
|
+
): Effect.Effect<
|
|
476
|
+
CreateChangeSetCommandOutput,
|
|
477
|
+
Cause.TimeoutException | SdkError | AlreadyExistsError | InsufficientCapabilitiesError | LimitExceededError
|
|
478
|
+
>;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* @see {@link CreateGeneratedTemplateCommand}
|
|
482
|
+
*/
|
|
483
|
+
createGeneratedTemplate(
|
|
484
|
+
args: CreateGeneratedTemplateCommandInput,
|
|
485
|
+
options?: HttpHandlerOptions,
|
|
486
|
+
): Effect.Effect<
|
|
487
|
+
CreateGeneratedTemplateCommandOutput,
|
|
488
|
+
Cause.TimeoutException | SdkError | AlreadyExistsError | ConcurrentResourcesLimitExceededError | LimitExceededError
|
|
489
|
+
>;
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* @see {@link CreateStackCommand}
|
|
493
|
+
*/
|
|
494
|
+
createStack(
|
|
495
|
+
args: CreateStackCommandInput,
|
|
496
|
+
options?: HttpHandlerOptions,
|
|
497
|
+
): Effect.Effect<
|
|
498
|
+
CreateStackCommandOutput,
|
|
499
|
+
| Cause.TimeoutException
|
|
500
|
+
| SdkError
|
|
501
|
+
| AlreadyExistsError
|
|
502
|
+
| InsufficientCapabilitiesError
|
|
503
|
+
| LimitExceededError
|
|
504
|
+
| TokenAlreadyExistsError
|
|
505
|
+
>;
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* @see {@link CreateStackInstancesCommand}
|
|
509
|
+
*/
|
|
510
|
+
createStackInstances(
|
|
511
|
+
args: CreateStackInstancesCommandInput,
|
|
512
|
+
options?: HttpHandlerOptions,
|
|
513
|
+
): Effect.Effect<
|
|
514
|
+
CreateStackInstancesCommandOutput,
|
|
515
|
+
| Cause.TimeoutException
|
|
516
|
+
| SdkError
|
|
517
|
+
| InvalidOperationError
|
|
518
|
+
| LimitExceededError
|
|
519
|
+
| OperationIdAlreadyExistsError
|
|
520
|
+
| OperationInProgressError
|
|
521
|
+
| StackSetNotFoundError
|
|
522
|
+
| StaleRequestError
|
|
523
|
+
>;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* @see {@link CreateStackRefactorCommand}
|
|
527
|
+
*/
|
|
528
|
+
createStackRefactor(
|
|
529
|
+
args: CreateStackRefactorCommandInput,
|
|
530
|
+
options?: HttpHandlerOptions,
|
|
531
|
+
): Effect.Effect<
|
|
532
|
+
CreateStackRefactorCommandOutput,
|
|
533
|
+
Cause.TimeoutException | SdkError
|
|
534
|
+
>;
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* @see {@link CreateStackSetCommand}
|
|
538
|
+
*/
|
|
539
|
+
createStackSet(
|
|
540
|
+
args: CreateStackSetCommandInput,
|
|
541
|
+
options?: HttpHandlerOptions,
|
|
542
|
+
): Effect.Effect<
|
|
543
|
+
CreateStackSetCommandOutput,
|
|
544
|
+
Cause.TimeoutException | SdkError | CreatedButModifiedError | LimitExceededError | NameAlreadyExistsError
|
|
545
|
+
>;
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* @see {@link DeactivateOrganizationsAccessCommand}
|
|
549
|
+
*/
|
|
550
|
+
deactivateOrganizationsAccess(
|
|
551
|
+
args: DeactivateOrganizationsAccessCommandInput,
|
|
552
|
+
options?: HttpHandlerOptions,
|
|
553
|
+
): Effect.Effect<
|
|
554
|
+
DeactivateOrganizationsAccessCommandOutput,
|
|
555
|
+
Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError
|
|
556
|
+
>;
|
|
557
|
+
|
|
558
|
+
/**
|
|
559
|
+
* @see {@link DeactivateTypeCommand}
|
|
560
|
+
*/
|
|
561
|
+
deactivateType(
|
|
562
|
+
args: DeactivateTypeCommandInput,
|
|
563
|
+
options?: HttpHandlerOptions,
|
|
564
|
+
): Effect.Effect<
|
|
565
|
+
DeactivateTypeCommandOutput,
|
|
566
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
567
|
+
>;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* @see {@link DeleteChangeSetCommand}
|
|
571
|
+
*/
|
|
572
|
+
deleteChangeSet(
|
|
573
|
+
args: DeleteChangeSetCommandInput,
|
|
574
|
+
options?: HttpHandlerOptions,
|
|
575
|
+
): Effect.Effect<
|
|
576
|
+
DeleteChangeSetCommandOutput,
|
|
577
|
+
Cause.TimeoutException | SdkError | InvalidChangeSetStatusError
|
|
578
|
+
>;
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* @see {@link DeleteGeneratedTemplateCommand}
|
|
582
|
+
*/
|
|
583
|
+
deleteGeneratedTemplate(
|
|
584
|
+
args: DeleteGeneratedTemplateCommandInput,
|
|
585
|
+
options?: HttpHandlerOptions,
|
|
586
|
+
): Effect.Effect<
|
|
587
|
+
DeleteGeneratedTemplateCommandOutput,
|
|
588
|
+
Cause.TimeoutException | SdkError | ConcurrentResourcesLimitExceededError | GeneratedTemplateNotFoundError
|
|
589
|
+
>;
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* @see {@link DeleteStackCommand}
|
|
593
|
+
*/
|
|
594
|
+
deleteStack(
|
|
595
|
+
args: DeleteStackCommandInput,
|
|
596
|
+
options?: HttpHandlerOptions,
|
|
597
|
+
): Effect.Effect<
|
|
598
|
+
DeleteStackCommandOutput,
|
|
599
|
+
Cause.TimeoutException | SdkError | TokenAlreadyExistsError
|
|
600
|
+
>;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* @see {@link DeleteStackInstancesCommand}
|
|
604
|
+
*/
|
|
605
|
+
deleteStackInstances(
|
|
606
|
+
args: DeleteStackInstancesCommandInput,
|
|
607
|
+
options?: HttpHandlerOptions,
|
|
608
|
+
): Effect.Effect<
|
|
609
|
+
DeleteStackInstancesCommandOutput,
|
|
610
|
+
| Cause.TimeoutException
|
|
611
|
+
| SdkError
|
|
612
|
+
| InvalidOperationError
|
|
613
|
+
| OperationIdAlreadyExistsError
|
|
614
|
+
| OperationInProgressError
|
|
615
|
+
| StackSetNotFoundError
|
|
616
|
+
| StaleRequestError
|
|
617
|
+
>;
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* @see {@link DeleteStackSetCommand}
|
|
621
|
+
*/
|
|
622
|
+
deleteStackSet(
|
|
623
|
+
args: DeleteStackSetCommandInput,
|
|
624
|
+
options?: HttpHandlerOptions,
|
|
625
|
+
): Effect.Effect<
|
|
626
|
+
DeleteStackSetCommandOutput,
|
|
627
|
+
Cause.TimeoutException | SdkError | OperationInProgressError | StackSetNotEmptyError
|
|
628
|
+
>;
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* @see {@link DeregisterTypeCommand}
|
|
632
|
+
*/
|
|
633
|
+
deregisterType(
|
|
634
|
+
args: DeregisterTypeCommandInput,
|
|
635
|
+
options?: HttpHandlerOptions,
|
|
636
|
+
): Effect.Effect<
|
|
637
|
+
DeregisterTypeCommandOutput,
|
|
638
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
639
|
+
>;
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* @see {@link DescribeAccountLimitsCommand}
|
|
643
|
+
*/
|
|
644
|
+
describeAccountLimits(
|
|
645
|
+
args: DescribeAccountLimitsCommandInput,
|
|
646
|
+
options?: HttpHandlerOptions,
|
|
647
|
+
): Effect.Effect<
|
|
648
|
+
DescribeAccountLimitsCommandOutput,
|
|
649
|
+
Cause.TimeoutException | SdkError
|
|
650
|
+
>;
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* @see {@link DescribeChangeSetCommand}
|
|
654
|
+
*/
|
|
655
|
+
describeChangeSet(
|
|
656
|
+
args: DescribeChangeSetCommandInput,
|
|
657
|
+
options?: HttpHandlerOptions,
|
|
658
|
+
): Effect.Effect<
|
|
659
|
+
DescribeChangeSetCommandOutput,
|
|
660
|
+
Cause.TimeoutException | SdkError | ChangeSetNotFoundError
|
|
661
|
+
>;
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* @see {@link DescribeChangeSetHooksCommand}
|
|
665
|
+
*/
|
|
666
|
+
describeChangeSetHooks(
|
|
667
|
+
args: DescribeChangeSetHooksCommandInput,
|
|
668
|
+
options?: HttpHandlerOptions,
|
|
669
|
+
): Effect.Effect<
|
|
670
|
+
DescribeChangeSetHooksCommandOutput,
|
|
671
|
+
Cause.TimeoutException | SdkError | ChangeSetNotFoundError
|
|
672
|
+
>;
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* @see {@link DescribeEventsCommand}
|
|
676
|
+
*/
|
|
677
|
+
describeEvents(
|
|
678
|
+
args: DescribeEventsCommandInput,
|
|
679
|
+
options?: HttpHandlerOptions,
|
|
680
|
+
): Effect.Effect<
|
|
681
|
+
DescribeEventsCommandOutput,
|
|
682
|
+
Cause.TimeoutException | SdkError
|
|
683
|
+
>;
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* @see {@link DescribeGeneratedTemplateCommand}
|
|
687
|
+
*/
|
|
688
|
+
describeGeneratedTemplate(
|
|
689
|
+
args: DescribeGeneratedTemplateCommandInput,
|
|
690
|
+
options?: HttpHandlerOptions,
|
|
691
|
+
): Effect.Effect<
|
|
692
|
+
DescribeGeneratedTemplateCommandOutput,
|
|
693
|
+
Cause.TimeoutException | SdkError | GeneratedTemplateNotFoundError
|
|
694
|
+
>;
|
|
695
|
+
|
|
696
|
+
/**
|
|
697
|
+
* @see {@link DescribeOrganizationsAccessCommand}
|
|
698
|
+
*/
|
|
699
|
+
describeOrganizationsAccess(
|
|
700
|
+
args: DescribeOrganizationsAccessCommandInput,
|
|
701
|
+
options?: HttpHandlerOptions,
|
|
702
|
+
): Effect.Effect<
|
|
703
|
+
DescribeOrganizationsAccessCommandOutput,
|
|
704
|
+
Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError
|
|
705
|
+
>;
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
* @see {@link DescribePublisherCommand}
|
|
709
|
+
*/
|
|
710
|
+
describePublisher(
|
|
711
|
+
args: DescribePublisherCommandInput,
|
|
712
|
+
options?: HttpHandlerOptions,
|
|
713
|
+
): Effect.Effect<
|
|
714
|
+
DescribePublisherCommandOutput,
|
|
715
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
716
|
+
>;
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* @see {@link DescribeResourceScanCommand}
|
|
720
|
+
*/
|
|
721
|
+
describeResourceScan(
|
|
722
|
+
args: DescribeResourceScanCommandInput,
|
|
723
|
+
options?: HttpHandlerOptions,
|
|
724
|
+
): Effect.Effect<
|
|
725
|
+
DescribeResourceScanCommandOutput,
|
|
726
|
+
Cause.TimeoutException | SdkError | ResourceScanNotFoundError
|
|
727
|
+
>;
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* @see {@link DescribeStackDriftDetectionStatusCommand}
|
|
731
|
+
*/
|
|
732
|
+
describeStackDriftDetectionStatus(
|
|
733
|
+
args: DescribeStackDriftDetectionStatusCommandInput,
|
|
734
|
+
options?: HttpHandlerOptions,
|
|
735
|
+
): Effect.Effect<
|
|
736
|
+
DescribeStackDriftDetectionStatusCommandOutput,
|
|
737
|
+
Cause.TimeoutException | SdkError
|
|
738
|
+
>;
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* @see {@link DescribeStackEventsCommand}
|
|
742
|
+
*/
|
|
743
|
+
describeStackEvents(
|
|
744
|
+
args: DescribeStackEventsCommandInput,
|
|
745
|
+
options?: HttpHandlerOptions,
|
|
746
|
+
): Effect.Effect<
|
|
747
|
+
DescribeStackEventsCommandOutput,
|
|
748
|
+
Cause.TimeoutException | SdkError
|
|
749
|
+
>;
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* @see {@link DescribeStackInstanceCommand}
|
|
753
|
+
*/
|
|
754
|
+
describeStackInstance(
|
|
755
|
+
args: DescribeStackInstanceCommandInput,
|
|
756
|
+
options?: HttpHandlerOptions,
|
|
757
|
+
): Effect.Effect<
|
|
758
|
+
DescribeStackInstanceCommandOutput,
|
|
759
|
+
Cause.TimeoutException | SdkError | StackInstanceNotFoundError | StackSetNotFoundError
|
|
760
|
+
>;
|
|
761
|
+
|
|
762
|
+
/**
|
|
763
|
+
* @see {@link DescribeStackRefactorCommand}
|
|
764
|
+
*/
|
|
765
|
+
describeStackRefactor(
|
|
766
|
+
args: DescribeStackRefactorCommandInput,
|
|
767
|
+
options?: HttpHandlerOptions,
|
|
768
|
+
): Effect.Effect<
|
|
769
|
+
DescribeStackRefactorCommandOutput,
|
|
770
|
+
Cause.TimeoutException | SdkError | StackRefactorNotFoundError
|
|
771
|
+
>;
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* @see {@link DescribeStackResourceCommand}
|
|
775
|
+
*/
|
|
776
|
+
describeStackResource(
|
|
777
|
+
args: DescribeStackResourceCommandInput,
|
|
778
|
+
options?: HttpHandlerOptions,
|
|
779
|
+
): Effect.Effect<
|
|
780
|
+
DescribeStackResourceCommandOutput,
|
|
781
|
+
Cause.TimeoutException | SdkError
|
|
782
|
+
>;
|
|
783
|
+
|
|
784
|
+
/**
|
|
785
|
+
* @see {@link DescribeStackResourceDriftsCommand}
|
|
786
|
+
*/
|
|
787
|
+
describeStackResourceDrifts(
|
|
788
|
+
args: DescribeStackResourceDriftsCommandInput,
|
|
789
|
+
options?: HttpHandlerOptions,
|
|
790
|
+
): Effect.Effect<
|
|
791
|
+
DescribeStackResourceDriftsCommandOutput,
|
|
792
|
+
Cause.TimeoutException | SdkError
|
|
793
|
+
>;
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* @see {@link DescribeStackResourcesCommand}
|
|
797
|
+
*/
|
|
798
|
+
describeStackResources(
|
|
799
|
+
args: DescribeStackResourcesCommandInput,
|
|
800
|
+
options?: HttpHandlerOptions,
|
|
801
|
+
): Effect.Effect<
|
|
802
|
+
DescribeStackResourcesCommandOutput,
|
|
803
|
+
Cause.TimeoutException | SdkError
|
|
804
|
+
>;
|
|
805
|
+
|
|
806
|
+
/**
|
|
807
|
+
* @see {@link DescribeStackSetCommand}
|
|
808
|
+
*/
|
|
809
|
+
describeStackSet(
|
|
810
|
+
args: DescribeStackSetCommandInput,
|
|
811
|
+
options?: HttpHandlerOptions,
|
|
812
|
+
): Effect.Effect<
|
|
813
|
+
DescribeStackSetCommandOutput,
|
|
814
|
+
Cause.TimeoutException | SdkError | StackSetNotFoundError
|
|
815
|
+
>;
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* @see {@link DescribeStackSetOperationCommand}
|
|
819
|
+
*/
|
|
820
|
+
describeStackSetOperation(
|
|
821
|
+
args: DescribeStackSetOperationCommandInput,
|
|
822
|
+
options?: HttpHandlerOptions,
|
|
823
|
+
): Effect.Effect<
|
|
824
|
+
DescribeStackSetOperationCommandOutput,
|
|
825
|
+
Cause.TimeoutException | SdkError | OperationNotFoundError | StackSetNotFoundError
|
|
826
|
+
>;
|
|
827
|
+
|
|
828
|
+
/**
|
|
829
|
+
* @see {@link DescribeStacksCommand}
|
|
830
|
+
*/
|
|
831
|
+
describeStacks(
|
|
832
|
+
args: DescribeStacksCommandInput,
|
|
833
|
+
options?: HttpHandlerOptions,
|
|
834
|
+
): Effect.Effect<
|
|
835
|
+
DescribeStacksCommandOutput,
|
|
836
|
+
Cause.TimeoutException | SdkError
|
|
837
|
+
>;
|
|
838
|
+
|
|
839
|
+
/**
|
|
840
|
+
* @see {@link DescribeTypeCommand}
|
|
841
|
+
*/
|
|
842
|
+
describeType(
|
|
843
|
+
args: DescribeTypeCommandInput,
|
|
844
|
+
options?: HttpHandlerOptions,
|
|
845
|
+
): Effect.Effect<
|
|
846
|
+
DescribeTypeCommandOutput,
|
|
847
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
848
|
+
>;
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* @see {@link DescribeTypeRegistrationCommand}
|
|
852
|
+
*/
|
|
853
|
+
describeTypeRegistration(
|
|
854
|
+
args: DescribeTypeRegistrationCommandInput,
|
|
855
|
+
options?: HttpHandlerOptions,
|
|
856
|
+
): Effect.Effect<
|
|
857
|
+
DescribeTypeRegistrationCommandOutput,
|
|
858
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
859
|
+
>;
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* @see {@link DetectStackDriftCommand}
|
|
863
|
+
*/
|
|
864
|
+
detectStackDrift(
|
|
865
|
+
args: DetectStackDriftCommandInput,
|
|
866
|
+
options?: HttpHandlerOptions,
|
|
867
|
+
): Effect.Effect<
|
|
868
|
+
DetectStackDriftCommandOutput,
|
|
869
|
+
Cause.TimeoutException | SdkError
|
|
870
|
+
>;
|
|
871
|
+
|
|
872
|
+
/**
|
|
873
|
+
* @see {@link DetectStackResourceDriftCommand}
|
|
874
|
+
*/
|
|
875
|
+
detectStackResourceDrift(
|
|
876
|
+
args: DetectStackResourceDriftCommandInput,
|
|
877
|
+
options?: HttpHandlerOptions,
|
|
878
|
+
): Effect.Effect<
|
|
879
|
+
DetectStackResourceDriftCommandOutput,
|
|
880
|
+
Cause.TimeoutException | SdkError
|
|
881
|
+
>;
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* @see {@link DetectStackSetDriftCommand}
|
|
885
|
+
*/
|
|
886
|
+
detectStackSetDrift(
|
|
887
|
+
args: DetectStackSetDriftCommandInput,
|
|
888
|
+
options?: HttpHandlerOptions,
|
|
889
|
+
): Effect.Effect<
|
|
890
|
+
DetectStackSetDriftCommandOutput,
|
|
891
|
+
Cause.TimeoutException | SdkError | InvalidOperationError | OperationInProgressError | StackSetNotFoundError
|
|
892
|
+
>;
|
|
893
|
+
|
|
894
|
+
/**
|
|
895
|
+
* @see {@link EstimateTemplateCostCommand}
|
|
896
|
+
*/
|
|
897
|
+
estimateTemplateCost(
|
|
898
|
+
args: EstimateTemplateCostCommandInput,
|
|
899
|
+
options?: HttpHandlerOptions,
|
|
900
|
+
): Effect.Effect<
|
|
901
|
+
EstimateTemplateCostCommandOutput,
|
|
902
|
+
Cause.TimeoutException | SdkError
|
|
903
|
+
>;
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* @see {@link ExecuteChangeSetCommand}
|
|
907
|
+
*/
|
|
908
|
+
executeChangeSet(
|
|
909
|
+
args: ExecuteChangeSetCommandInput,
|
|
910
|
+
options?: HttpHandlerOptions,
|
|
911
|
+
): Effect.Effect<
|
|
912
|
+
ExecuteChangeSetCommandOutput,
|
|
913
|
+
| Cause.TimeoutException
|
|
914
|
+
| SdkError
|
|
915
|
+
| ChangeSetNotFoundError
|
|
916
|
+
| InsufficientCapabilitiesError
|
|
917
|
+
| InvalidChangeSetStatusError
|
|
918
|
+
| TokenAlreadyExistsError
|
|
919
|
+
>;
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* @see {@link ExecuteStackRefactorCommand}
|
|
923
|
+
*/
|
|
924
|
+
executeStackRefactor(
|
|
925
|
+
args: ExecuteStackRefactorCommandInput,
|
|
926
|
+
options?: HttpHandlerOptions,
|
|
927
|
+
): Effect.Effect<
|
|
928
|
+
ExecuteStackRefactorCommandOutput,
|
|
929
|
+
Cause.TimeoutException | SdkError
|
|
930
|
+
>;
|
|
931
|
+
|
|
932
|
+
/**
|
|
933
|
+
* @see {@link GetGeneratedTemplateCommand}
|
|
934
|
+
*/
|
|
935
|
+
getGeneratedTemplate(
|
|
936
|
+
args: GetGeneratedTemplateCommandInput,
|
|
937
|
+
options?: HttpHandlerOptions,
|
|
938
|
+
): Effect.Effect<
|
|
939
|
+
GetGeneratedTemplateCommandOutput,
|
|
940
|
+
Cause.TimeoutException | SdkError | GeneratedTemplateNotFoundError
|
|
941
|
+
>;
|
|
942
|
+
|
|
943
|
+
/**
|
|
944
|
+
* @see {@link GetHookResultCommand}
|
|
945
|
+
*/
|
|
946
|
+
getHookResult(
|
|
947
|
+
args: GetHookResultCommandInput,
|
|
948
|
+
options?: HttpHandlerOptions,
|
|
949
|
+
): Effect.Effect<
|
|
950
|
+
GetHookResultCommandOutput,
|
|
951
|
+
Cause.TimeoutException | SdkError | HookResultNotFoundError
|
|
952
|
+
>;
|
|
953
|
+
|
|
954
|
+
/**
|
|
955
|
+
* @see {@link GetStackPolicyCommand}
|
|
956
|
+
*/
|
|
957
|
+
getStackPolicy(
|
|
958
|
+
args: GetStackPolicyCommandInput,
|
|
959
|
+
options?: HttpHandlerOptions,
|
|
960
|
+
): Effect.Effect<
|
|
961
|
+
GetStackPolicyCommandOutput,
|
|
962
|
+
Cause.TimeoutException | SdkError
|
|
963
|
+
>;
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* @see {@link GetTemplateCommand}
|
|
967
|
+
*/
|
|
968
|
+
getTemplate(
|
|
969
|
+
args: GetTemplateCommandInput,
|
|
970
|
+
options?: HttpHandlerOptions,
|
|
971
|
+
): Effect.Effect<
|
|
972
|
+
GetTemplateCommandOutput,
|
|
973
|
+
Cause.TimeoutException | SdkError | ChangeSetNotFoundError
|
|
974
|
+
>;
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* @see {@link GetTemplateSummaryCommand}
|
|
978
|
+
*/
|
|
979
|
+
getTemplateSummary(
|
|
980
|
+
args: GetTemplateSummaryCommandInput,
|
|
981
|
+
options?: HttpHandlerOptions,
|
|
982
|
+
): Effect.Effect<
|
|
983
|
+
GetTemplateSummaryCommandOutput,
|
|
984
|
+
Cause.TimeoutException | SdkError | StackSetNotFoundError
|
|
985
|
+
>;
|
|
986
|
+
|
|
987
|
+
/**
|
|
988
|
+
* @see {@link ImportStacksToStackSetCommand}
|
|
989
|
+
*/
|
|
990
|
+
importStacksToStackSet(
|
|
991
|
+
args: ImportStacksToStackSetCommandInput,
|
|
992
|
+
options?: HttpHandlerOptions,
|
|
993
|
+
): Effect.Effect<
|
|
994
|
+
ImportStacksToStackSetCommandOutput,
|
|
995
|
+
| Cause.TimeoutException
|
|
996
|
+
| SdkError
|
|
997
|
+
| InvalidOperationError
|
|
998
|
+
| LimitExceededError
|
|
999
|
+
| OperationIdAlreadyExistsError
|
|
1000
|
+
| OperationInProgressError
|
|
1001
|
+
| StackNotFoundError
|
|
1002
|
+
| StackSetNotFoundError
|
|
1003
|
+
| StaleRequestError
|
|
1004
|
+
>;
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* @see {@link ListChangeSetsCommand}
|
|
1008
|
+
*/
|
|
1009
|
+
listChangeSets(
|
|
1010
|
+
args: ListChangeSetsCommandInput,
|
|
1011
|
+
options?: HttpHandlerOptions,
|
|
1012
|
+
): Effect.Effect<
|
|
1013
|
+
ListChangeSetsCommandOutput,
|
|
1014
|
+
Cause.TimeoutException | SdkError
|
|
1015
|
+
>;
|
|
1016
|
+
|
|
1017
|
+
/**
|
|
1018
|
+
* @see {@link ListExportsCommand}
|
|
1019
|
+
*/
|
|
1020
|
+
listExports(
|
|
1021
|
+
args: ListExportsCommandInput,
|
|
1022
|
+
options?: HttpHandlerOptions,
|
|
1023
|
+
): Effect.Effect<
|
|
1024
|
+
ListExportsCommandOutput,
|
|
1025
|
+
Cause.TimeoutException | SdkError
|
|
1026
|
+
>;
|
|
1027
|
+
|
|
1028
|
+
/**
|
|
1029
|
+
* @see {@link ListGeneratedTemplatesCommand}
|
|
1030
|
+
*/
|
|
1031
|
+
listGeneratedTemplates(
|
|
1032
|
+
args: ListGeneratedTemplatesCommandInput,
|
|
1033
|
+
options?: HttpHandlerOptions,
|
|
1034
|
+
): Effect.Effect<
|
|
1035
|
+
ListGeneratedTemplatesCommandOutput,
|
|
1036
|
+
Cause.TimeoutException | SdkError
|
|
1037
|
+
>;
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* @see {@link ListHookResultsCommand}
|
|
1041
|
+
*/
|
|
1042
|
+
listHookResults(
|
|
1043
|
+
args: ListHookResultsCommandInput,
|
|
1044
|
+
options?: HttpHandlerOptions,
|
|
1045
|
+
): Effect.Effect<
|
|
1046
|
+
ListHookResultsCommandOutput,
|
|
1047
|
+
Cause.TimeoutException | SdkError | HookResultNotFoundError
|
|
1048
|
+
>;
|
|
1049
|
+
|
|
1050
|
+
/**
|
|
1051
|
+
* @see {@link ListImportsCommand}
|
|
1052
|
+
*/
|
|
1053
|
+
listImports(
|
|
1054
|
+
args: ListImportsCommandInput,
|
|
1055
|
+
options?: HttpHandlerOptions,
|
|
1056
|
+
): Effect.Effect<
|
|
1057
|
+
ListImportsCommandOutput,
|
|
1058
|
+
Cause.TimeoutException | SdkError
|
|
1059
|
+
>;
|
|
1060
|
+
|
|
1061
|
+
/**
|
|
1062
|
+
* @see {@link ListResourceScanRelatedResourcesCommand}
|
|
1063
|
+
*/
|
|
1064
|
+
listResourceScanRelatedResources(
|
|
1065
|
+
args: ListResourceScanRelatedResourcesCommandInput,
|
|
1066
|
+
options?: HttpHandlerOptions,
|
|
1067
|
+
): Effect.Effect<
|
|
1068
|
+
ListResourceScanRelatedResourcesCommandOutput,
|
|
1069
|
+
Cause.TimeoutException | SdkError | ResourceScanInProgressError | ResourceScanNotFoundError
|
|
1070
|
+
>;
|
|
1071
|
+
|
|
1072
|
+
/**
|
|
1073
|
+
* @see {@link ListResourceScanResourcesCommand}
|
|
1074
|
+
*/
|
|
1075
|
+
listResourceScanResources(
|
|
1076
|
+
args: ListResourceScanResourcesCommandInput,
|
|
1077
|
+
options?: HttpHandlerOptions,
|
|
1078
|
+
): Effect.Effect<
|
|
1079
|
+
ListResourceScanResourcesCommandOutput,
|
|
1080
|
+
Cause.TimeoutException | SdkError | ResourceScanInProgressError | ResourceScanNotFoundError
|
|
1081
|
+
>;
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* @see {@link ListResourceScansCommand}
|
|
1085
|
+
*/
|
|
1086
|
+
listResourceScans(
|
|
1087
|
+
args: ListResourceScansCommandInput,
|
|
1088
|
+
options?: HttpHandlerOptions,
|
|
1089
|
+
): Effect.Effect<
|
|
1090
|
+
ListResourceScansCommandOutput,
|
|
1091
|
+
Cause.TimeoutException | SdkError
|
|
1092
|
+
>;
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* @see {@link ListStackInstanceResourceDriftsCommand}
|
|
1096
|
+
*/
|
|
1097
|
+
listStackInstanceResourceDrifts(
|
|
1098
|
+
args: ListStackInstanceResourceDriftsCommandInput,
|
|
1099
|
+
options?: HttpHandlerOptions,
|
|
1100
|
+
): Effect.Effect<
|
|
1101
|
+
ListStackInstanceResourceDriftsCommandOutput,
|
|
1102
|
+
Cause.TimeoutException | SdkError | OperationNotFoundError | StackInstanceNotFoundError | StackSetNotFoundError
|
|
1103
|
+
>;
|
|
1104
|
+
|
|
1105
|
+
/**
|
|
1106
|
+
* @see {@link ListStackInstancesCommand}
|
|
1107
|
+
*/
|
|
1108
|
+
listStackInstances(
|
|
1109
|
+
args: ListStackInstancesCommandInput,
|
|
1110
|
+
options?: HttpHandlerOptions,
|
|
1111
|
+
): Effect.Effect<
|
|
1112
|
+
ListStackInstancesCommandOutput,
|
|
1113
|
+
Cause.TimeoutException | SdkError | StackSetNotFoundError
|
|
1114
|
+
>;
|
|
1115
|
+
|
|
1116
|
+
/**
|
|
1117
|
+
* @see {@link ListStackRefactorActionsCommand}
|
|
1118
|
+
*/
|
|
1119
|
+
listStackRefactorActions(
|
|
1120
|
+
args: ListStackRefactorActionsCommandInput,
|
|
1121
|
+
options?: HttpHandlerOptions,
|
|
1122
|
+
): Effect.Effect<
|
|
1123
|
+
ListStackRefactorActionsCommandOutput,
|
|
1124
|
+
Cause.TimeoutException | SdkError
|
|
1125
|
+
>;
|
|
1126
|
+
|
|
1127
|
+
/**
|
|
1128
|
+
* @see {@link ListStackRefactorsCommand}
|
|
1129
|
+
*/
|
|
1130
|
+
listStackRefactors(
|
|
1131
|
+
args: ListStackRefactorsCommandInput,
|
|
1132
|
+
options?: HttpHandlerOptions,
|
|
1133
|
+
): Effect.Effect<
|
|
1134
|
+
ListStackRefactorsCommandOutput,
|
|
1135
|
+
Cause.TimeoutException | SdkError
|
|
1136
|
+
>;
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* @see {@link ListStackResourcesCommand}
|
|
1140
|
+
*/
|
|
1141
|
+
listStackResources(
|
|
1142
|
+
args: ListStackResourcesCommandInput,
|
|
1143
|
+
options?: HttpHandlerOptions,
|
|
1144
|
+
): Effect.Effect<
|
|
1145
|
+
ListStackResourcesCommandOutput,
|
|
1146
|
+
Cause.TimeoutException | SdkError
|
|
1147
|
+
>;
|
|
1148
|
+
|
|
1149
|
+
/**
|
|
1150
|
+
* @see {@link ListStackSetAutoDeploymentTargetsCommand}
|
|
1151
|
+
*/
|
|
1152
|
+
listStackSetAutoDeploymentTargets(
|
|
1153
|
+
args: ListStackSetAutoDeploymentTargetsCommandInput,
|
|
1154
|
+
options?: HttpHandlerOptions,
|
|
1155
|
+
): Effect.Effect<
|
|
1156
|
+
ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
1157
|
+
Cause.TimeoutException | SdkError | StackSetNotFoundError
|
|
1158
|
+
>;
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* @see {@link ListStackSetOperationResultsCommand}
|
|
1162
|
+
*/
|
|
1163
|
+
listStackSetOperationResults(
|
|
1164
|
+
args: ListStackSetOperationResultsCommandInput,
|
|
1165
|
+
options?: HttpHandlerOptions,
|
|
1166
|
+
): Effect.Effect<
|
|
1167
|
+
ListStackSetOperationResultsCommandOutput,
|
|
1168
|
+
Cause.TimeoutException | SdkError | OperationNotFoundError | StackSetNotFoundError
|
|
1169
|
+
>;
|
|
1170
|
+
|
|
1171
|
+
/**
|
|
1172
|
+
* @see {@link ListStackSetOperationsCommand}
|
|
1173
|
+
*/
|
|
1174
|
+
listStackSetOperations(
|
|
1175
|
+
args: ListStackSetOperationsCommandInput,
|
|
1176
|
+
options?: HttpHandlerOptions,
|
|
1177
|
+
): Effect.Effect<
|
|
1178
|
+
ListStackSetOperationsCommandOutput,
|
|
1179
|
+
Cause.TimeoutException | SdkError | StackSetNotFoundError
|
|
1180
|
+
>;
|
|
1181
|
+
|
|
1182
|
+
/**
|
|
1183
|
+
* @see {@link ListStackSetsCommand}
|
|
1184
|
+
*/
|
|
1185
|
+
listStackSets(
|
|
1186
|
+
args: ListStackSetsCommandInput,
|
|
1187
|
+
options?: HttpHandlerOptions,
|
|
1188
|
+
): Effect.Effect<
|
|
1189
|
+
ListStackSetsCommandOutput,
|
|
1190
|
+
Cause.TimeoutException | SdkError
|
|
1191
|
+
>;
|
|
1192
|
+
|
|
1193
|
+
/**
|
|
1194
|
+
* @see {@link ListStacksCommand}
|
|
1195
|
+
*/
|
|
1196
|
+
listStacks(
|
|
1197
|
+
args: ListStacksCommandInput,
|
|
1198
|
+
options?: HttpHandlerOptions,
|
|
1199
|
+
): Effect.Effect<
|
|
1200
|
+
ListStacksCommandOutput,
|
|
1201
|
+
Cause.TimeoutException | SdkError
|
|
1202
|
+
>;
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* @see {@link ListTypeRegistrationsCommand}
|
|
1206
|
+
*/
|
|
1207
|
+
listTypeRegistrations(
|
|
1208
|
+
args: ListTypeRegistrationsCommandInput,
|
|
1209
|
+
options?: HttpHandlerOptions,
|
|
1210
|
+
): Effect.Effect<
|
|
1211
|
+
ListTypeRegistrationsCommandOutput,
|
|
1212
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
1213
|
+
>;
|
|
1214
|
+
|
|
1215
|
+
/**
|
|
1216
|
+
* @see {@link ListTypeVersionsCommand}
|
|
1217
|
+
*/
|
|
1218
|
+
listTypeVersions(
|
|
1219
|
+
args: ListTypeVersionsCommandInput,
|
|
1220
|
+
options?: HttpHandlerOptions,
|
|
1221
|
+
): Effect.Effect<
|
|
1222
|
+
ListTypeVersionsCommandOutput,
|
|
1223
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
1224
|
+
>;
|
|
1225
|
+
|
|
1226
|
+
/**
|
|
1227
|
+
* @see {@link ListTypesCommand}
|
|
1228
|
+
*/
|
|
1229
|
+
listTypes(
|
|
1230
|
+
args: ListTypesCommandInput,
|
|
1231
|
+
options?: HttpHandlerOptions,
|
|
1232
|
+
): Effect.Effect<
|
|
1233
|
+
ListTypesCommandOutput,
|
|
1234
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
1235
|
+
>;
|
|
1236
|
+
|
|
1237
|
+
/**
|
|
1238
|
+
* @see {@link PublishTypeCommand}
|
|
1239
|
+
*/
|
|
1240
|
+
publishType(
|
|
1241
|
+
args: PublishTypeCommandInput,
|
|
1242
|
+
options?: HttpHandlerOptions,
|
|
1243
|
+
): Effect.Effect<
|
|
1244
|
+
PublishTypeCommandOutput,
|
|
1245
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
1246
|
+
>;
|
|
1247
|
+
|
|
1248
|
+
/**
|
|
1249
|
+
* @see {@link RecordHandlerProgressCommand}
|
|
1250
|
+
*/
|
|
1251
|
+
recordHandlerProgress(
|
|
1252
|
+
args: RecordHandlerProgressCommandInput,
|
|
1253
|
+
options?: HttpHandlerOptions,
|
|
1254
|
+
): Effect.Effect<
|
|
1255
|
+
RecordHandlerProgressCommandOutput,
|
|
1256
|
+
Cause.TimeoutException | SdkError | InvalidStateTransitionError | OperationStatusCheckFailedError
|
|
1257
|
+
>;
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* @see {@link RegisterPublisherCommand}
|
|
1261
|
+
*/
|
|
1262
|
+
registerPublisher(
|
|
1263
|
+
args: RegisterPublisherCommandInput,
|
|
1264
|
+
options?: HttpHandlerOptions,
|
|
1265
|
+
): Effect.Effect<
|
|
1266
|
+
RegisterPublisherCommandOutput,
|
|
1267
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
1268
|
+
>;
|
|
1269
|
+
|
|
1270
|
+
/**
|
|
1271
|
+
* @see {@link RegisterTypeCommand}
|
|
1272
|
+
*/
|
|
1273
|
+
registerType(
|
|
1274
|
+
args: RegisterTypeCommandInput,
|
|
1275
|
+
options?: HttpHandlerOptions,
|
|
1276
|
+
): Effect.Effect<
|
|
1277
|
+
RegisterTypeCommandOutput,
|
|
1278
|
+
Cause.TimeoutException | SdkError | CFNRegistryError
|
|
1279
|
+
>;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* @see {@link RollbackStackCommand}
|
|
1283
|
+
*/
|
|
1284
|
+
rollbackStack(
|
|
1285
|
+
args: RollbackStackCommandInput,
|
|
1286
|
+
options?: HttpHandlerOptions,
|
|
1287
|
+
): Effect.Effect<
|
|
1288
|
+
RollbackStackCommandOutput,
|
|
1289
|
+
Cause.TimeoutException | SdkError | TokenAlreadyExistsError
|
|
1290
|
+
>;
|
|
1291
|
+
|
|
1292
|
+
/**
|
|
1293
|
+
* @see {@link SetStackPolicyCommand}
|
|
1294
|
+
*/
|
|
1295
|
+
setStackPolicy(
|
|
1296
|
+
args: SetStackPolicyCommandInput,
|
|
1297
|
+
options?: HttpHandlerOptions,
|
|
1298
|
+
): Effect.Effect<
|
|
1299
|
+
SetStackPolicyCommandOutput,
|
|
1300
|
+
Cause.TimeoutException | SdkError
|
|
1301
|
+
>;
|
|
1302
|
+
|
|
1303
|
+
/**
|
|
1304
|
+
* @see {@link SetTypeConfigurationCommand}
|
|
1305
|
+
*/
|
|
1306
|
+
setTypeConfiguration(
|
|
1307
|
+
args: SetTypeConfigurationCommandInput,
|
|
1308
|
+
options?: HttpHandlerOptions,
|
|
1309
|
+
): Effect.Effect<
|
|
1310
|
+
SetTypeConfigurationCommandOutput,
|
|
1311
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
1312
|
+
>;
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* @see {@link SetTypeDefaultVersionCommand}
|
|
1316
|
+
*/
|
|
1317
|
+
setTypeDefaultVersion(
|
|
1318
|
+
args: SetTypeDefaultVersionCommandInput,
|
|
1319
|
+
options?: HttpHandlerOptions,
|
|
1320
|
+
): Effect.Effect<
|
|
1321
|
+
SetTypeDefaultVersionCommandOutput,
|
|
1322
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
1323
|
+
>;
|
|
1324
|
+
|
|
1325
|
+
/**
|
|
1326
|
+
* @see {@link SignalResourceCommand}
|
|
1327
|
+
*/
|
|
1328
|
+
signalResource(
|
|
1329
|
+
args: SignalResourceCommandInput,
|
|
1330
|
+
options?: HttpHandlerOptions,
|
|
1331
|
+
): Effect.Effect<
|
|
1332
|
+
SignalResourceCommandOutput,
|
|
1333
|
+
Cause.TimeoutException | SdkError
|
|
1334
|
+
>;
|
|
1335
|
+
|
|
1336
|
+
/**
|
|
1337
|
+
* @see {@link StartResourceScanCommand}
|
|
1338
|
+
*/
|
|
1339
|
+
startResourceScan(
|
|
1340
|
+
args: StartResourceScanCommandInput,
|
|
1341
|
+
options?: HttpHandlerOptions,
|
|
1342
|
+
): Effect.Effect<
|
|
1343
|
+
StartResourceScanCommandOutput,
|
|
1344
|
+
Cause.TimeoutException | SdkError | ResourceScanInProgressError | ResourceScanLimitExceededError
|
|
1345
|
+
>;
|
|
1346
|
+
|
|
1347
|
+
/**
|
|
1348
|
+
* @see {@link StopStackSetOperationCommand}
|
|
1349
|
+
*/
|
|
1350
|
+
stopStackSetOperation(
|
|
1351
|
+
args: StopStackSetOperationCommandInput,
|
|
1352
|
+
options?: HttpHandlerOptions,
|
|
1353
|
+
): Effect.Effect<
|
|
1354
|
+
StopStackSetOperationCommandOutput,
|
|
1355
|
+
Cause.TimeoutException | SdkError | InvalidOperationError | OperationNotFoundError | StackSetNotFoundError
|
|
1356
|
+
>;
|
|
1357
|
+
|
|
1358
|
+
/**
|
|
1359
|
+
* @see {@link TestTypeCommand}
|
|
1360
|
+
*/
|
|
1361
|
+
testType(
|
|
1362
|
+
args: TestTypeCommandInput,
|
|
1363
|
+
options?: HttpHandlerOptions,
|
|
1364
|
+
): Effect.Effect<
|
|
1365
|
+
TestTypeCommandOutput,
|
|
1366
|
+
Cause.TimeoutException | SdkError | CFNRegistryError | TypeNotFoundError
|
|
1367
|
+
>;
|
|
1368
|
+
|
|
1369
|
+
/**
|
|
1370
|
+
* @see {@link UpdateGeneratedTemplateCommand}
|
|
1371
|
+
*/
|
|
1372
|
+
updateGeneratedTemplate(
|
|
1373
|
+
args: UpdateGeneratedTemplateCommandInput,
|
|
1374
|
+
options?: HttpHandlerOptions,
|
|
1375
|
+
): Effect.Effect<
|
|
1376
|
+
UpdateGeneratedTemplateCommandOutput,
|
|
1377
|
+
Cause.TimeoutException | SdkError | AlreadyExistsError | GeneratedTemplateNotFoundError | LimitExceededError
|
|
1378
|
+
>;
|
|
1379
|
+
|
|
1380
|
+
/**
|
|
1381
|
+
* @see {@link UpdateStackCommand}
|
|
1382
|
+
*/
|
|
1383
|
+
updateStack(
|
|
1384
|
+
args: UpdateStackCommandInput,
|
|
1385
|
+
options?: HttpHandlerOptions,
|
|
1386
|
+
): Effect.Effect<
|
|
1387
|
+
UpdateStackCommandOutput,
|
|
1388
|
+
Cause.TimeoutException | SdkError | InsufficientCapabilitiesError | TokenAlreadyExistsError
|
|
1389
|
+
>;
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* @see {@link UpdateStackInstancesCommand}
|
|
1393
|
+
*/
|
|
1394
|
+
updateStackInstances(
|
|
1395
|
+
args: UpdateStackInstancesCommandInput,
|
|
1396
|
+
options?: HttpHandlerOptions,
|
|
1397
|
+
): Effect.Effect<
|
|
1398
|
+
UpdateStackInstancesCommandOutput,
|
|
1399
|
+
| Cause.TimeoutException
|
|
1400
|
+
| SdkError
|
|
1401
|
+
| InvalidOperationError
|
|
1402
|
+
| OperationIdAlreadyExistsError
|
|
1403
|
+
| OperationInProgressError
|
|
1404
|
+
| StackInstanceNotFoundError
|
|
1405
|
+
| StackSetNotFoundError
|
|
1406
|
+
| StaleRequestError
|
|
1407
|
+
>;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* @see {@link UpdateStackSetCommand}
|
|
1411
|
+
*/
|
|
1412
|
+
updateStackSet(
|
|
1413
|
+
args: UpdateStackSetCommandInput,
|
|
1414
|
+
options?: HttpHandlerOptions,
|
|
1415
|
+
): Effect.Effect<
|
|
1416
|
+
UpdateStackSetCommandOutput,
|
|
1417
|
+
| Cause.TimeoutException
|
|
1418
|
+
| SdkError
|
|
1419
|
+
| InvalidOperationError
|
|
1420
|
+
| OperationIdAlreadyExistsError
|
|
1421
|
+
| OperationInProgressError
|
|
1422
|
+
| StackInstanceNotFoundError
|
|
1423
|
+
| StackSetNotFoundError
|
|
1424
|
+
| StaleRequestError
|
|
1425
|
+
>;
|
|
1426
|
+
|
|
1427
|
+
/**
|
|
1428
|
+
* @see {@link UpdateTerminationProtectionCommand}
|
|
1429
|
+
*/
|
|
1430
|
+
updateTerminationProtection(
|
|
1431
|
+
args: UpdateTerminationProtectionCommandInput,
|
|
1432
|
+
options?: HttpHandlerOptions,
|
|
1433
|
+
): Effect.Effect<
|
|
1434
|
+
UpdateTerminationProtectionCommandOutput,
|
|
1435
|
+
Cause.TimeoutException | SdkError
|
|
1436
|
+
>;
|
|
1437
|
+
|
|
1438
|
+
/**
|
|
1439
|
+
* @see {@link ValidateTemplateCommand}
|
|
1440
|
+
*/
|
|
1441
|
+
validateTemplate(
|
|
1442
|
+
args: ValidateTemplateCommandInput,
|
|
1443
|
+
options?: HttpHandlerOptions,
|
|
1444
|
+
): Effect.Effect<
|
|
1445
|
+
ValidateTemplateCommandOutput,
|
|
1446
|
+
Cause.TimeoutException | SdkError
|
|
1447
|
+
>;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
/**
|
|
1451
|
+
* @since 1.0.0
|
|
1452
|
+
* @category constructors
|
|
1453
|
+
*/
|
|
1454
|
+
export const makeCloudFormationService = Effect.gen(function*() {
|
|
1455
|
+
const client = yield* Instance.CloudFormationClientInstance;
|
|
1456
|
+
|
|
1457
|
+
return yield* Service.fromClientAndCommands<CloudFormationService$>(
|
|
1458
|
+
client,
|
|
1459
|
+
commands,
|
|
1460
|
+
{
|
|
1461
|
+
errorTags: AllServiceErrors,
|
|
1462
|
+
resolveClientConfig: CloudFormationServiceConfig.toCloudFormationClientConfig,
|
|
1463
|
+
},
|
|
1464
|
+
);
|
|
1465
|
+
});
|
|
1466
|
+
|
|
1467
|
+
/**
|
|
1468
|
+
* @since 1.0.0
|
|
1469
|
+
* @category models
|
|
1470
|
+
*/
|
|
1471
|
+
export class CloudFormationService extends Effect.Tag("@effect-aws/client-cloudformation/CloudFormationService")<
|
|
1472
|
+
CloudFormationService,
|
|
1473
|
+
CloudFormationService$
|
|
1474
|
+
>() {
|
|
1475
|
+
static readonly defaultLayer = Layer.effect(this, makeCloudFormationService).pipe(Layer.provide(Instance.layer));
|
|
1476
|
+
static readonly layer = (config: CloudFormationService.Config) =>
|
|
1477
|
+
Layer.effect(this, makeCloudFormationService).pipe(
|
|
1478
|
+
Layer.provide(Instance.layer),
|
|
1479
|
+
Layer.provide(CloudFormationServiceConfig.setCloudFormationServiceConfig(config)),
|
|
1480
|
+
);
|
|
1481
|
+
static readonly baseLayer = (
|
|
1482
|
+
evaluate: (defaultConfig: CloudFormationClientConfig) => CloudFormationClient,
|
|
1483
|
+
) =>
|
|
1484
|
+
Layer.effect(this, makeCloudFormationService).pipe(
|
|
1485
|
+
Layer.provide(
|
|
1486
|
+
Layer.effect(
|
|
1487
|
+
Instance.CloudFormationClientInstance,
|
|
1488
|
+
Effect.map(CloudFormationServiceConfig.toCloudFormationClientConfig, evaluate),
|
|
1489
|
+
),
|
|
1490
|
+
),
|
|
1491
|
+
);
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
/**
|
|
1495
|
+
* @since 1.0.0
|
|
1496
|
+
*/
|
|
1497
|
+
export declare namespace CloudFormationService {
|
|
1498
|
+
/**
|
|
1499
|
+
* @since 1.0.0
|
|
1500
|
+
*/
|
|
1501
|
+
export interface Config extends Omit<CloudFormationClientConfig, "logger"> {
|
|
1502
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
/**
|
|
1506
|
+
* @since 1.0.0
|
|
1507
|
+
*/
|
|
1508
|
+
export type Type = CloudFormationService$;
|
|
1509
|
+
}
|