@aws-sdk/client-cloudformation 3.1075.0 → 3.1077.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist-cjs/index.js +3725 -15
  2. package/dist-es/models/enums.js +4 -0
  3. package/dist-es/runtimeConfig.browser.js +0 -2
  4. package/dist-es/runtimeConfig.js +1 -2
  5. package/dist-es/runtimeConfig.native.js +0 -2
  6. package/dist-es/runtimeConfig.shared.js +2 -0
  7. package/dist-es/schemas/schemas_0.js +25 -17
  8. package/dist-types/commands/CreateChangeSetCommand.d.ts +5 -0
  9. package/dist-types/commands/CreateStackCommand.d.ts +5 -0
  10. package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
  11. package/dist-types/commands/DescribeChangeSetCommand.d.ts +4 -0
  12. package/dist-types/commands/DescribeStacksCommand.d.ts +4 -0
  13. package/dist-types/commands/RollbackStackCommand.d.ts +4 -0
  14. package/dist-types/commands/UpdateStackCommand.d.ts +5 -0
  15. package/dist-types/models/enums.d.ts +12 -0
  16. package/dist-types/models/models_0.d.ts +107 -2
  17. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  18. package/dist-types/runtimeConfig.d.ts +2 -2
  19. package/dist-types/runtimeConfig.native.d.ts +2 -2
  20. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  21. package/dist-types/schemas/schemas_0.d.ts +1 -0
  22. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  23. package/dist-types/ts3.4/models/models_0.d.ts +15 -0
  24. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  25. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  26. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  27. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  28. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  29. package/package.json +8 -10
  30. package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  31. package/dist-cjs/endpoint/bdd.js +0 -49
  32. package/dist-cjs/endpoint/endpointResolver.js +0 -14
  33. package/dist-cjs/models/CloudFormationServiceException.js +0 -8
  34. package/dist-cjs/models/errors.js +0 -407
  35. package/dist-cjs/runtimeConfig.browser.js +0 -32
  36. package/dist-cjs/runtimeConfig.js +0 -45
  37. package/dist-cjs/runtimeConfig.native.js +0 -12
  38. package/dist-cjs/runtimeConfig.shared.js +0 -39
  39. package/dist-cjs/schemas/schemas_0.js +0 -3022
@@ -163,6 +163,10 @@ export const ChangeSetType = {
163
163
  IMPORT: "IMPORT",
164
164
  UPDATE: "UPDATE",
165
165
  };
166
+ export const DeploymentConfigMode = {
167
+ EXPRESS: "EXPRESS",
168
+ STANDARD: "STANDARD",
169
+ };
166
170
  export const DeploymentMode = {
167
171
  REVERT_DRIFT: "REVERT_DRIFT",
168
172
  };
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { Sha256 } from "@aws-crypto/sha256-browser";
3
2
  import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
4
3
  import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
23
22
  region: config?.region ?? invalidProvider("Region is missing"),
24
23
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
25
24
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
26
- sha256: config?.sha256 ?? Sha256,
27
25
  streamCollector: config?.streamCollector ?? streamCollector,
28
26
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
29
27
  useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
5
5
  import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
6
6
  import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
7
7
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
8
- import { calculateBodyLength, Hash } from "@smithy/core/serde";
8
+ import { calculateBodyLength } from "@smithy/core/serde";
9
9
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
10
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
11
11
  export const getRuntimeConfig = (config) => {
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
35
35
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
36
36
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
37
37
  }, config),
38
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
39
38
  streamCollector: config?.streamCollector ?? streamCollector,
40
39
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
41
40
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,4 +1,3 @@
1
- import { Sha256 } from "@aws-crypto/sha256-js";
2
1
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
2
  export const getRuntimeConfig = (config) => {
4
3
  const browserDefaults = getBrowserRuntimeConfig(config);
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
6
5
  ...browserDefaults,
7
6
  ...config,
8
7
  runtime: "react-native",
9
- sha256: config?.sha256 ?? Sha256,
10
8
  };
11
9
  };
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsQueryProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -32,6 +33,7 @@ export const getRuntimeConfig = (config) => {
32
33
  serviceTarget: "CloudFormation",
33
34
  },
34
35
  serviceId: config?.serviceId ?? "CloudFormation",
36
+ sha256: config?.sha256 ?? Sha256,
35
37
  urlParser: config?.urlParser ?? parseUrl,
36
38
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
37
39
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -102,6 +102,7 @@ const _D = "Description";
102
102
  const _DAL = "DescribeAccountLimits";
103
103
  const _DALI = "DescribeAccountLimitsInput";
104
104
  const _DALO = "DescribeAccountLimitsOutput";
105
+ const _DC = "DeploymentConfig";
105
106
  const _DCS = "DeleteChangeSet";
106
107
  const _DCSH = "DescribeChangeSetHooks";
107
108
  const _DCSHI = "DescribeChangeSetHooksInput";
@@ -212,8 +213,9 @@ const _DTer = "DeregisterType";
212
213
  const _DTes = "DescribeType";
213
214
  const _DTi = "DifferenceType";
214
215
  const _DU = "DocumentationUrl";
215
- const _DV = "DefaultValue";
216
+ const _DV = "DisableValidation";
216
217
  const _DVI = "DefaultVersionId";
218
+ const _DVe = "DefaultValue";
217
219
  const _De = "Details";
218
220
  const _Des = "Destination";
219
221
  const _Det = "Detection";
@@ -401,6 +403,7 @@ const _MR = "MaxResults";
401
403
  const _MTIM = "MonitoringTimeInMinutes";
402
404
  const _MV = "MajorVersion";
403
405
  const _Me = "Metadata";
406
+ const _Mo = "Mode";
404
407
  const _N = "Name";
405
408
  const _NAEE = "NameAlreadyExistsException";
406
409
  const _NARN = "NotificationARNs";
@@ -1051,8 +1054,8 @@ export var ContinueUpdateRollbackOutput$ = [3, n0, _CURO,
1051
1054
  ];
1052
1055
  export var CreateChangeSetInput$ = [3, n0, _CCSI,
1053
1056
  0,
1054
- [_SN, _CSN, _TB, _TURL, _UPT, _P, _Ca, _RTe, _RARN, _RCo, _NARN, _Ta, _CTl, _D, _CST, _RTI, _INS, _OSF, _IER, _DM],
1055
- [0, 0, 0, 0, 2, () => _Parameters, 64 | 0, 64 | 0, 0, () => RollbackConfiguration$, 64 | 0, () => Tags, 0, 0, 0, () => ResourcesToImport, 2, 0, 2, 0], 2
1057
+ [_SN, _CSN, _TB, _TURL, _UPT, _P, _Ca, _RTe, _RARN, _RCo, _NARN, _Ta, _CTl, _D, _CST, _RTI, _INS, _OSF, _IER, _DM, _DC, _DV],
1058
+ [0, 0, 0, 0, 2, () => _Parameters, 64 | 0, 64 | 0, 0, () => RollbackConfiguration$, 64 | 0, () => Tags, 0, 0, 0, () => ResourcesToImport, 2, 0, 2, 0, () => DeploymentConfig$, 2], 2
1056
1059
  ];
1057
1060
  export var CreateChangeSetOutput$ = [3, n0, _CCSO,
1058
1061
  0,
@@ -1071,8 +1074,8 @@ export var CreateGeneratedTemplateOutput$ = [3, n0, _CGTO,
1071
1074
  ];
1072
1075
  export var CreateStackInput$ = [3, n0, _CSIr,
1073
1076
  0,
1074
- [_SN, _TB, _TURL, _P, _DR, _RCo, _TIM, _NARN, _Ca, _RTe, _RARN, _OF, _SPB, _SPURL, _Ta, _CRT, _ETP, _REOC],
1075
- [0, 0, 0, () => _Parameters, 2, () => RollbackConfiguration$, 1, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, () => Tags, 0, 2, 2], 1
1077
+ [_SN, _TB, _TURL, _P, _DR, _RCo, _TIM, _NARN, _Ca, _RTe, _RARN, _OF, _SPB, _SPURL, _Ta, _CRT, _ETP, _REOC, _DC, _DV],
1078
+ [0, 0, 0, () => _Parameters, 2, () => RollbackConfiguration$, 1, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, () => Tags, 0, 2, 2, () => DeploymentConfig$, 2], 1
1076
1079
  ];
1077
1080
  export var CreateStackInstancesInput$ = [3, n0, _CSII,
1078
1081
  0,
@@ -1146,8 +1149,8 @@ export var DeleteGeneratedTemplateInput$ = [3, n0, _DGTI,
1146
1149
  ];
1147
1150
  export var DeleteStackInput$ = [3, n0, _DSI,
1148
1151
  0,
1149
- [_SN, _RR, _RARN, _CRT, _DMe],
1150
- [0, 64 | 0, 0, 0, 0], 1
1152
+ [_SN, _RR, _RARN, _CRT, _DMe, _DC],
1153
+ [0, 64 | 0, 0, 0, 0, () => DeploymentConfig$], 1
1151
1154
  ];
1152
1155
  export var DeleteStackInstancesInput$ = [3, n0, _DSII,
1153
1156
  0,
@@ -1169,6 +1172,11 @@ export var DeleteStackSetOutput$ = [3, n0, _DSSO,
1169
1172
  [],
1170
1173
  []
1171
1174
  ];
1175
+ export var DeploymentConfig$ = [3, n0, _DC,
1176
+ 0,
1177
+ [_Mo, _DR],
1178
+ [0, 2]
1179
+ ];
1172
1180
  export var DeploymentTargets$ = [3, n0, _DT,
1173
1181
  0,
1174
1182
  [_Ac, _AUc, _OUI, _AFT],
@@ -1211,8 +1219,8 @@ export var DescribeChangeSetInput$ = [3, n0, _DCSIe,
1211
1219
  ];
1212
1220
  export var DescribeChangeSetOutput$ = [3, n0, _DCSOe,
1213
1221
  0,
1214
- [_CSN, _CSI, _SI, _SN, _D, _P, _CT, _ES, _S, _SR, _SDS, _NARN, _RCo, _Ca, _Ta, _Ch, _NT, _INS, _PCSI, _RCSI, _OSF, _IER, _DM],
1215
- [0, 0, 0, 0, 0, () => _Parameters, 4, 0, 0, 0, 0, 64 | 0, () => RollbackConfiguration$, 64 | 0, () => Tags, () => Changes, 0, 2, 0, 0, 0, 2, 0]
1222
+ [_CSN, _CSI, _SI, _SN, _D, _P, _CT, _ES, _S, _SR, _SDS, _NARN, _RCo, _Ca, _Ta, _Ch, _NT, _INS, _PCSI, _RCSI, _OSF, _IER, _DM, _DC],
1223
+ [0, 0, 0, 0, 0, () => _Parameters, 4, 0, 0, 0, 0, 64 | 0, () => RollbackConfiguration$, 64 | 0, () => Tags, () => Changes, 0, 2, 0, 0, 0, 2, 0, () => DeploymentConfig$]
1216
1224
  ];
1217
1225
  export var DescribeEventsInput$ = [3, n0, _DEI,
1218
1226
  0,
@@ -1781,7 +1789,7 @@ export var ParameterConstraints$ = [3, n0, _PCa,
1781
1789
  ];
1782
1790
  export var ParameterDeclaration$ = [3, n0, _PD,
1783
1791
  0,
1784
- [_PK, _DV, _PTa, _NE, _D, _PCa],
1792
+ [_PK, _DVe, _PTa, _NE, _D, _PCa],
1785
1793
  [0, 0, 0, 2, 0, () => ParameterConstraints$]
1786
1794
  ];
1787
1795
  export var PhysicalResourceIdContextKeyValuePair$ = [3, n0, _PRICKVP,
@@ -1901,8 +1909,8 @@ export var RollbackConfiguration$ = [3, n0, _RCo,
1901
1909
  ];
1902
1910
  export var RollbackStackInput$ = [3, n0, _RSIo,
1903
1911
  0,
1904
- [_SN, _RARN, _CRT, _REOC],
1905
- [0, 0, 0, 2], 1
1912
+ [_SN, _RARN, _CRT, _REOC, _DC],
1913
+ [0, 0, 0, 2, () => DeploymentConfig$], 1
1906
1914
  ];
1907
1915
  export var RollbackStackOutput$ = [3, n0, _RSO,
1908
1916
  0,
@@ -1961,8 +1969,8 @@ export var SignalResourceInput$ = [3, n0, _SRIi,
1961
1969
  ];
1962
1970
  export var Stack$ = [3, n0, _Sta,
1963
1971
  0,
1964
- [_SN, _CT, _SSta, _SI, _CSI, _D, _P, _DTel, _LUT, _RCo, _SSR, _DR, _NARN, _TIM, _Ca, _Ou, _RARN, _Ta, _ETP, _PIa, _RIo, _DI, _REOC, _DMe, _DSet, _LO],
1965
- [0, 4, 0, 0, 0, 0, () => _Parameters, 4, 4, () => RollbackConfiguration$, 0, 2, 64 | 0, 1, 64 | 0, () => Outputs, 0, () => Tags, 2, 0, 0, () => StackDriftInformation$, 2, 0, 0, () => LastOperations], 3
1972
+ [_SN, _CT, _SSta, _SI, _CSI, _D, _P, _DTel, _LUT, _RCo, _SSR, _DR, _DC, _NARN, _TIM, _Ca, _Ou, _RARN, _Ta, _ETP, _PIa, _RIo, _DI, _REOC, _DMe, _DSet, _LO],
1973
+ [0, 4, 0, 0, 0, 0, () => _Parameters, 4, 4, () => RollbackConfiguration$, 0, 2, () => DeploymentConfig$, 64 | 0, 1, 64 | 0, () => Outputs, 0, () => Tags, 2, 0, 0, () => StackDriftInformation$, 2, 0, 0, () => LastOperations], 3
1966
1974
  ];
1967
1975
  export var StackDefinition$ = [3, n0, _SDt,
1968
1976
  0,
@@ -2131,7 +2139,7 @@ export var TemplateConfiguration$ = [3, n0, _TCe,
2131
2139
  ];
2132
2140
  export var TemplateParameter$ = [3, n0, _TP,
2133
2141
  0,
2134
- [_PK, _DV, _NE, _D],
2142
+ [_PK, _DVe, _NE, _D],
2135
2143
  [0, 0, 2, 0]
2136
2144
  ];
2137
2145
  export var TemplateProgress$ = [3, n0, _TPe,
@@ -2196,8 +2204,8 @@ export var UpdateGeneratedTemplateOutput$ = [3, n0, _UGTO,
2196
2204
  ];
2197
2205
  export var UpdateStackInput$ = [3, n0, _USI,
2198
2206
  0,
2199
- [_SN, _TB, _TURL, _UPT, _SPDUB, _SPDUURL, _P, _Ca, _RTe, _RARN, _RCo, _SPB, _SPURL, _NARN, _Ta, _DR, _CRT, _REOC],
2200
- [0, 0, 0, 2, 0, 0, () => _Parameters, 64 | 0, 64 | 0, 0, () => RollbackConfiguration$, 0, 0, 64 | 0, () => Tags, 2, 0, 2], 1
2207
+ [_SN, _TB, _TURL, _UPT, _SPDUB, _SPDUURL, _P, _Ca, _RTe, _RARN, _RCo, _SPB, _SPURL, _NARN, _Ta, _DR, _CRT, _REOC, _DC, _DV],
2208
+ [0, 0, 0, 2, 0, 0, () => _Parameters, 64 | 0, 64 | 0, 0, () => RollbackConfiguration$, 0, 0, 64 | 0, () => Tags, 2, 0, 2, () => DeploymentConfig$, 2], 1
2201
2209
  ];
2202
2210
  export var UpdateStackInstancesInput$ = [3, n0, _USII,
2203
2211
  0,
@@ -111,6 +111,11 @@ declare const CreateChangeSetCommand_base: {
111
111
  * OnStackFailure: "DO_NOTHING" || "ROLLBACK" || "DELETE",
112
112
  * ImportExistingResources: true || false,
113
113
  * DeploymentMode: "REVERT_DRIFT",
114
+ * DeploymentConfig: { // DeploymentConfig
115
+ * Mode: "STANDARD" || "EXPRESS",
116
+ * DisableRollback: true || false,
117
+ * },
118
+ * DisableValidation: true || false,
114
119
  * };
115
120
  * const command = new CreateChangeSetCommand(input);
116
121
  * const response = await client.send(command);
@@ -87,6 +87,11 @@ declare const CreateStackCommand_base: {
87
87
  * ClientRequestToken: "STRING_VALUE",
88
88
  * EnableTerminationProtection: true || false,
89
89
  * RetainExceptOnCreate: true || false,
90
+ * DeploymentConfig: { // DeploymentConfig
91
+ * Mode: "STANDARD" || "EXPRESS",
92
+ * DisableRollback: true || false,
93
+ * },
94
+ * DisableValidation: true || false,
90
95
  * };
91
96
  * const command = new CreateStackCommand(input);
92
97
  * const response = await client.send(command);
@@ -50,6 +50,10 @@ declare const DeleteStackCommand_base: {
50
50
  * RoleARN: "STRING_VALUE",
51
51
  * ClientRequestToken: "STRING_VALUE",
52
52
  * DeletionMode: "STANDARD" || "FORCE_DELETE_STACK",
53
+ * DeploymentConfig: { // DeploymentConfig
54
+ * Mode: "STANDARD" || "EXPRESS",
55
+ * DisableRollback: true || false,
56
+ * },
53
57
  * };
54
58
  * const command = new DeleteStackCommand(input);
55
59
  * const response = await client.send(command);
@@ -151,6 +151,10 @@ declare const DescribeChangeSetCommand_base: {
151
151
  * // OnStackFailure: "DO_NOTHING" || "ROLLBACK" || "DELETE",
152
152
  * // ImportExistingResources: true || false,
153
153
  * // DeploymentMode: "REVERT_DRIFT",
154
+ * // DeploymentConfig: { // DeploymentConfig
155
+ * // Mode: "STANDARD" || "EXPRESS",
156
+ * // DisableRollback: true || false,
157
+ * // },
154
158
  * // };
155
159
  *
156
160
  * ```
@@ -80,6 +80,10 @@ declare const DescribeStacksCommand_base: {
80
80
  * // StackStatus: "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "CREATE_COMPLETE" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_FAILED" || "ROLLBACK_COMPLETE" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "DELETE_COMPLETE" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" || "UPDATE_COMPLETE" || "UPDATE_FAILED" || "UPDATE_ROLLBACK_IN_PROGRESS" || "UPDATE_ROLLBACK_FAILED" || "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" || "UPDATE_ROLLBACK_COMPLETE" || "REVIEW_IN_PROGRESS" || "IMPORT_IN_PROGRESS" || "IMPORT_COMPLETE" || "IMPORT_ROLLBACK_IN_PROGRESS" || "IMPORT_ROLLBACK_FAILED" || "IMPORT_ROLLBACK_COMPLETE", // required
81
81
  * // StackStatusReason: "STRING_VALUE",
82
82
  * // DisableRollback: true || false,
83
+ * // DeploymentConfig: { // DeploymentConfig
84
+ * // Mode: "STANDARD" || "EXPRESS",
85
+ * // DisableRollback: true || false,
86
+ * // },
83
87
  * // NotificationARNs: [ // NotificationARNs
84
88
  * // "STRING_VALUE",
85
89
  * // ],
@@ -77,6 +77,10 @@ declare const RollbackStackCommand_base: {
77
77
  * RoleARN: "STRING_VALUE",
78
78
  * ClientRequestToken: "STRING_VALUE",
79
79
  * RetainExceptOnCreate: true || false,
80
+ * DeploymentConfig: { // DeploymentConfig
81
+ * Mode: "STANDARD" || "EXPRESS",
82
+ * DisableRollback: true || false,
83
+ * },
80
84
  * };
81
85
  * const command = new RollbackStackCommand(input);
82
86
  * const response = await client.send(command);
@@ -89,6 +89,11 @@ declare const UpdateStackCommand_base: {
89
89
  * DisableRollback: true || false,
90
90
  * ClientRequestToken: "STRING_VALUE",
91
91
  * RetainExceptOnCreate: true || false,
92
+ * DeploymentConfig: { // DeploymentConfig
93
+ * Mode: "STANDARD" || "EXPRESS",
94
+ * DisableRollback: true || false,
95
+ * },
96
+ * DisableValidation: true || false,
92
97
  * };
93
98
  * const command = new UpdateStackCommand(input);
94
99
  * const response = await client.send(command);
@@ -403,6 +403,18 @@ export declare const ChangeSetType: {
403
403
  * @public
404
404
  */
405
405
  export type ChangeSetType = (typeof ChangeSetType)[keyof typeof ChangeSetType];
406
+ /**
407
+ * @public
408
+ * @enum
409
+ */
410
+ export declare const DeploymentConfigMode: {
411
+ readonly EXPRESS: "EXPRESS";
412
+ readonly STANDARD: "STANDARD";
413
+ };
414
+ /**
415
+ * @public
416
+ */
417
+ export type DeploymentConfigMode = (typeof DeploymentConfigMode)[keyof typeof DeploymentConfigMode];
406
418
  /**
407
419
  * @public
408
420
  * @enum
@@ -1,4 +1,4 @@
1
- import type { AccountFilterType, AccountGateStatus, AfterValueFrom, AnnotationSeverityLevel, AnnotationStatus, AttributeChangeType, BeaconStackOperationStatus, BeforeValueFrom, CallAs, Capability, Category, ChangeAction, ChangeSetHooksStatus, ChangeSetStatus, ChangeSetType, ChangeSource, ChangeType, ConcurrencyMode, DeletionMode, DeploymentMode, DeprecatedStatus, DetailedStatus, DifferenceType, DriftIgnoredReason, EvaluationType, EventType, ExecutionStatus, GeneratedTemplateDeletionPolicy, GeneratedTemplateResourceStatus, GeneratedTemplateStatus, GeneratedTemplateUpdateReplacePolicy, HandlerErrorCode, HookFailureMode, HookInvocationPoint, HookStatus, HookTargetAction, HookTargetType, IdentityProvider, ListHookResultsTargetType, OnFailure, OnStackFailure, OperationResultFilterName, OperationStatus, OperationType, OrganizationStatus, PermissionModels, PolicyAction, ProvisioningType, PublisherStatus, RegionConcurrencyType, RegistrationStatus, RegistryType, Replacement, RequiresRecreation, ResourceAttribute, ResourceScanStatus, ResourceSignalStatus, ResourceStatus, ScanType, StackDriftDetectionStatus, StackDriftStatus, StackInstanceDetailedStatus, StackInstanceFilterName, StackInstanceStatus, StackRefactorActionEntity, StackRefactorActionType, StackRefactorDetection, StackRefactorExecutionStatus, StackRefactorStatus, StackResourceDriftStatus, StackSetDriftDetectionStatus, StackSetDriftStatus, StackSetOperationAction, StackSetOperationResultStatus, StackSetOperationStatus, StackSetStatus, StackStatus, TemplateFormat, TemplateStage, ThirdPartyType, TypeTestsStatus, ValidationStatus, VersionBump, Visibility, WarningType } from "./enums";
1
+ import type { AccountFilterType, AccountGateStatus, AfterValueFrom, AnnotationSeverityLevel, AnnotationStatus, AttributeChangeType, BeaconStackOperationStatus, BeforeValueFrom, CallAs, Capability, Category, ChangeAction, ChangeSetHooksStatus, ChangeSetStatus, ChangeSetType, ChangeSource, ChangeType, ConcurrencyMode, DeletionMode, DeploymentConfigMode, DeploymentMode, DeprecatedStatus, DetailedStatus, DifferenceType, DriftIgnoredReason, EvaluationType, EventType, ExecutionStatus, GeneratedTemplateDeletionPolicy, GeneratedTemplateResourceStatus, GeneratedTemplateStatus, GeneratedTemplateUpdateReplacePolicy, HandlerErrorCode, HookFailureMode, HookInvocationPoint, HookStatus, HookTargetAction, HookTargetType, IdentityProvider, ListHookResultsTargetType, OnFailure, OnStackFailure, OperationResultFilterName, OperationStatus, OperationType, OrganizationStatus, PermissionModels, PolicyAction, ProvisioningType, PublisherStatus, RegionConcurrencyType, RegistrationStatus, RegistryType, Replacement, RequiresRecreation, ResourceAttribute, ResourceScanStatus, ResourceSignalStatus, ResourceStatus, ScanType, StackDriftDetectionStatus, StackDriftStatus, StackInstanceDetailedStatus, StackInstanceFilterName, StackInstanceStatus, StackRefactorActionEntity, StackRefactorActionType, StackRefactorDetection, StackRefactorExecutionStatus, StackRefactorStatus, StackResourceDriftStatus, StackSetDriftDetectionStatus, StackSetDriftStatus, StackSetOperationAction, StackSetOperationResultStatus, StackSetOperationStatus, StackSetStatus, StackStatus, TemplateFormat, TemplateStage, ThirdPartyType, TypeTestsStatus, ValidationStatus, VersionBump, Visibility, WarningType } from "./enums";
2
2
  /**
3
3
  * <p>Structure that contains the results of the account gate function which CloudFormation invokes,
4
4
  * if present, before proceeding with a StackSet operation in an account and Region.</p>
@@ -1209,6 +1209,38 @@ export interface ContinueUpdateRollbackInput {
1209
1209
  */
1210
1210
  export interface ContinueUpdateRollbackOutput {
1211
1211
  }
1212
+ /**
1213
+ * <p>The deployment configuration for a stack operation, including the deployment mode.</p>
1214
+ * @public
1215
+ */
1216
+ export interface DeploymentConfig {
1217
+ /**
1218
+ * <p>Specifies the deployment mode for the stack operation. Possible values are:</p>
1219
+ * <ul>
1220
+ * <li>
1221
+ * <p>
1222
+ * <code>STANDARD</code> - Use the standard deployment behavior, ensuring resources are
1223
+ * ready to serve traffic before completing the operation. This is the default. You do not need
1224
+ * to specify this value explicitly.</p>
1225
+ * </li>
1226
+ * <li>
1227
+ * <p>
1228
+ * <code>EXPRESS</code> - Complete the stack operation when resource configuration is
1229
+ * applied, without waiting for resources to become ready to serve traffic. Resources continue
1230
+ * becoming ready in the background.</p>
1231
+ * </li>
1232
+ * </ul>
1233
+ * @public
1234
+ */
1235
+ Mode?: DeploymentConfigMode | undefined;
1236
+ /**
1237
+ * <p>Specifies whether to disable rollback of the stack if the stack operation fails.</p>
1238
+ * <p>Default: <code>false</code>
1239
+ * </p>
1240
+ * @public
1241
+ */
1242
+ DisableRollback?: boolean | undefined;
1243
+ }
1212
1244
  /**
1213
1245
  * <p>The <code>Parameter</code> data type.</p>
1214
1246
  * @public
@@ -1668,6 +1700,22 @@ export interface CreateChangeSetInput {
1668
1700
  * @public
1669
1701
  */
1670
1702
  DeploymentMode?: DeploymentMode | undefined;
1703
+ /**
1704
+ * <p>The deployment configuration for this stack operation, including the deployment
1705
+ * mode.</p>
1706
+ * @public
1707
+ */
1708
+ DeploymentConfig?: DeploymentConfig | undefined;
1709
+ /**
1710
+ * <p>
1711
+ * Set to <code>true</code> to disable pre-deployment validations in changeset or stack operations.
1712
+ * </p>
1713
+ * <p>
1714
+ * Default: <code>false</code>
1715
+ * </p>
1716
+ * @public
1717
+ */
1718
+ DisableValidation?: boolean | undefined;
1671
1719
  }
1672
1720
  /**
1673
1721
  * <p>The output for the <a>CreateChangeSet</a> action.</p>
@@ -2079,6 +2127,22 @@ export interface CreateStackInput {
2079
2127
  * @public
2080
2128
  */
2081
2129
  RetainExceptOnCreate?: boolean | undefined;
2130
+ /**
2131
+ * <p>The deployment configuration for this stack operation, including the deployment
2132
+ * mode.</p>
2133
+ * @public
2134
+ */
2135
+ DeploymentConfig?: DeploymentConfig | undefined;
2136
+ /**
2137
+ * <p>
2138
+ * Set to <code>true</code> to disable pre-deployment validations in changeset or stack operations.
2139
+ * </p>
2140
+ * <p>
2141
+ * Default: <code>false</code>
2142
+ * </p>
2143
+ * @public
2144
+ */
2145
+ DisableValidation?: boolean | undefined;
2082
2146
  }
2083
2147
  /**
2084
2148
  * <p>The output for a <a>CreateStack</a> action.</p>
@@ -2877,6 +2941,12 @@ export interface DeleteStackInput {
2877
2941
  * @public
2878
2942
  */
2879
2943
  DeletionMode?: DeletionMode | undefined;
2944
+ /**
2945
+ * <p>The deployment configuration for this stack operation, including the deployment
2946
+ * mode.</p>
2947
+ * @public
2948
+ */
2949
+ DeploymentConfig?: DeploymentConfig | undefined;
2880
2950
  }
2881
2951
  /**
2882
2952
  * @public
@@ -3280,6 +3350,11 @@ export interface DescribeChangeSetOutput {
3280
3350
  * @public
3281
3351
  */
3282
3352
  DeploymentMode?: DeploymentMode | undefined;
3353
+ /**
3354
+ * <p>The deployment configuration specified when the change set was created.</p>
3355
+ * @public
3356
+ */
3357
+ DeploymentConfig?: DeploymentConfig | undefined;
3283
3358
  }
3284
3359
  /**
3285
3360
  * @public
@@ -3366,7 +3441,9 @@ export interface EventFilter {
3366
3441
  */
3367
3442
  export interface DescribeEventsInput {
3368
3443
  /**
3369
- * <p>The name or unique stack ID for which you want to retrieve events.</p>
3444
+ * <p>The name or unique stack ID for which you want to retrieve events. If you specified the
3445
+ * name of a change set, specify the stack name or ID (ARN) of the change set you want to
3446
+ * describe.</p>
3370
3447
  * @public
3371
3448
  */
3372
3449
  StackName?: string | undefined;
@@ -5357,6 +5434,12 @@ export interface Stack {
5357
5434
  * @public
5358
5435
  */
5359
5436
  DisableRollback?: boolean | undefined;
5437
+ /**
5438
+ * <p>The deployment configuration for the stack, including the deployment mode used for stack
5439
+ * operations.</p>
5440
+ * @public
5441
+ */
5442
+ DeploymentConfig?: DeploymentConfig | undefined;
5360
5443
  /**
5361
5444
  * <p>Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published.</p>
5362
5445
  * @public
@@ -10150,6 +10233,12 @@ export interface RollbackStackInput {
10150
10233
  * @public
10151
10234
  */
10152
10235
  RetainExceptOnCreate?: boolean | undefined;
10236
+ /**
10237
+ * <p>The deployment configuration for this stack operation, including the deployment
10238
+ * mode.</p>
10239
+ * @public
10240
+ */
10241
+ DeploymentConfig?: DeploymentConfig | undefined;
10153
10242
  }
10154
10243
  /**
10155
10244
  * @public
@@ -10799,6 +10888,22 @@ export interface UpdateStackInput {
10799
10888
  * @public
10800
10889
  */
10801
10890
  RetainExceptOnCreate?: boolean | undefined;
10891
+ /**
10892
+ * <p>The deployment configuration for this stack operation, including the deployment
10893
+ * mode.</p>
10894
+ * @public
10895
+ */
10896
+ DeploymentConfig?: DeploymentConfig | undefined;
10897
+ /**
10898
+ * <p>
10899
+ * Set to <code>true</code> to disable pre-deployment validations in changeset or stack operations.
10900
+ * </p>
10901
+ * <p>
10902
+ * Default: <code>false</code>
10903
+ * </p>
10904
+ * @public
10905
+ */
10906
+ DisableValidation?: boolean | undefined;
10802
10907
  }
10803
10908
  /**
10804
10909
  * <p>The output for an <a>UpdateStack</a> action.</p>
@@ -13,8 +13,7 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
- streamCollector: import("@smithy/types").StreamCollector;
16
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
19
  cacheMiddleware?: boolean | undefined;
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,8 +14,7 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
- streamCollector: import("@smithy/types").StreamCollector;
17
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
20
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { CloudFormationClientConfig } from "./CloudFormationClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
@@ -13,9 +12,10 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
- streamCollector: import("@smithy/types").StreamCollector;
18
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
19
  base64Decoder: import("@smithy/types").Decoder;
20
20
  base64Encoder: (_input: Uint8Array | string) => string;
21
21
  utf8Decoder: import("@smithy/types").Decoder;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -79,6 +79,7 @@ export declare var DeleteStackInstancesInput$: StaticStructureSchema;
79
79
  export declare var DeleteStackInstancesOutput$: StaticStructureSchema;
80
80
  export declare var DeleteStackSetInput$: StaticStructureSchema;
81
81
  export declare var DeleteStackSetOutput$: StaticStructureSchema;
82
+ export declare var DeploymentConfig$: StaticStructureSchema;
82
83
  export declare var DeploymentTargets$: StaticStructureSchema;
83
84
  export declare var DeregisterTypeInput$: StaticStructureSchema;
84
85
  export declare var DeregisterTypeOutput$: StaticStructureSchema;
@@ -213,6 +213,12 @@ export declare const ChangeSetType: {
213
213
  readonly UPDATE: "UPDATE";
214
214
  };
215
215
  export type ChangeSetType = (typeof ChangeSetType)[keyof typeof ChangeSetType];
216
+ export declare const DeploymentConfigMode: {
217
+ readonly EXPRESS: "EXPRESS";
218
+ readonly STANDARD: "STANDARD";
219
+ };
220
+ export type DeploymentConfigMode =
221
+ (typeof DeploymentConfigMode)[keyof typeof DeploymentConfigMode];
216
222
  export declare const DeploymentMode: {
217
223
  readonly REVERT_DRIFT: "REVERT_DRIFT";
218
224
  };
@@ -18,6 +18,7 @@ import {
18
18
  ChangeType,
19
19
  ConcurrencyMode,
20
20
  DeletionMode,
21
+ DeploymentConfigMode,
21
22
  DeploymentMode,
22
23
  DeprecatedStatus,
23
24
  DetailedStatus,
@@ -252,6 +253,10 @@ export interface ContinueUpdateRollbackInput {
252
253
  ClientRequestToken?: string | undefined;
253
254
  }
254
255
  export interface ContinueUpdateRollbackOutput {}
256
+ export interface DeploymentConfig {
257
+ Mode?: DeploymentConfigMode | undefined;
258
+ DisableRollback?: boolean | undefined;
259
+ }
255
260
  export interface Parameter {
256
261
  ParameterKey?: string | undefined;
257
262
  ParameterValue?: string | undefined;
@@ -296,6 +301,8 @@ export interface CreateChangeSetInput {
296
301
  OnStackFailure?: OnStackFailure | undefined;
297
302
  ImportExistingResources?: boolean | undefined;
298
303
  DeploymentMode?: DeploymentMode | undefined;
304
+ DeploymentConfig?: DeploymentConfig | undefined;
305
+ DisableValidation?: boolean | undefined;
299
306
  }
300
307
  export interface CreateChangeSetOutput {
301
308
  Id?: string | undefined;
@@ -338,6 +345,8 @@ export interface CreateStackInput {
338
345
  ClientRequestToken?: string | undefined;
339
346
  EnableTerminationProtection?: boolean | undefined;
340
347
  RetainExceptOnCreate?: boolean | undefined;
348
+ DeploymentConfig?: DeploymentConfig | undefined;
349
+ DisableValidation?: boolean | undefined;
341
350
  }
342
351
  export interface CreateStackOutput {
343
352
  StackId?: string | undefined;
@@ -438,6 +447,7 @@ export interface DeleteStackInput {
438
447
  RoleARN?: string | undefined;
439
448
  ClientRequestToken?: string | undefined;
440
449
  DeletionMode?: DeletionMode | undefined;
450
+ DeploymentConfig?: DeploymentConfig | undefined;
441
451
  }
442
452
  export interface DeleteStackInstancesInput {
443
453
  StackSetName: string | undefined;
@@ -501,6 +511,7 @@ export interface DescribeChangeSetOutput {
501
511
  OnStackFailure?: OnStackFailure | undefined;
502
512
  ImportExistingResources?: boolean | undefined;
503
513
  DeploymentMode?: DeploymentMode | undefined;
514
+ DeploymentConfig?: DeploymentConfig | undefined;
504
515
  }
505
516
  export interface DescribeChangeSetHooksInput {
506
517
  ChangeSetName: string | undefined;
@@ -824,6 +835,7 @@ export interface Stack {
824
835
  StackStatus: StackStatus | undefined;
825
836
  StackStatusReason?: string | undefined;
826
837
  DisableRollback?: boolean | undefined;
838
+ DeploymentConfig?: DeploymentConfig | undefined;
827
839
  NotificationARNs?: string[] | undefined;
828
840
  TimeoutInMinutes?: number | undefined;
829
841
  Capabilities?: Capability[] | undefined;
@@ -1555,6 +1567,7 @@ export interface RollbackStackInput {
1555
1567
  RoleARN?: string | undefined;
1556
1568
  ClientRequestToken?: string | undefined;
1557
1569
  RetainExceptOnCreate?: boolean | undefined;
1570
+ DeploymentConfig?: DeploymentConfig | undefined;
1558
1571
  }
1559
1572
  export interface RollbackStackOutput {
1560
1573
  StackId?: string | undefined;
@@ -1641,6 +1654,8 @@ export interface UpdateStackInput {
1641
1654
  DisableRollback?: boolean | undefined;
1642
1655
  ClientRequestToken?: string | undefined;
1643
1656
  RetainExceptOnCreate?: boolean | undefined;
1657
+ DeploymentConfig?: DeploymentConfig | undefined;
1658
+ DisableValidation?: boolean | undefined;
1644
1659
  }
1645
1660
  export interface UpdateStackOutput {
1646
1661
  StackId?: string | undefined;