@aws-sdk/client-cloudformation 3.1100.0 → 3.1101.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.
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1099.0";
72
+ var version = "3.1100.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -4859,6 +4859,7 @@ const Replacement = {
4859
4859
  };
4860
4860
  const DriftIgnoredReason = {
4861
4861
  MANAGED_BY_AWS: "MANAGED_BY_AWS",
4862
+ SENSITIVE_PROPERTY: "SENSITIVE_PROPERTY",
4862
4863
  WRITE_ONLY_PROPERTY: "WRITE_ONLY_PROPERTY",
4863
4864
  };
4864
4865
  const StackResourceDriftStatus = {
@@ -112,6 +112,7 @@ export const Replacement = {
112
112
  };
113
113
  export const DriftIgnoredReason = {
114
114
  MANAGED_BY_AWS: "MANAGED_BY_AWS",
115
+ SENSITIVE_PROPERTY: "SENSITIVE_PROPERTY",
115
116
  WRITE_ONLY_PROPERTY: "WRITE_ONLY_PROPERTY",
116
117
  };
117
118
  export const StackResourceDriftStatus = {
@@ -102,7 +102,7 @@ declare const DescribeChangeSetCommand_base: {
102
102
  * // ResourceDriftIgnoredAttributes: [ // ResourceDriftIgnoredAttributes
103
103
  * // { // ResourceDriftIgnoredAttribute
104
104
  * // Path: "STRING_VALUE",
105
- * // Reason: "MANAGED_BY_AWS" || "WRITE_ONLY_PROPERTY",
105
+ * // Reason: "MANAGED_BY_AWS" || "WRITE_ONLY_PROPERTY" || "SENSITIVE_PROPERTY",
106
106
  * // },
107
107
  * // ],
108
108
  * // Details: [ // ResourceChangeDetails
@@ -276,6 +276,7 @@ export type Replacement = (typeof Replacement)[keyof typeof Replacement];
276
276
  */
277
277
  export declare const DriftIgnoredReason: {
278
278
  readonly MANAGED_BY_AWS: "MANAGED_BY_AWS";
279
+ readonly SENSITIVE_PROPERTY: "SENSITIVE_PROPERTY";
279
280
  readonly WRITE_ONLY_PROPERTY: "WRITE_ONLY_PROPERTY";
280
281
  };
281
282
  /**
@@ -725,18 +725,22 @@ export interface ResourceDriftIgnoredAttribute {
725
725
  */
726
726
  Path?: string | undefined;
727
727
  /**
728
- * <p>Reason why drift was ignored for the attribute, can have 2 possible values:</p>
728
+ * <p>Reason why drift was ignored for the attribute, can have 3 possible values:</p>
729
729
  * <ul>
730
730
  * <li>
731
731
  * <p>
732
- * <code>WRITE_ONLY_PROPERTY</code> - Property is not included in read response for the
732
+ * <code>WRITE_ONLY_PROPERTY</code> Property is not included in read response for the
733
733
  * resource’s live state.</p>
734
734
  * </li>
735
735
  * <li>
736
736
  * <p>
737
- * <code>MANAGED_BY_AWS</code> - Property is managed by an Amazon Web Services service and is expected to be
737
+ * <code>MANAGED_BY_AWS</code> Property is managed by an Amazon Web Services service and is expected to be
738
738
  * dynamically modified.</p>
739
739
  * </li>
740
+ * <li>
741
+ * <p>
742
+ * <code>SENSITIVE_PROPERTY</code> – Property has a sensitive value, such as an Amazon Web Services Secrets Manager value.</p>
743
+ * </li>
740
744
  * </ul>
741
745
  * @public
742
746
  */
@@ -134,6 +134,7 @@ export declare const Replacement: {
134
134
  export type Replacement = (typeof Replacement)[keyof typeof Replacement];
135
135
  export declare const DriftIgnoredReason: {
136
136
  readonly MANAGED_BY_AWS: "MANAGED_BY_AWS";
137
+ readonly SENSITIVE_PROPERTY: "SENSITIVE_PROPERTY";
137
138
  readonly WRITE_ONLY_PROPERTY: "WRITE_ONLY_PROPERTY";
138
139
  };
139
140
  export type DriftIgnoredReason = (typeof DriftIgnoredReason)[keyof typeof DriftIgnoredReason];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
- "version": "3.1100.0",
3
+ "version": "3.1101.0",
4
4
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudformation",
6
6
  "license": "Apache-2.0",