aws-sdk-cloudformation 1.144.0 → 1.145.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +177 -13
- data/lib/aws-sdk-cloudformation/client_api.rb +121 -0
- data/lib/aws-sdk-cloudformation/event.rb +7 -0
- data/lib/aws-sdk-cloudformation/stack.rb +6 -0
- data/lib/aws-sdk-cloudformation/types.rb +447 -10
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +26 -3
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +95 -10
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -198,7 +198,8 @@ module Aws
|
|
|
198
198
|
],
|
|
199
199
|
?include_nested_stacks: bool,
|
|
200
200
|
?on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
|
|
201
|
-
?import_existing_resources: bool
|
|
201
|
+
?import_existing_resources: bool,
|
|
202
|
+
?deployment_mode: ("REVERT_DRIFT")
|
|
202
203
|
) -> _CreateChangeSetResponseSuccess
|
|
203
204
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChangeSetResponseSuccess
|
|
204
205
|
|
|
@@ -227,6 +228,7 @@ module Aws
|
|
|
227
228
|
interface _CreateStackResponseSuccess
|
|
228
229
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackOutput]
|
|
229
230
|
def stack_id: () -> ::String
|
|
231
|
+
def operation_id: () -> ::String
|
|
230
232
|
end
|
|
231
233
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack-instance_method
|
|
232
234
|
def create_stack: (
|
|
@@ -499,6 +501,7 @@ module Aws
|
|
|
499
501
|
def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
500
502
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
501
503
|
def status_reason: () -> ::String
|
|
504
|
+
def stack_drift_status: () -> ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
502
505
|
def notification_arns: () -> ::Array[::String]
|
|
503
506
|
def rollback_configuration: () -> Types::RollbackConfiguration
|
|
504
507
|
def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -510,6 +513,7 @@ module Aws
|
|
|
510
513
|
def root_change_set_id: () -> ::String
|
|
511
514
|
def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
512
515
|
def import_existing_resources: () -> bool
|
|
516
|
+
def deployment_mode: () -> ("REVERT_DRIFT")
|
|
513
517
|
end
|
|
514
518
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
|
|
515
519
|
def describe_change_set: (
|
|
@@ -539,6 +543,23 @@ module Aws
|
|
|
539
543
|
) -> _DescribeChangeSetHooksResponseSuccess
|
|
540
544
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetHooksResponseSuccess
|
|
541
545
|
|
|
546
|
+
interface _DescribeEventsResponseSuccess
|
|
547
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsOutput]
|
|
548
|
+
def operation_events: () -> ::Array[Types::OperationEvent]
|
|
549
|
+
def next_token: () -> ::String
|
|
550
|
+
end
|
|
551
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_events-instance_method
|
|
552
|
+
def describe_events: (
|
|
553
|
+
?stack_name: ::String,
|
|
554
|
+
?change_set_name: ::String,
|
|
555
|
+
?operation_id: ::String,
|
|
556
|
+
?filters: {
|
|
557
|
+
failed_events: bool?
|
|
558
|
+
},
|
|
559
|
+
?next_token: ::String
|
|
560
|
+
) -> _DescribeEventsResponseSuccess
|
|
561
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
|
|
562
|
+
|
|
542
563
|
interface _DescribeGeneratedTemplateResponseSuccess
|
|
543
564
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGeneratedTemplateOutput]
|
|
544
565
|
def generated_template_id: () -> ::String
|
|
@@ -677,7 +698,7 @@ module Aws
|
|
|
677
698
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
|
|
678
699
|
def describe_stack_resource_drifts: (
|
|
679
700
|
stack_name: ::String,
|
|
680
|
-
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
701
|
+
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
681
702
|
?next_token: ::String,
|
|
682
703
|
?max_results: ::Integer
|
|
683
704
|
) -> _DescribeStackResourceDriftsResponseSuccess
|
|
@@ -1095,7 +1116,7 @@ module Aws
|
|
|
1095
1116
|
stack_set_name: ::String,
|
|
1096
1117
|
?next_token: ::String,
|
|
1097
1118
|
?max_results: ::Integer,
|
|
1098
|
-
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
1119
|
+
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
1099
1120
|
stack_instance_account: ::String,
|
|
1100
1121
|
stack_instance_region: ::String,
|
|
1101
1122
|
operation_id: ::String,
|
|
@@ -1352,6 +1373,7 @@ module Aws
|
|
|
1352
1373
|
interface _RollbackStackResponseSuccess
|
|
1353
1374
|
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
|
|
1354
1375
|
def stack_id: () -> ::String
|
|
1376
|
+
def operation_id: () -> ::String
|
|
1355
1377
|
end
|
|
1356
1378
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
|
|
1357
1379
|
def rollback_stack: (
|
|
@@ -1472,6 +1494,7 @@ module Aws
|
|
|
1472
1494
|
interface _UpdateStackResponseSuccess
|
|
1473
1495
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
|
|
1474
1496
|
def stack_id: () -> ::String
|
|
1497
|
+
def operation_id: () -> ::String
|
|
1475
1498
|
end
|
|
1476
1499
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
|
|
1477
1500
|
def update_stack: (
|
data/sig/event.rbs
CHANGED
|
@@ -24,6 +24,9 @@ module Aws
|
|
|
24
24
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#stack_name-instance_method
|
|
25
25
|
def stack_name: () -> ::String
|
|
26
26
|
|
|
27
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#operation_id-instance_method
|
|
28
|
+
def operation_id: () -> ::String
|
|
29
|
+
|
|
27
30
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#logical_resource_id-instance_method
|
|
28
31
|
def logical_resource_id: () -> ::String
|
|
29
32
|
|
data/sig/stack.rbs
CHANGED
|
@@ -90,6 +90,9 @@ module Aws
|
|
|
90
90
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#detailed_status-instance_method
|
|
91
91
|
def detailed_status: () -> ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
92
92
|
|
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#last_operations-instance_method
|
|
94
|
+
def last_operations: () -> ::Array[Types::OperationEntry]
|
|
95
|
+
|
|
93
96
|
def client: () -> Client
|
|
94
97
|
|
|
95
98
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#load-instance_method
|
data/sig/types.rbs
CHANGED
|
@@ -114,7 +114,7 @@ module Aws::CloudFormation
|
|
|
114
114
|
class ChangeSetHookResourceTargetDetails
|
|
115
115
|
attr_accessor logical_resource_id: ::String
|
|
116
116
|
attr_accessor resource_type: ::String
|
|
117
|
-
attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
|
|
117
|
+
attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
|
|
118
118
|
SENSITIVE: []
|
|
119
119
|
end
|
|
120
120
|
|
|
@@ -178,6 +178,7 @@ module Aws::CloudFormation
|
|
|
178
178
|
attr_accessor include_nested_stacks: bool
|
|
179
179
|
attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
180
180
|
attr_accessor import_existing_resources: bool
|
|
181
|
+
attr_accessor deployment_mode: ("REVERT_DRIFT")
|
|
181
182
|
SENSITIVE: []
|
|
182
183
|
end
|
|
183
184
|
|
|
@@ -241,6 +242,7 @@ module Aws::CloudFormation
|
|
|
241
242
|
|
|
242
243
|
class CreateStackOutput
|
|
243
244
|
attr_accessor stack_id: ::String
|
|
245
|
+
attr_accessor operation_id: ::String
|
|
244
246
|
SENSITIVE: []
|
|
245
247
|
end
|
|
246
248
|
|
|
@@ -417,6 +419,7 @@ module Aws::CloudFormation
|
|
|
417
419
|
attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
418
420
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
419
421
|
attr_accessor status_reason: ::String
|
|
422
|
+
attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
420
423
|
attr_accessor notification_arns: ::Array[::String]
|
|
421
424
|
attr_accessor rollback_configuration: Types::RollbackConfiguration
|
|
422
425
|
attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -428,6 +431,22 @@ module Aws::CloudFormation
|
|
|
428
431
|
attr_accessor root_change_set_id: ::String
|
|
429
432
|
attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
430
433
|
attr_accessor import_existing_resources: bool
|
|
434
|
+
attr_accessor deployment_mode: ("REVERT_DRIFT")
|
|
435
|
+
SENSITIVE: []
|
|
436
|
+
end
|
|
437
|
+
|
|
438
|
+
class DescribeEventsInput
|
|
439
|
+
attr_accessor stack_name: ::String
|
|
440
|
+
attr_accessor change_set_name: ::String
|
|
441
|
+
attr_accessor operation_id: ::String
|
|
442
|
+
attr_accessor filters: Types::EventFilter
|
|
443
|
+
attr_accessor next_token: ::String
|
|
444
|
+
SENSITIVE: []
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
class DescribeEventsOutput
|
|
448
|
+
attr_accessor operation_events: ::Array[Types::OperationEvent]
|
|
449
|
+
attr_accessor next_token: ::String
|
|
431
450
|
SENSITIVE: []
|
|
432
451
|
end
|
|
433
452
|
|
|
@@ -552,7 +571,7 @@ module Aws::CloudFormation
|
|
|
552
571
|
|
|
553
572
|
class DescribeStackResourceDriftsInput
|
|
554
573
|
attr_accessor stack_name: ::String
|
|
555
|
-
attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
|
|
574
|
+
attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")]
|
|
556
575
|
attr_accessor next_token: ::String
|
|
557
576
|
attr_accessor max_results: ::Integer
|
|
558
577
|
SENSITIVE: []
|
|
@@ -723,6 +742,11 @@ module Aws::CloudFormation
|
|
|
723
742
|
SENSITIVE: []
|
|
724
743
|
end
|
|
725
744
|
|
|
745
|
+
class EventFilter
|
|
746
|
+
attr_accessor failed_events: bool
|
|
747
|
+
SENSITIVE: []
|
|
748
|
+
end
|
|
749
|
+
|
|
726
750
|
class ExecuteChangeSetInput
|
|
727
751
|
attr_accessor change_set_name: ::String
|
|
728
752
|
attr_accessor stack_name: ::String
|
|
@@ -1002,7 +1026,7 @@ module Aws::CloudFormation
|
|
|
1002
1026
|
attr_accessor stack_set_name: ::String
|
|
1003
1027
|
attr_accessor next_token: ::String
|
|
1004
1028
|
attr_accessor max_results: ::Integer
|
|
1005
|
-
attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
|
|
1029
|
+
attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")]
|
|
1006
1030
|
attr_accessor stack_instance_account: ::String
|
|
1007
1031
|
attr_accessor stack_instance_region: ::String
|
|
1008
1032
|
attr_accessor operation_id: ::String
|
|
@@ -1191,6 +1215,13 @@ module Aws::CloudFormation
|
|
|
1191
1215
|
SENSITIVE: []
|
|
1192
1216
|
end
|
|
1193
1217
|
|
|
1218
|
+
class LiveResourceDrift
|
|
1219
|
+
attr_accessor previous_value: ::String
|
|
1220
|
+
attr_accessor actual_value: ::String
|
|
1221
|
+
attr_accessor drift_detection_timestamp: ::Time
|
|
1222
|
+
SENSITIVE: []
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1194
1225
|
class LoggingConfig
|
|
1195
1226
|
attr_accessor log_role_arn: ::String
|
|
1196
1227
|
attr_accessor log_group_name: ::String
|
|
@@ -1211,6 +1242,43 @@ module Aws::CloudFormation
|
|
|
1211
1242
|
class NameAlreadyExistsException < Aws::EmptyStructure
|
|
1212
1243
|
end
|
|
1213
1244
|
|
|
1245
|
+
class OperationEntry
|
|
1246
|
+
attr_accessor operation_type: ("CREATE_STACK" | "UPDATE_STACK" | "DELETE_STACK" | "CONTINUE_ROLLBACK" | "ROLLBACK" | "CREATE_CHANGESET")
|
|
1247
|
+
attr_accessor operation_id: ::String
|
|
1248
|
+
SENSITIVE: []
|
|
1249
|
+
end
|
|
1250
|
+
|
|
1251
|
+
class OperationEvent
|
|
1252
|
+
attr_accessor event_id: ::String
|
|
1253
|
+
attr_accessor stack_id: ::String
|
|
1254
|
+
attr_accessor operation_id: ::String
|
|
1255
|
+
attr_accessor operation_type: ("CREATE_STACK" | "UPDATE_STACK" | "DELETE_STACK" | "CONTINUE_ROLLBACK" | "ROLLBACK" | "CREATE_CHANGESET")
|
|
1256
|
+
attr_accessor operation_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
1257
|
+
attr_accessor event_type: ("STACK_EVENT" | "PROGRESS_EVENT" | "VALIDATION_ERROR" | "PROVISIONING_ERROR" | "HOOK_INVOCATION_ERROR")
|
|
1258
|
+
attr_accessor logical_resource_id: ::String
|
|
1259
|
+
attr_accessor physical_resource_id: ::String
|
|
1260
|
+
attr_accessor resource_type: ::String
|
|
1261
|
+
attr_accessor timestamp: ::Time
|
|
1262
|
+
attr_accessor start_time: ::Time
|
|
1263
|
+
attr_accessor end_time: ::Time
|
|
1264
|
+
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")
|
|
1265
|
+
attr_accessor resource_status_reason: ::String
|
|
1266
|
+
attr_accessor resource_properties: ::String
|
|
1267
|
+
attr_accessor client_request_token: ::String
|
|
1268
|
+
attr_accessor hook_type: ::String
|
|
1269
|
+
attr_accessor hook_status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
1270
|
+
attr_accessor hook_status_reason: ::String
|
|
1271
|
+
attr_accessor hook_invocation_point: ("PRE_PROVISION")
|
|
1272
|
+
attr_accessor hook_failure_mode: ("FAIL" | "WARN")
|
|
1273
|
+
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
1274
|
+
attr_accessor validation_failure_mode: ("FAIL" | "WARN")
|
|
1275
|
+
attr_accessor validation_name: ::String
|
|
1276
|
+
attr_accessor validation_status: ("FAILED" | "SKIPPED")
|
|
1277
|
+
attr_accessor validation_status_reason: ::String
|
|
1278
|
+
attr_accessor validation_path: ::String
|
|
1279
|
+
SENSITIVE: []
|
|
1280
|
+
end
|
|
1281
|
+
|
|
1214
1282
|
class OperationIdAlreadyExistsException < Aws::EmptyStructure
|
|
1215
1283
|
end
|
|
1216
1284
|
|
|
@@ -1337,24 +1405,27 @@ module Aws::CloudFormation
|
|
|
1337
1405
|
|
|
1338
1406
|
class ResourceChange
|
|
1339
1407
|
attr_accessor policy_action: ("Delete" | "Retain" | "Snapshot" | "ReplaceAndDelete" | "ReplaceAndRetain" | "ReplaceAndSnapshot")
|
|
1340
|
-
attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
|
|
1408
|
+
attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
|
|
1341
1409
|
attr_accessor logical_resource_id: ::String
|
|
1342
1410
|
attr_accessor physical_resource_id: ::String
|
|
1343
1411
|
attr_accessor resource_type: ::String
|
|
1344
1412
|
attr_accessor replacement: ("True" | "False" | "Conditional")
|
|
1345
1413
|
attr_accessor scope: ::Array[("Properties" | "Metadata" | "CreationPolicy" | "UpdatePolicy" | "DeletionPolicy" | "UpdateReplacePolicy" | "Tags")]
|
|
1414
|
+
attr_accessor resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1415
|
+
attr_accessor resource_drift_ignored_attributes: ::Array[Types::ResourceDriftIgnoredAttribute]
|
|
1346
1416
|
attr_accessor details: ::Array[Types::ResourceChangeDetail]
|
|
1347
1417
|
attr_accessor change_set_id: ::String
|
|
1348
1418
|
attr_accessor module_info: Types::ModuleInfo
|
|
1349
1419
|
attr_accessor before_context: ::String
|
|
1350
1420
|
attr_accessor after_context: ::String
|
|
1421
|
+
attr_accessor previous_deployment_context: ::String
|
|
1351
1422
|
SENSITIVE: []
|
|
1352
1423
|
end
|
|
1353
1424
|
|
|
1354
1425
|
class ResourceChangeDetail
|
|
1355
1426
|
attr_accessor target: Types::ResourceTargetDefinition
|
|
1356
1427
|
attr_accessor evaluation: ("Static" | "Dynamic")
|
|
1357
|
-
attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic")
|
|
1428
|
+
attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic" | "NoModification")
|
|
1358
1429
|
attr_accessor causing_entity: ::String
|
|
1359
1430
|
SENSITIVE: []
|
|
1360
1431
|
end
|
|
@@ -1376,6 +1447,12 @@ module Aws::CloudFormation
|
|
|
1376
1447
|
SENSITIVE: []
|
|
1377
1448
|
end
|
|
1378
1449
|
|
|
1450
|
+
class ResourceDriftIgnoredAttribute
|
|
1451
|
+
attr_accessor path: ::String
|
|
1452
|
+
attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY")
|
|
1453
|
+
SENSITIVE: []
|
|
1454
|
+
end
|
|
1455
|
+
|
|
1379
1456
|
class ResourceIdentifierSummary
|
|
1380
1457
|
attr_accessor resource_type: ::String
|
|
1381
1458
|
attr_accessor logical_resource_ids: ::Array[::String]
|
|
@@ -1422,7 +1499,10 @@ module Aws::CloudFormation
|
|
|
1422
1499
|
attr_accessor path: ::String
|
|
1423
1500
|
attr_accessor before_value: ::String
|
|
1424
1501
|
attr_accessor after_value: ::String
|
|
1425
|
-
attr_accessor
|
|
1502
|
+
attr_accessor before_value_from: ("PREVIOUS_DEPLOYMENT_STATE" | "ACTUAL_STATE")
|
|
1503
|
+
attr_accessor after_value_from: ("TEMPLATE")
|
|
1504
|
+
attr_accessor drift: Types::LiveResourceDrift
|
|
1505
|
+
attr_accessor attribute_change_type: ("Add" | "Remove" | "Modify" | "SyncWithActual")
|
|
1426
1506
|
SENSITIVE: []
|
|
1427
1507
|
end
|
|
1428
1508
|
|
|
@@ -1449,6 +1529,7 @@ module Aws::CloudFormation
|
|
|
1449
1529
|
|
|
1450
1530
|
class RollbackStackOutput
|
|
1451
1531
|
attr_accessor stack_id: ::String
|
|
1532
|
+
attr_accessor operation_id: ::String
|
|
1452
1533
|
SENSITIVE: []
|
|
1453
1534
|
end
|
|
1454
1535
|
|
|
@@ -1542,6 +1623,7 @@ module Aws::CloudFormation
|
|
|
1542
1623
|
attr_accessor retain_except_on_create: bool
|
|
1543
1624
|
attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
|
1544
1625
|
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
1626
|
+
attr_accessor last_operations: ::Array[Types::OperationEntry]
|
|
1545
1627
|
SENSITIVE: []
|
|
1546
1628
|
end
|
|
1547
1629
|
|
|
@@ -1568,6 +1650,7 @@ module Aws::CloudFormation
|
|
|
1568
1650
|
attr_accessor stack_id: ::String
|
|
1569
1651
|
attr_accessor event_id: ::String
|
|
1570
1652
|
attr_accessor stack_name: ::String
|
|
1653
|
+
attr_accessor operation_id: ::String
|
|
1571
1654
|
attr_accessor logical_resource_id: ::String
|
|
1572
1655
|
attr_accessor physical_resource_id: ::String
|
|
1573
1656
|
attr_accessor resource_type: ::String
|
|
@@ -1623,7 +1706,7 @@ module Aws::CloudFormation
|
|
|
1623
1706
|
attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
|
|
1624
1707
|
attr_accessor resource_type: ::String
|
|
1625
1708
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
|
1626
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1709
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1627
1710
|
attr_accessor timestamp: ::Time
|
|
1628
1711
|
SENSITIVE: []
|
|
1629
1712
|
end
|
|
@@ -1713,7 +1796,7 @@ module Aws::CloudFormation
|
|
|
1713
1796
|
attr_accessor expected_properties: ::String
|
|
1714
1797
|
attr_accessor actual_properties: ::String
|
|
1715
1798
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
|
1716
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1799
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1717
1800
|
attr_accessor timestamp: ::Time
|
|
1718
1801
|
attr_accessor module_info: Types::ModuleInfo
|
|
1719
1802
|
attr_accessor drift_status_reason: ::String
|
|
@@ -1721,13 +1804,13 @@ module Aws::CloudFormation
|
|
|
1721
1804
|
end
|
|
1722
1805
|
|
|
1723
1806
|
class StackResourceDriftInformation
|
|
1724
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1807
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1725
1808
|
attr_accessor last_check_timestamp: ::Time
|
|
1726
1809
|
SENSITIVE: []
|
|
1727
1810
|
end
|
|
1728
1811
|
|
|
1729
1812
|
class StackResourceDriftInformationSummary
|
|
1730
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1813
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1731
1814
|
attr_accessor last_check_timestamp: ::Time
|
|
1732
1815
|
SENSITIVE: []
|
|
1733
1816
|
end
|
|
@@ -1870,6 +1953,7 @@ module Aws::CloudFormation
|
|
|
1870
1953
|
attr_accessor parent_id: ::String
|
|
1871
1954
|
attr_accessor root_id: ::String
|
|
1872
1955
|
attr_accessor drift_information: Types::StackDriftInformationSummary
|
|
1956
|
+
attr_accessor last_operations: ::Array[Types::OperationEntry]
|
|
1873
1957
|
SENSITIVE: []
|
|
1874
1958
|
end
|
|
1875
1959
|
|
|
@@ -2076,6 +2160,7 @@ module Aws::CloudFormation
|
|
|
2076
2160
|
|
|
2077
2161
|
class UpdateStackOutput
|
|
2078
2162
|
attr_accessor stack_id: ::String
|
|
2163
|
+
attr_accessor operation_id: ::String
|
|
2079
2164
|
SENSITIVE: []
|
|
2080
2165
|
end
|
|
2081
2166
|
|