@aws-sdk/client-cloudformation 3.428.0 → 3.430.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.
@@ -161,6 +161,7 @@ exports.ResourceAttribute = {
161
161
  Properties: "Properties",
162
162
  Tags: "Tags",
163
163
  UpdatePolicy: "UpdatePolicy",
164
+ UpdateReplacePolicy: "UpdateReplacePolicy",
164
165
  };
165
166
  exports.RequiresRecreation = {
166
167
  Always: "Always",
@@ -150,6 +150,7 @@ export const ResourceAttribute = {
150
150
  Properties: "Properties",
151
151
  Tags: "Tags",
152
152
  UpdatePolicy: "UpdatePolicy",
153
+ UpdateReplacePolicy: "UpdateReplacePolicy",
153
154
  };
154
155
  export const RequiresRecreation = {
155
156
  Always: "Always",
@@ -89,12 +89,12 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetOutput,
89
89
  * // ResourceType: "STRING_VALUE",
90
90
  * // Replacement: "True" || "False" || "Conditional",
91
91
  * // Scope: [ // Scope
92
- * // "Properties" || "Metadata" || "CreationPolicy" || "UpdatePolicy" || "DeletionPolicy" || "Tags",
92
+ * // "Properties" || "Metadata" || "CreationPolicy" || "UpdatePolicy" || "DeletionPolicy" || "UpdateReplacePolicy" || "Tags",
93
93
  * // ],
94
94
  * // Details: [ // ResourceChangeDetails
95
95
  * // { // ResourceChangeDetail
96
96
  * // Target: { // ResourceTargetDefinition
97
- * // Attribute: "Properties" || "Metadata" || "CreationPolicy" || "UpdatePolicy" || "DeletionPolicy" || "Tags",
97
+ * // Attribute: "Properties" || "Metadata" || "CreationPolicy" || "UpdatePolicy" || "DeletionPolicy" || "UpdateReplacePolicy" || "Tags",
98
98
  * // Name: "STRING_VALUE",
99
99
  * // RequiresRecreation: "Never" || "Conditionally" || "Always",
100
100
  * // },