aws-sdk-cloudformation 1.156.0 → 1.157.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d2fd546afa570d89c132c5ec6b1a439c44a180dab0a24637c6b5dcb0f037430
4
- data.tar.gz: d3d1783a9ee0592b49c2e1f1254a9e01f87536229931c841a855115359327c22
3
+ metadata.gz: 6d216efc4344ebada671ce0f5c973138662c9e51c080c361da15a08c76cbc606
4
+ data.tar.gz: 01c7949ac49a5ae057c92a14b574614b34f522c409b6a2b79c9731983be007bf
5
5
  SHA512:
6
- metadata.gz: bf4fd2ca38c760daec4f3776bfaf2bafb0c3276a24f8dbbdbfef9a0baf82aae6f68943cab002f80260c39dd77fea3e59ae02660c61ee58a4aab51c2a5aeea276
7
- data.tar.gz: 9d150a49b75ade1793031da7b0dd9e07f3a42b2ce69afbeb596cdd8a4953edecb6cc8ffbe1a5e85ba3965130420f21d761a7380c6c5f5143fb6271b085f5609f
6
+ metadata.gz: 3bfe33355633e4a7ded556637f97e5c8ee9f7cfedca2c3399c80b2eab8657e3ed318c45ce7f39415d92f8a98db39e1d95628209d271eb5f2b1bac426dcdad239
7
+ data.tar.gz: d3eda0b01aadb9b24004ed48fad46e3ea6ab769699f66d55d232685216a1e1a54cfc4988c1ec5f7e90ab0d126968910a59a88b6380d5dff96269def222d3deb4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.157.0 (2026-07-31)
5
+ ------------------
6
+
7
+ * Feature - Adding enum for sensitive property to DriftIgnoredReason
8
+
4
9
  1.156.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.156.0
1
+ 1.157.0
@@ -2850,7 +2850,7 @@ module Aws::CloudFormation
2850
2850
  # resp.changes[0].resource_change.resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
2851
2851
  # resp.changes[0].resource_change.resource_drift_ignored_attributes #=> Array
2852
2852
  # resp.changes[0].resource_change.resource_drift_ignored_attributes[0].path #=> String
2853
- # resp.changes[0].resource_change.resource_drift_ignored_attributes[0].reason #=> String, one of "MANAGED_BY_AWS", "WRITE_ONLY_PROPERTY"
2853
+ # resp.changes[0].resource_change.resource_drift_ignored_attributes[0].reason #=> String, one of "MANAGED_BY_AWS", "WRITE_ONLY_PROPERTY", "SENSITIVE_PROPERTY"
2854
2854
  # resp.changes[0].resource_change.details #=> Array
2855
2855
  # resp.changes[0].resource_change.details[0].target.attribute #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
2856
2856
  # resp.changes[0].resource_change.details[0].target.name #=> String
@@ -9191,7 +9191,7 @@ module Aws::CloudFormation
9191
9191
  tracer: tracer
9192
9192
  )
9193
9193
  context[:gem_name] = 'aws-sdk-cloudformation'
9194
- context[:gem_version] = '1.156.0'
9194
+ context[:gem_version] = '1.157.0'
9195
9195
  Seahorse::Client::Request.new(handlers, context)
9196
9196
  end
9197
9197
 
@@ -7895,14 +7895,17 @@ module Aws::CloudFormation
7895
7895
  # @return [String]
7896
7896
  #
7897
7897
  # @!attribute [rw] reason
7898
- # Reason why drift was ignored for the attribute, can have 2 possible
7898
+ # Reason why drift was ignored for the attribute, can have 3 possible
7899
7899
  # values:
7900
7900
  #
7901
- # * `WRITE_ONLY_PROPERTY` - Property is not included in read response
7901
+ # * `WRITE_ONLY_PROPERTY` Property is not included in read response
7902
7902
  # for the resource’s live state.
7903
7903
  #
7904
- # * `MANAGED_BY_AWS` - Property is managed by an Amazon Web Services
7904
+ # * `MANAGED_BY_AWS` Property is managed by an Amazon Web Services
7905
7905
  # service and is expected to be dynamically modified.
7906
+ #
7907
+ # * `SENSITIVE_PROPERTY` – Property has a sensitive value, such as an
7908
+ # Amazon Web Services Secrets Manager value.
7906
7909
  # @return [String]
7907
7910
  #
7908
7911
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceDriftIgnoredAttribute AWS API Documentation
@@ -59,7 +59,7 @@ module Aws::CloudFormation
59
59
  autoload :StackResource, 'aws-sdk-cloudformation/stack_resource'
60
60
  autoload :StackResourceSummary, 'aws-sdk-cloudformation/stack_resource_summary'
61
61
 
62
- GEM_VERSION = '1.156.0'
62
+ GEM_VERSION = '1.157.0'
63
63
 
64
64
  end
65
65
 
data/sig/types.rbs CHANGED
@@ -1462,7 +1462,7 @@ module Aws::CloudFormation
1462
1462
 
1463
1463
  class ResourceDriftIgnoredAttribute
1464
1464
  attr_accessor path: ::String
1465
- attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY")
1465
+ attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY" | "SENSITIVE_PROPERTY")
1466
1466
  SENSITIVE: []
1467
1467
  end
1468
1468
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.156.0
4
+ version: 1.157.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services