aws-sdk-cloudformation 1.134.0 → 1.150.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 +80 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +775 -454
- data/lib/aws-sdk-cloudformation/client_api.rb +195 -3
- data/lib/aws-sdk-cloudformation/customizations.rb +0 -8
- data/lib/aws-sdk-cloudformation/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-cloudformation/errors.rb +0 -1
- data/lib/aws-sdk-cloudformation/event.rb +19 -6
- data/lib/aws-sdk-cloudformation/resource.rb +12 -11
- data/lib/aws-sdk-cloudformation/stack.rb +33 -17
- data/lib/aws-sdk-cloudformation/types.rb +1374 -692
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +60 -10
- data/sig/event.rbs +6 -0
- data/sig/resource.rbs +1 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +146 -11
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
|
@@ -197,7 +198,8 @@ module Aws
|
|
|
197
198
|
],
|
|
198
199
|
?include_nested_stacks: bool,
|
|
199
200
|
?on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
|
|
200
|
-
?import_existing_resources: bool
|
|
201
|
+
?import_existing_resources: bool,
|
|
202
|
+
?deployment_mode: ("REVERT_DRIFT")
|
|
201
203
|
) -> _CreateChangeSetResponseSuccess
|
|
202
204
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChangeSetResponseSuccess
|
|
203
205
|
|
|
@@ -226,6 +228,7 @@ module Aws
|
|
|
226
228
|
interface _CreateStackResponseSuccess
|
|
227
229
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackOutput]
|
|
228
230
|
def stack_id: () -> ::String
|
|
231
|
+
def operation_id: () -> ::String
|
|
229
232
|
end
|
|
230
233
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack-instance_method
|
|
231
234
|
def create_stack: (
|
|
@@ -368,7 +371,8 @@ module Aws
|
|
|
368
371
|
?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
|
|
369
372
|
?auto_deployment: {
|
|
370
373
|
enabled: bool?,
|
|
371
|
-
retain_stacks_on_account_removal: bool
|
|
374
|
+
retain_stacks_on_account_removal: bool?,
|
|
375
|
+
depends_on: Array[::String]?
|
|
372
376
|
},
|
|
373
377
|
?call_as: ("SELF" | "DELEGATED_ADMIN"),
|
|
374
378
|
?client_request_token: ::String,
|
|
@@ -498,6 +502,7 @@ module Aws
|
|
|
498
502
|
def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
499
503
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
500
504
|
def status_reason: () -> ::String
|
|
505
|
+
def stack_drift_status: () -> ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
501
506
|
def notification_arns: () -> ::Array[::String]
|
|
502
507
|
def rollback_configuration: () -> Types::RollbackConfiguration
|
|
503
508
|
def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -509,6 +514,7 @@ module Aws
|
|
|
509
514
|
def root_change_set_id: () -> ::String
|
|
510
515
|
def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
511
516
|
def import_existing_resources: () -> bool
|
|
517
|
+
def deployment_mode: () -> ("REVERT_DRIFT")
|
|
512
518
|
end
|
|
513
519
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
|
|
514
520
|
def describe_change_set: (
|
|
@@ -538,6 +544,23 @@ module Aws
|
|
|
538
544
|
) -> _DescribeChangeSetHooksResponseSuccess
|
|
539
545
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetHooksResponseSuccess
|
|
540
546
|
|
|
547
|
+
interface _DescribeEventsResponseSuccess
|
|
548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsOutput]
|
|
549
|
+
def operation_events: () -> ::Array[Types::OperationEvent]
|
|
550
|
+
def next_token: () -> ::String
|
|
551
|
+
end
|
|
552
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_events-instance_method
|
|
553
|
+
def describe_events: (
|
|
554
|
+
?stack_name: ::String,
|
|
555
|
+
?change_set_name: ::String,
|
|
556
|
+
?operation_id: ::String,
|
|
557
|
+
?filters: {
|
|
558
|
+
failed_events: bool?
|
|
559
|
+
},
|
|
560
|
+
?next_token: ::String
|
|
561
|
+
) -> _DescribeEventsResponseSuccess
|
|
562
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
|
|
563
|
+
|
|
541
564
|
interface _DescribeGeneratedTemplateResponseSuccess
|
|
542
565
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGeneratedTemplateOutput]
|
|
543
566
|
def generated_template_id: () -> ::String
|
|
@@ -623,10 +646,10 @@ module Aws
|
|
|
623
646
|
end
|
|
624
647
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_events-instance_method
|
|
625
648
|
def describe_stack_events: (
|
|
626
|
-
|
|
649
|
+
stack_name: ::String,
|
|
627
650
|
?next_token: ::String
|
|
628
651
|
) -> _DescribeStackEventsResponseSuccess
|
|
629
|
-
| (
|
|
652
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackEventsResponseSuccess
|
|
630
653
|
|
|
631
654
|
interface _DescribeStackInstanceResponseSuccess
|
|
632
655
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackInstanceOutput]
|
|
@@ -676,7 +699,7 @@ module Aws
|
|
|
676
699
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
|
|
677
700
|
def describe_stack_resource_drifts: (
|
|
678
701
|
stack_name: ::String,
|
|
679
|
-
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
702
|
+
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
680
703
|
?next_token: ::String,
|
|
681
704
|
?max_results: ::Integer
|
|
682
705
|
) -> _DescribeStackResourceDriftsResponseSuccess
|
|
@@ -876,6 +899,28 @@ module Aws
|
|
|
876
899
|
) -> _GetGeneratedTemplateResponseSuccess
|
|
877
900
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGeneratedTemplateResponseSuccess
|
|
878
901
|
|
|
902
|
+
interface _GetHookResultResponseSuccess
|
|
903
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetHookResultOutput]
|
|
904
|
+
def hook_result_id: () -> ::String
|
|
905
|
+
def invocation_point: () -> ("PRE_PROVISION")
|
|
906
|
+
def failure_mode: () -> ("FAIL" | "WARN")
|
|
907
|
+
def type_name: () -> ::String
|
|
908
|
+
def original_type_name: () -> ::String
|
|
909
|
+
def type_version_id: () -> ::String
|
|
910
|
+
def type_configuration_version_id: () -> ::String
|
|
911
|
+
def type_arn: () -> ::String
|
|
912
|
+
def status: () -> ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
913
|
+
def hook_status_reason: () -> ::String
|
|
914
|
+
def invoked_at: () -> ::Time
|
|
915
|
+
def target: () -> Types::HookTarget
|
|
916
|
+
def annotations: () -> ::Array[Types::Annotation]
|
|
917
|
+
end
|
|
918
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_hook_result-instance_method
|
|
919
|
+
def get_hook_result: (
|
|
920
|
+
?hook_result_id: ::String
|
|
921
|
+
) -> _GetHookResultResponseSuccess
|
|
922
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHookResultResponseSuccess
|
|
923
|
+
|
|
879
924
|
interface _GetStackPolicyResponseSuccess
|
|
880
925
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStackPolicyOutput]
|
|
881
926
|
def stack_policy_body: () -> ::String
|
|
@@ -993,11 +1038,13 @@ module Aws
|
|
|
993
1038
|
end
|
|
994
1039
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_hook_results-instance_method
|
|
995
1040
|
def list_hook_results: (
|
|
996
|
-
target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
|
|
997
|
-
target_id: ::String,
|
|
1041
|
+
?target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
|
|
1042
|
+
?target_id: ::String,
|
|
1043
|
+
?type_arn: ::String,
|
|
1044
|
+
?status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED"),
|
|
998
1045
|
?next_token: ::String
|
|
999
1046
|
) -> _ListHookResultsResponseSuccess
|
|
1000
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
|
|
1047
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
|
|
1001
1048
|
|
|
1002
1049
|
interface _ListImportsResponseSuccess
|
|
1003
1050
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsOutput]
|
|
@@ -1070,7 +1117,7 @@ module Aws
|
|
|
1070
1117
|
stack_set_name: ::String,
|
|
1071
1118
|
?next_token: ::String,
|
|
1072
1119
|
?max_results: ::Integer,
|
|
1073
|
-
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
1120
|
+
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
1074
1121
|
stack_instance_account: ::String,
|
|
1075
1122
|
stack_instance_region: ::String,
|
|
1076
1123
|
operation_id: ::String,
|
|
@@ -1327,6 +1374,7 @@ module Aws
|
|
|
1327
1374
|
interface _RollbackStackResponseSuccess
|
|
1328
1375
|
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
|
|
1329
1376
|
def stack_id: () -> ::String
|
|
1377
|
+
def operation_id: () -> ::String
|
|
1330
1378
|
end
|
|
1331
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
|
|
1332
1380
|
def rollback_stack: (
|
|
@@ -1447,6 +1495,7 @@ module Aws
|
|
|
1447
1495
|
interface _UpdateStackResponseSuccess
|
|
1448
1496
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
|
|
1449
1497
|
def stack_id: () -> ::String
|
|
1498
|
+
def operation_id: () -> ::String
|
|
1450
1499
|
end
|
|
1451
1500
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
|
|
1452
1501
|
def update_stack: (
|
|
@@ -1574,7 +1623,8 @@ module Aws
|
|
|
1574
1623
|
?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
|
|
1575
1624
|
?auto_deployment: {
|
|
1576
1625
|
enabled: bool?,
|
|
1577
|
-
retain_stacks_on_account_removal: bool
|
|
1626
|
+
retain_stacks_on_account_removal: bool?,
|
|
1627
|
+
depends_on: Array[::String]?
|
|
1578
1628
|
},
|
|
1579
1629
|
?operation_id: ::String,
|
|
1580
1630
|
?accounts: Array[::String],
|
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
|
|
|
@@ -60,6 +63,9 @@ module Aws
|
|
|
60
63
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_invocation_point-instance_method
|
|
61
64
|
def hook_invocation_point: () -> ("PRE_PROVISION")
|
|
62
65
|
|
|
66
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_invocation_id-instance_method
|
|
67
|
+
def hook_invocation_id: () -> ::String
|
|
68
|
+
|
|
63
69
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_failure_mode-instance_method
|
|
64
70
|
def hook_failure_mode: () -> ("FAIL" | "WARN")
|
|
65
71
|
|
data/sig/resource.rbs
CHANGED
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
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,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
|
|
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.
|
|
4
|
+
version: 1.150.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.
|
|
21
|
+
version: 3.244.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.
|
|
31
|
+
version: 3.244.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|