aws-sdk-cloudformation 1.143.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +345 -131
- data/lib/aws-sdk-cloudformation/client_api.rb +178 -1
- data/lib/aws-sdk-cloudformation/event.rb +7 -0
- data/lib/aws-sdk-cloudformation/resource.rb +4 -11
- data/lib/aws-sdk-cloudformation/stack.rb +24 -16
- data/lib/aws-sdk-cloudformation/types.rb +745 -144
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +50 -5
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +135 -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
|
|
@@ -624,10 +645,10 @@ module Aws
|
|
|
624
645
|
end
|
|
625
646
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_events-instance_method
|
|
626
647
|
def describe_stack_events: (
|
|
627
|
-
|
|
648
|
+
stack_name: ::String,
|
|
628
649
|
?next_token: ::String
|
|
629
650
|
) -> _DescribeStackEventsResponseSuccess
|
|
630
|
-
| (
|
|
651
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackEventsResponseSuccess
|
|
631
652
|
|
|
632
653
|
interface _DescribeStackInstanceResponseSuccess
|
|
633
654
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackInstanceOutput]
|
|
@@ -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
|
|
@@ -877,6 +898,28 @@ module Aws
|
|
|
877
898
|
) -> _GetGeneratedTemplateResponseSuccess
|
|
878
899
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGeneratedTemplateResponseSuccess
|
|
879
900
|
|
|
901
|
+
interface _GetHookResultResponseSuccess
|
|
902
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetHookResultOutput]
|
|
903
|
+
def hook_result_id: () -> ::String
|
|
904
|
+
def invocation_point: () -> ("PRE_PROVISION")
|
|
905
|
+
def failure_mode: () -> ("FAIL" | "WARN")
|
|
906
|
+
def type_name: () -> ::String
|
|
907
|
+
def original_type_name: () -> ::String
|
|
908
|
+
def type_version_id: () -> ::String
|
|
909
|
+
def type_configuration_version_id: () -> ::String
|
|
910
|
+
def type_arn: () -> ::String
|
|
911
|
+
def status: () -> ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
912
|
+
def hook_status_reason: () -> ::String
|
|
913
|
+
def invoked_at: () -> ::Time
|
|
914
|
+
def target: () -> Types::HookTarget
|
|
915
|
+
def annotations: () -> ::Array[Types::Annotation]
|
|
916
|
+
end
|
|
917
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_hook_result-instance_method
|
|
918
|
+
def get_hook_result: (
|
|
919
|
+
?hook_result_id: ::String
|
|
920
|
+
) -> _GetHookResultResponseSuccess
|
|
921
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHookResultResponseSuccess
|
|
922
|
+
|
|
880
923
|
interface _GetStackPolicyResponseSuccess
|
|
881
924
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStackPolicyOutput]
|
|
882
925
|
def stack_policy_body: () -> ::String
|
|
@@ -1073,7 +1116,7 @@ module Aws
|
|
|
1073
1116
|
stack_set_name: ::String,
|
|
1074
1117
|
?next_token: ::String,
|
|
1075
1118
|
?max_results: ::Integer,
|
|
1076
|
-
?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")],
|
|
1077
1120
|
stack_instance_account: ::String,
|
|
1078
1121
|
stack_instance_region: ::String,
|
|
1079
1122
|
operation_id: ::String,
|
|
@@ -1330,6 +1373,7 @@ module Aws
|
|
|
1330
1373
|
interface _RollbackStackResponseSuccess
|
|
1331
1374
|
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
|
|
1332
1375
|
def stack_id: () -> ::String
|
|
1376
|
+
def operation_id: () -> ::String
|
|
1333
1377
|
end
|
|
1334
1378
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
|
|
1335
1379
|
def rollback_stack: (
|
|
@@ -1450,6 +1494,7 @@ module Aws
|
|
|
1450
1494
|
interface _UpdateStackResponseSuccess
|
|
1451
1495
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
|
|
1452
1496
|
def stack_id: () -> ::String
|
|
1497
|
+
def operation_id: () -> ::String
|
|
1453
1498
|
end
|
|
1454
1499
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
|
|
1455
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
|
@@ -48,6 +48,16 @@ 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
|
|
@@ -104,7 +114,7 @@ module Aws::CloudFormation
|
|
|
104
114
|
class ChangeSetHookResourceTargetDetails
|
|
105
115
|
attr_accessor logical_resource_id: ::String
|
|
106
116
|
attr_accessor resource_type: ::String
|
|
107
|
-
attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
|
|
117
|
+
attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
|
|
108
118
|
SENSITIVE: []
|
|
109
119
|
end
|
|
110
120
|
|
|
@@ -168,6 +178,7 @@ module Aws::CloudFormation
|
|
|
168
178
|
attr_accessor include_nested_stacks: bool
|
|
169
179
|
attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
170
180
|
attr_accessor import_existing_resources: bool
|
|
181
|
+
attr_accessor deployment_mode: ("REVERT_DRIFT")
|
|
171
182
|
SENSITIVE: []
|
|
172
183
|
end
|
|
173
184
|
|
|
@@ -231,6 +242,7 @@ module Aws::CloudFormation
|
|
|
231
242
|
|
|
232
243
|
class CreateStackOutput
|
|
233
244
|
attr_accessor stack_id: ::String
|
|
245
|
+
attr_accessor operation_id: ::String
|
|
234
246
|
SENSITIVE: []
|
|
235
247
|
end
|
|
236
248
|
|
|
@@ -407,6 +419,7 @@ module Aws::CloudFormation
|
|
|
407
419
|
attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
408
420
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
409
421
|
attr_accessor status_reason: ::String
|
|
422
|
+
attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
410
423
|
attr_accessor notification_arns: ::Array[::String]
|
|
411
424
|
attr_accessor rollback_configuration: Types::RollbackConfiguration
|
|
412
425
|
attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -418,6 +431,22 @@ module Aws::CloudFormation
|
|
|
418
431
|
attr_accessor root_change_set_id: ::String
|
|
419
432
|
attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
420
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
|
|
421
450
|
SENSITIVE: []
|
|
422
451
|
end
|
|
423
452
|
|
|
@@ -542,7 +571,7 @@ module Aws::CloudFormation
|
|
|
542
571
|
|
|
543
572
|
class DescribeStackResourceDriftsInput
|
|
544
573
|
attr_accessor stack_name: ::String
|
|
545
|
-
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")]
|
|
546
575
|
attr_accessor next_token: ::String
|
|
547
576
|
attr_accessor max_results: ::Integer
|
|
548
577
|
SENSITIVE: []
|
|
@@ -713,6 +742,11 @@ module Aws::CloudFormation
|
|
|
713
742
|
SENSITIVE: []
|
|
714
743
|
end
|
|
715
744
|
|
|
745
|
+
class EventFilter
|
|
746
|
+
attr_accessor failed_events: bool
|
|
747
|
+
SENSITIVE: []
|
|
748
|
+
end
|
|
749
|
+
|
|
716
750
|
class ExecuteChangeSetInput
|
|
717
751
|
attr_accessor change_set_name: ::String
|
|
718
752
|
attr_accessor stack_name: ::String
|
|
@@ -752,6 +786,28 @@ module Aws::CloudFormation
|
|
|
752
786
|
SENSITIVE: []
|
|
753
787
|
end
|
|
754
788
|
|
|
789
|
+
class GetHookResultInput
|
|
790
|
+
attr_accessor hook_result_id: ::String
|
|
791
|
+
SENSITIVE: []
|
|
792
|
+
end
|
|
793
|
+
|
|
794
|
+
class GetHookResultOutput
|
|
795
|
+
attr_accessor hook_result_id: ::String
|
|
796
|
+
attr_accessor invocation_point: ("PRE_PROVISION")
|
|
797
|
+
attr_accessor failure_mode: ("FAIL" | "WARN")
|
|
798
|
+
attr_accessor type_name: ::String
|
|
799
|
+
attr_accessor original_type_name: ::String
|
|
800
|
+
attr_accessor type_version_id: ::String
|
|
801
|
+
attr_accessor type_configuration_version_id: ::String
|
|
802
|
+
attr_accessor type_arn: ::String
|
|
803
|
+
attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
804
|
+
attr_accessor hook_status_reason: ::String
|
|
805
|
+
attr_accessor invoked_at: ::Time
|
|
806
|
+
attr_accessor target: Types::HookTarget
|
|
807
|
+
attr_accessor annotations: ::Array[Types::Annotation]
|
|
808
|
+
SENSITIVE: []
|
|
809
|
+
end
|
|
810
|
+
|
|
755
811
|
class GetStackPolicyInput
|
|
756
812
|
attr_accessor stack_name: ::String
|
|
757
813
|
SENSITIVE: []
|
|
@@ -819,6 +875,14 @@ module Aws::CloudFormation
|
|
|
819
875
|
SENSITIVE: []
|
|
820
876
|
end
|
|
821
877
|
|
|
878
|
+
class HookTarget
|
|
879
|
+
attr_accessor target_type: ("RESOURCE")
|
|
880
|
+
attr_accessor target_type_name: ::String
|
|
881
|
+
attr_accessor target_id: ::String
|
|
882
|
+
attr_accessor action: ("CREATE" | "UPDATE" | "DELETE" | "IMPORT")
|
|
883
|
+
SENSITIVE: []
|
|
884
|
+
end
|
|
885
|
+
|
|
822
886
|
class ImportStacksToStackSetInput
|
|
823
887
|
attr_accessor stack_set_name: ::String
|
|
824
888
|
attr_accessor stack_ids: ::Array[::String]
|
|
@@ -962,7 +1026,7 @@ module Aws::CloudFormation
|
|
|
962
1026
|
attr_accessor stack_set_name: ::String
|
|
963
1027
|
attr_accessor next_token: ::String
|
|
964
1028
|
attr_accessor max_results: ::Integer
|
|
965
|
-
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")]
|
|
966
1030
|
attr_accessor stack_instance_account: ::String
|
|
967
1031
|
attr_accessor stack_instance_region: ::String
|
|
968
1032
|
attr_accessor operation_id: ::String
|
|
@@ -1151,6 +1215,13 @@ module Aws::CloudFormation
|
|
|
1151
1215
|
SENSITIVE: []
|
|
1152
1216
|
end
|
|
1153
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
|
+
|
|
1154
1225
|
class LoggingConfig
|
|
1155
1226
|
attr_accessor log_role_arn: ::String
|
|
1156
1227
|
attr_accessor log_group_name: ::String
|
|
@@ -1171,6 +1242,43 @@ module Aws::CloudFormation
|
|
|
1171
1242
|
class NameAlreadyExistsException < Aws::EmptyStructure
|
|
1172
1243
|
end
|
|
1173
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
|
+
|
|
1174
1282
|
class OperationIdAlreadyExistsException < Aws::EmptyStructure
|
|
1175
1283
|
end
|
|
1176
1284
|
|
|
@@ -1297,24 +1405,27 @@ module Aws::CloudFormation
|
|
|
1297
1405
|
|
|
1298
1406
|
class ResourceChange
|
|
1299
1407
|
attr_accessor policy_action: ("Delete" | "Retain" | "Snapshot" | "ReplaceAndDelete" | "ReplaceAndRetain" | "ReplaceAndSnapshot")
|
|
1300
|
-
attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
|
|
1408
|
+
attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
|
|
1301
1409
|
attr_accessor logical_resource_id: ::String
|
|
1302
1410
|
attr_accessor physical_resource_id: ::String
|
|
1303
1411
|
attr_accessor resource_type: ::String
|
|
1304
1412
|
attr_accessor replacement: ("True" | "False" | "Conditional")
|
|
1305
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]
|
|
1306
1416
|
attr_accessor details: ::Array[Types::ResourceChangeDetail]
|
|
1307
1417
|
attr_accessor change_set_id: ::String
|
|
1308
1418
|
attr_accessor module_info: Types::ModuleInfo
|
|
1309
1419
|
attr_accessor before_context: ::String
|
|
1310
1420
|
attr_accessor after_context: ::String
|
|
1421
|
+
attr_accessor previous_deployment_context: ::String
|
|
1311
1422
|
SENSITIVE: []
|
|
1312
1423
|
end
|
|
1313
1424
|
|
|
1314
1425
|
class ResourceChangeDetail
|
|
1315
1426
|
attr_accessor target: Types::ResourceTargetDefinition
|
|
1316
1427
|
attr_accessor evaluation: ("Static" | "Dynamic")
|
|
1317
|
-
attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic")
|
|
1428
|
+
attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic" | "NoModification")
|
|
1318
1429
|
attr_accessor causing_entity: ::String
|
|
1319
1430
|
SENSITIVE: []
|
|
1320
1431
|
end
|
|
@@ -1336,6 +1447,12 @@ module Aws::CloudFormation
|
|
|
1336
1447
|
SENSITIVE: []
|
|
1337
1448
|
end
|
|
1338
1449
|
|
|
1450
|
+
class ResourceDriftIgnoredAttribute
|
|
1451
|
+
attr_accessor path: ::String
|
|
1452
|
+
attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY")
|
|
1453
|
+
SENSITIVE: []
|
|
1454
|
+
end
|
|
1455
|
+
|
|
1339
1456
|
class ResourceIdentifierSummary
|
|
1340
1457
|
attr_accessor resource_type: ::String
|
|
1341
1458
|
attr_accessor logical_resource_ids: ::Array[::String]
|
|
@@ -1382,7 +1499,10 @@ module Aws::CloudFormation
|
|
|
1382
1499
|
attr_accessor path: ::String
|
|
1383
1500
|
attr_accessor before_value: ::String
|
|
1384
1501
|
attr_accessor after_value: ::String
|
|
1385
|
-
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")
|
|
1386
1506
|
SENSITIVE: []
|
|
1387
1507
|
end
|
|
1388
1508
|
|
|
@@ -1409,6 +1529,7 @@ module Aws::CloudFormation
|
|
|
1409
1529
|
|
|
1410
1530
|
class RollbackStackOutput
|
|
1411
1531
|
attr_accessor stack_id: ::String
|
|
1532
|
+
attr_accessor operation_id: ::String
|
|
1412
1533
|
SENSITIVE: []
|
|
1413
1534
|
end
|
|
1414
1535
|
|
|
@@ -1502,6 +1623,7 @@ module Aws::CloudFormation
|
|
|
1502
1623
|
attr_accessor retain_except_on_create: bool
|
|
1503
1624
|
attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
|
1504
1625
|
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
1626
|
+
attr_accessor last_operations: ::Array[Types::OperationEntry]
|
|
1505
1627
|
SENSITIVE: []
|
|
1506
1628
|
end
|
|
1507
1629
|
|
|
@@ -1528,6 +1650,7 @@ module Aws::CloudFormation
|
|
|
1528
1650
|
attr_accessor stack_id: ::String
|
|
1529
1651
|
attr_accessor event_id: ::String
|
|
1530
1652
|
attr_accessor stack_name: ::String
|
|
1653
|
+
attr_accessor operation_id: ::String
|
|
1531
1654
|
attr_accessor logical_resource_id: ::String
|
|
1532
1655
|
attr_accessor physical_resource_id: ::String
|
|
1533
1656
|
attr_accessor resource_type: ::String
|
|
@@ -1583,7 +1706,7 @@ module Aws::CloudFormation
|
|
|
1583
1706
|
attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
|
|
1584
1707
|
attr_accessor resource_type: ::String
|
|
1585
1708
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
|
1586
|
-
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")
|
|
1587
1710
|
attr_accessor timestamp: ::Time
|
|
1588
1711
|
SENSITIVE: []
|
|
1589
1712
|
end
|
|
@@ -1673,7 +1796,7 @@ module Aws::CloudFormation
|
|
|
1673
1796
|
attr_accessor expected_properties: ::String
|
|
1674
1797
|
attr_accessor actual_properties: ::String
|
|
1675
1798
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
|
1676
|
-
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")
|
|
1677
1800
|
attr_accessor timestamp: ::Time
|
|
1678
1801
|
attr_accessor module_info: Types::ModuleInfo
|
|
1679
1802
|
attr_accessor drift_status_reason: ::String
|
|
@@ -1681,13 +1804,13 @@ module Aws::CloudFormation
|
|
|
1681
1804
|
end
|
|
1682
1805
|
|
|
1683
1806
|
class StackResourceDriftInformation
|
|
1684
|
-
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")
|
|
1685
1808
|
attr_accessor last_check_timestamp: ::Time
|
|
1686
1809
|
SENSITIVE: []
|
|
1687
1810
|
end
|
|
1688
1811
|
|
|
1689
1812
|
class StackResourceDriftInformationSummary
|
|
1690
|
-
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")
|
|
1691
1814
|
attr_accessor last_check_timestamp: ::Time
|
|
1692
1815
|
SENSITIVE: []
|
|
1693
1816
|
end
|
|
@@ -1830,6 +1953,7 @@ module Aws::CloudFormation
|
|
|
1830
1953
|
attr_accessor parent_id: ::String
|
|
1831
1954
|
attr_accessor root_id: ::String
|
|
1832
1955
|
attr_accessor drift_information: Types::StackDriftInformationSummary
|
|
1956
|
+
attr_accessor last_operations: ::Array[Types::OperationEntry]
|
|
1833
1957
|
SENSITIVE: []
|
|
1834
1958
|
end
|
|
1835
1959
|
|
|
@@ -2036,6 +2160,7 @@ module Aws::CloudFormation
|
|
|
2036
2160
|
|
|
2037
2161
|
class UpdateStackOutput
|
|
2038
2162
|
attr_accessor stack_id: ::String
|
|
2163
|
+
attr_accessor operation_id: ::String
|
|
2039
2164
|
SENSITIVE: []
|
|
2040
2165
|
end
|
|
2041
2166
|
|