aws-sdk-cloudformation 1.134.0 → 1.154.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.
data/sig/types.rbs CHANGED
@@ -48,9 +48,20 @@ module Aws::CloudFormation
48
48
  class AlreadyExistsException < Aws::EmptyStructure
49
49
  end
50
50
 
51
+ class Annotation
52
+ attr_accessor annotation_name: ::String
53
+ attr_accessor status: ("PASSED" | "FAILED" | "SKIPPED")
54
+ attr_accessor status_message: ::String
55
+ attr_accessor remediation_message: ::String
56
+ attr_accessor remediation_link: ::String
57
+ attr_accessor severity_level: ("INFORMATIONAL" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL")
58
+ SENSITIVE: []
59
+ end
60
+
51
61
  class AutoDeployment
52
62
  attr_accessor enabled: bool
53
63
  attr_accessor retain_stacks_on_account_removal: bool
64
+ attr_accessor depends_on: ::Array[::String]
54
65
  SENSITIVE: []
55
66
  end
56
67
 
@@ -104,7 +115,7 @@ module Aws::CloudFormation
104
115
  class ChangeSetHookResourceTargetDetails
105
116
  attr_accessor logical_resource_id: ::String
106
117
  attr_accessor resource_type: ::String
107
- attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
118
+ attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
108
119
  SENSITIVE: []
109
120
  end
110
121
 
@@ -168,6 +179,7 @@ module Aws::CloudFormation
168
179
  attr_accessor include_nested_stacks: bool
169
180
  attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
170
181
  attr_accessor import_existing_resources: bool
182
+ attr_accessor deployment_mode: ("REVERT_DRIFT")
171
183
  SENSITIVE: []
172
184
  end
173
185
 
@@ -231,6 +243,7 @@ module Aws::CloudFormation
231
243
 
232
244
  class CreateStackOutput
233
245
  attr_accessor stack_id: ::String
246
+ attr_accessor operation_id: ::String
234
247
  SENSITIVE: []
235
248
  end
236
249
 
@@ -407,6 +420,7 @@ module Aws::CloudFormation
407
420
  attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
408
421
  attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
409
422
  attr_accessor status_reason: ::String
423
+ attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
410
424
  attr_accessor notification_arns: ::Array[::String]
411
425
  attr_accessor rollback_configuration: Types::RollbackConfiguration
412
426
  attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
@@ -418,6 +432,22 @@ module Aws::CloudFormation
418
432
  attr_accessor root_change_set_id: ::String
419
433
  attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
420
434
  attr_accessor import_existing_resources: bool
435
+ attr_accessor deployment_mode: ("REVERT_DRIFT")
436
+ SENSITIVE: []
437
+ end
438
+
439
+ class DescribeEventsInput
440
+ attr_accessor stack_name: ::String
441
+ attr_accessor change_set_name: ::String
442
+ attr_accessor operation_id: ::String
443
+ attr_accessor filters: Types::EventFilter
444
+ attr_accessor next_token: ::String
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class DescribeEventsOutput
449
+ attr_accessor operation_events: ::Array[Types::OperationEvent]
450
+ attr_accessor next_token: ::String
421
451
  SENSITIVE: []
422
452
  end
423
453
 
@@ -542,7 +572,7 @@ module Aws::CloudFormation
542
572
 
543
573
  class DescribeStackResourceDriftsInput
544
574
  attr_accessor stack_name: ::String
545
- attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
575
+ attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")]
546
576
  attr_accessor next_token: ::String
547
577
  attr_accessor max_results: ::Integer
548
578
  SENSITIVE: []
@@ -713,6 +743,11 @@ module Aws::CloudFormation
713
743
  SENSITIVE: []
714
744
  end
715
745
 
746
+ class EventFilter
747
+ attr_accessor failed_events: bool
748
+ SENSITIVE: []
749
+ end
750
+
716
751
  class ExecuteChangeSetInput
717
752
  attr_accessor change_set_name: ::String
718
753
  attr_accessor stack_name: ::String
@@ -752,6 +787,28 @@ module Aws::CloudFormation
752
787
  SENSITIVE: []
753
788
  end
754
789
 
790
+ class GetHookResultInput
791
+ attr_accessor hook_result_id: ::String
792
+ SENSITIVE: []
793
+ end
794
+
795
+ class GetHookResultOutput
796
+ attr_accessor hook_result_id: ::String
797
+ attr_accessor invocation_point: ("PRE_PROVISION")
798
+ attr_accessor failure_mode: ("FAIL" | "WARN")
799
+ attr_accessor type_name: ::String
800
+ attr_accessor original_type_name: ::String
801
+ attr_accessor type_version_id: ::String
802
+ attr_accessor type_configuration_version_id: ::String
803
+ attr_accessor type_arn: ::String
804
+ attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
805
+ attr_accessor hook_status_reason: ::String
806
+ attr_accessor invoked_at: ::Time
807
+ attr_accessor target: Types::HookTarget
808
+ attr_accessor annotations: ::Array[Types::Annotation]
809
+ SENSITIVE: []
810
+ end
811
+
755
812
  class GetStackPolicyInput
756
813
  attr_accessor stack_name: ::String
757
814
  SENSITIVE: []
@@ -803,6 +860,7 @@ module Aws::CloudFormation
803
860
  end
804
861
 
805
862
  class HookResultSummary
863
+ attr_accessor hook_result_id: ::String
806
864
  attr_accessor invocation_point: ("PRE_PROVISION")
807
865
  attr_accessor failure_mode: ("FAIL" | "WARN")
808
866
  attr_accessor type_name: ::String
@@ -810,6 +868,19 @@ module Aws::CloudFormation
810
868
  attr_accessor type_configuration_version_id: ::String
811
869
  attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
812
870
  attr_accessor hook_status_reason: ::String
871
+ attr_accessor invoked_at: ::Time
872
+ attr_accessor target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
873
+ attr_accessor target_id: ::String
874
+ attr_accessor type_arn: ::String
875
+ attr_accessor hook_execution_target: ::String
876
+ SENSITIVE: []
877
+ end
878
+
879
+ class HookTarget
880
+ attr_accessor target_type: ("RESOURCE")
881
+ attr_accessor target_type_name: ::String
882
+ attr_accessor target_id: ::String
883
+ attr_accessor action: ("CREATE" | "UPDATE" | "DELETE" | "IMPORT")
813
884
  SENSITIVE: []
814
885
  end
815
886
 
@@ -882,6 +953,8 @@ module Aws::CloudFormation
882
953
  class ListHookResultsInput
883
954
  attr_accessor target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
884
955
  attr_accessor target_id: ::String
956
+ attr_accessor type_arn: ::String
957
+ attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
885
958
  attr_accessor next_token: ::String
886
959
  SENSITIVE: []
887
960
  end
@@ -954,7 +1027,7 @@ module Aws::CloudFormation
954
1027
  attr_accessor stack_set_name: ::String
955
1028
  attr_accessor next_token: ::String
956
1029
  attr_accessor max_results: ::Integer
957
- attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
1030
+ attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")]
958
1031
  attr_accessor stack_instance_account: ::String
959
1032
  attr_accessor stack_instance_region: ::String
960
1033
  attr_accessor operation_id: ::String
@@ -1143,6 +1216,13 @@ module Aws::CloudFormation
1143
1216
  SENSITIVE: []
1144
1217
  end
1145
1218
 
1219
+ class LiveResourceDrift
1220
+ attr_accessor previous_value: ::String
1221
+ attr_accessor actual_value: ::String
1222
+ attr_accessor drift_detection_timestamp: ::Time
1223
+ SENSITIVE: []
1224
+ end
1225
+
1146
1226
  class LoggingConfig
1147
1227
  attr_accessor log_role_arn: ::String
1148
1228
  attr_accessor log_group_name: ::String
@@ -1163,6 +1243,43 @@ module Aws::CloudFormation
1163
1243
  class NameAlreadyExistsException < Aws::EmptyStructure
1164
1244
  end
1165
1245
 
1246
+ class OperationEntry
1247
+ attr_accessor operation_type: ("CREATE_STACK" | "UPDATE_STACK" | "DELETE_STACK" | "CONTINUE_ROLLBACK" | "ROLLBACK" | "CREATE_CHANGESET")
1248
+ attr_accessor operation_id: ::String
1249
+ SENSITIVE: []
1250
+ end
1251
+
1252
+ class OperationEvent
1253
+ attr_accessor event_id: ::String
1254
+ attr_accessor stack_id: ::String
1255
+ attr_accessor operation_id: ::String
1256
+ attr_accessor operation_type: ("CREATE_STACK" | "UPDATE_STACK" | "DELETE_STACK" | "CONTINUE_ROLLBACK" | "ROLLBACK" | "CREATE_CHANGESET")
1257
+ attr_accessor operation_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
1258
+ attr_accessor event_type: ("STACK_EVENT" | "PROGRESS_EVENT" | "VALIDATION_ERROR" | "PROVISIONING_ERROR" | "HOOK_INVOCATION_ERROR")
1259
+ attr_accessor logical_resource_id: ::String
1260
+ attr_accessor physical_resource_id: ::String
1261
+ attr_accessor resource_type: ::String
1262
+ attr_accessor timestamp: ::Time
1263
+ attr_accessor start_time: ::Time
1264
+ attr_accessor end_time: ::Time
1265
+ attr_accessor resource_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
1266
+ attr_accessor resource_status_reason: ::String
1267
+ attr_accessor resource_properties: ::String
1268
+ attr_accessor client_request_token: ::String
1269
+ attr_accessor hook_type: ::String
1270
+ attr_accessor hook_status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
1271
+ attr_accessor hook_status_reason: ::String
1272
+ attr_accessor hook_invocation_point: ("PRE_PROVISION")
1273
+ attr_accessor hook_failure_mode: ("FAIL" | "WARN")
1274
+ attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
1275
+ attr_accessor validation_failure_mode: ("FAIL" | "WARN")
1276
+ attr_accessor validation_name: ::String
1277
+ attr_accessor validation_status: ("FAILED" | "SKIPPED")
1278
+ attr_accessor validation_status_reason: ::String
1279
+ attr_accessor validation_path: ::String
1280
+ SENSITIVE: []
1281
+ end
1282
+
1166
1283
  class OperationIdAlreadyExistsException < Aws::EmptyStructure
1167
1284
  end
1168
1285
 
@@ -1289,24 +1406,27 @@ module Aws::CloudFormation
1289
1406
 
1290
1407
  class ResourceChange
1291
1408
  attr_accessor policy_action: ("Delete" | "Retain" | "Snapshot" | "ReplaceAndDelete" | "ReplaceAndRetain" | "ReplaceAndSnapshot")
1292
- attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
1409
+ attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
1293
1410
  attr_accessor logical_resource_id: ::String
1294
1411
  attr_accessor physical_resource_id: ::String
1295
1412
  attr_accessor resource_type: ::String
1296
1413
  attr_accessor replacement: ("True" | "False" | "Conditional")
1297
1414
  attr_accessor scope: ::Array[("Properties" | "Metadata" | "CreationPolicy" | "UpdatePolicy" | "DeletionPolicy" | "UpdateReplacePolicy" | "Tags")]
1415
+ attr_accessor resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
1416
+ attr_accessor resource_drift_ignored_attributes: ::Array[Types::ResourceDriftIgnoredAttribute]
1298
1417
  attr_accessor details: ::Array[Types::ResourceChangeDetail]
1299
1418
  attr_accessor change_set_id: ::String
1300
1419
  attr_accessor module_info: Types::ModuleInfo
1301
1420
  attr_accessor before_context: ::String
1302
1421
  attr_accessor after_context: ::String
1422
+ attr_accessor previous_deployment_context: ::String
1303
1423
  SENSITIVE: []
1304
1424
  end
1305
1425
 
1306
1426
  class ResourceChangeDetail
1307
1427
  attr_accessor target: Types::ResourceTargetDefinition
1308
1428
  attr_accessor evaluation: ("Static" | "Dynamic")
1309
- attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic")
1429
+ attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic" | "NoModification")
1310
1430
  attr_accessor causing_entity: ::String
1311
1431
  SENSITIVE: []
1312
1432
  end
@@ -1328,6 +1448,12 @@ module Aws::CloudFormation
1328
1448
  SENSITIVE: []
1329
1449
  end
1330
1450
 
1451
+ class ResourceDriftIgnoredAttribute
1452
+ attr_accessor path: ::String
1453
+ attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY")
1454
+ SENSITIVE: []
1455
+ end
1456
+
1331
1457
  class ResourceIdentifierSummary
1332
1458
  attr_accessor resource_type: ::String
1333
1459
  attr_accessor logical_resource_ids: ::Array[::String]
@@ -1374,7 +1500,10 @@ module Aws::CloudFormation
1374
1500
  attr_accessor path: ::String
1375
1501
  attr_accessor before_value: ::String
1376
1502
  attr_accessor after_value: ::String
1377
- attr_accessor attribute_change_type: ("Add" | "Remove" | "Modify")
1503
+ attr_accessor before_value_from: ("PREVIOUS_DEPLOYMENT_STATE" | "ACTUAL_STATE")
1504
+ attr_accessor after_value_from: ("TEMPLATE")
1505
+ attr_accessor drift: Types::LiveResourceDrift
1506
+ attr_accessor attribute_change_type: ("Add" | "Remove" | "Modify" | "SyncWithActual")
1378
1507
  SENSITIVE: []
1379
1508
  end
1380
1509
 
@@ -1401,6 +1530,7 @@ module Aws::CloudFormation
1401
1530
 
1402
1531
  class RollbackStackOutput
1403
1532
  attr_accessor stack_id: ::String
1533
+ attr_accessor operation_id: ::String
1404
1534
  SENSITIVE: []
1405
1535
  end
1406
1536
 
@@ -1494,6 +1624,7 @@ module Aws::CloudFormation
1494
1624
  attr_accessor retain_except_on_create: bool
1495
1625
  attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
1496
1626
  attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
1627
+ attr_accessor last_operations: ::Array[Types::OperationEntry]
1497
1628
  SENSITIVE: []
1498
1629
  end
1499
1630
 
@@ -1520,6 +1651,7 @@ module Aws::CloudFormation
1520
1651
  attr_accessor stack_id: ::String
1521
1652
  attr_accessor event_id: ::String
1522
1653
  attr_accessor stack_name: ::String
1654
+ attr_accessor operation_id: ::String
1523
1655
  attr_accessor logical_resource_id: ::String
1524
1656
  attr_accessor physical_resource_id: ::String
1525
1657
  attr_accessor resource_type: ::String
@@ -1532,6 +1664,7 @@ module Aws::CloudFormation
1532
1664
  attr_accessor hook_status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
1533
1665
  attr_accessor hook_status_reason: ::String
1534
1666
  attr_accessor hook_invocation_point: ("PRE_PROVISION")
1667
+ attr_accessor hook_invocation_id: ::String
1535
1668
  attr_accessor hook_failure_mode: ("FAIL" | "WARN")
1536
1669
  attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
1537
1670
  SENSITIVE: []
@@ -1574,7 +1707,7 @@ module Aws::CloudFormation
1574
1707
  attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
1575
1708
  attr_accessor resource_type: ::String
1576
1709
  attr_accessor property_differences: ::Array[Types::PropertyDifference]
1577
- attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
1710
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
1578
1711
  attr_accessor timestamp: ::Time
1579
1712
  SENSITIVE: []
1580
1713
  end
@@ -1664,7 +1797,7 @@ module Aws::CloudFormation
1664
1797
  attr_accessor expected_properties: ::String
1665
1798
  attr_accessor actual_properties: ::String
1666
1799
  attr_accessor property_differences: ::Array[Types::PropertyDifference]
1667
- attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
1800
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
1668
1801
  attr_accessor timestamp: ::Time
1669
1802
  attr_accessor module_info: Types::ModuleInfo
1670
1803
  attr_accessor drift_status_reason: ::String
@@ -1672,13 +1805,13 @@ module Aws::CloudFormation
1672
1805
  end
1673
1806
 
1674
1807
  class StackResourceDriftInformation
1675
- attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
1808
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
1676
1809
  attr_accessor last_check_timestamp: ::Time
1677
1810
  SENSITIVE: []
1678
1811
  end
1679
1812
 
1680
1813
  class StackResourceDriftInformationSummary
1681
- attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
1814
+ attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
1682
1815
  attr_accessor last_check_timestamp: ::Time
1683
1816
  SENSITIVE: []
1684
1817
  end
@@ -1821,6 +1954,7 @@ module Aws::CloudFormation
1821
1954
  attr_accessor parent_id: ::String
1822
1955
  attr_accessor root_id: ::String
1823
1956
  attr_accessor drift_information: Types::StackDriftInformationSummary
1957
+ attr_accessor last_operations: ::Array[Types::OperationEntry]
1824
1958
  SENSITIVE: []
1825
1959
  end
1826
1960
 
@@ -2027,6 +2161,7 @@ module Aws::CloudFormation
2027
2161
 
2028
2162
  class UpdateStackOutput
2029
2163
  attr_accessor stack_id: ::String
2164
+ attr_accessor operation_id: ::String
2030
2165
  SENSITIVE: []
2031
2166
  end
2032
2167
 
@@ -2085,7 +2220,7 @@ module Aws::CloudFormation
2085
2220
  end
2086
2221
 
2087
2222
  class WarningDetail
2088
- attr_accessor type: ("MUTUALLY_EXCLUSIVE_PROPERTIES" | "UNSUPPORTED_PROPERTIES" | "MUTUALLY_EXCLUSIVE_TYPES" | "EXCLUDED_PROPERTIES")
2223
+ attr_accessor type: ("MUTUALLY_EXCLUSIVE_PROPERTIES" | "UNSUPPORTED_PROPERTIES" | "MUTUALLY_EXCLUSIVE_TYPES" | "EXCLUDED_PROPERTIES" | "EXCLUDED_RESOURCES")
2089
2224
  attr_accessor properties: ::Array[Types::WarningProperty]
2090
2225
  SENSITIVE: []
2091
2226
  end
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.134.0
4
+ version: 1.154.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -73,6 +73,7 @@ files:
73
73
  - sig/client.rbs
74
74
  - sig/errors.rbs
75
75
  - sig/event.rbs
76
+ - sig/params.rbs
76
77
  - sig/resource.rbs
77
78
  - sig/stack.rbs
78
79
  - sig/stack_resource.rbs