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
|
@@ -1071,6 +1071,25 @@ module Aws::CloudFormation
|
|
|
1071
1071
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
|
|
1072
1072
|
# @return [Boolean]
|
|
1073
1073
|
#
|
|
1074
|
+
# @!attribute [rw] deployment_mode
|
|
1075
|
+
# Determines how CloudFormation handles configuration drift during
|
|
1076
|
+
# deployment.
|
|
1077
|
+
#
|
|
1078
|
+
# * `REVERT_DRIFT` – Creates a drift-aware change set that brings
|
|
1079
|
+
# actual resource states in line with template definitions. Provides
|
|
1080
|
+
# a three-way comparison between actual state, previous deployment
|
|
1081
|
+
# state, and desired state.
|
|
1082
|
+
#
|
|
1083
|
+
# ^
|
|
1084
|
+
#
|
|
1085
|
+
# For more information, see [Using drift-aware change sets][1] in the
|
|
1086
|
+
# *CloudFormation User Guide*.
|
|
1087
|
+
#
|
|
1088
|
+
#
|
|
1089
|
+
#
|
|
1090
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/drift-aware-change-sets.html
|
|
1091
|
+
# @return [String]
|
|
1092
|
+
#
|
|
1074
1093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
|
|
1075
1094
|
#
|
|
1076
1095
|
class CreateChangeSetInput < Struct.new(
|
|
@@ -1092,7 +1111,8 @@ module Aws::CloudFormation
|
|
|
1092
1111
|
:resources_to_import,
|
|
1093
1112
|
:include_nested_stacks,
|
|
1094
1113
|
:on_stack_failure,
|
|
1095
|
-
:import_existing_resources
|
|
1114
|
+
:import_existing_resources,
|
|
1115
|
+
:deployment_mode)
|
|
1096
1116
|
SENSITIVE = []
|
|
1097
1117
|
include Aws::Structure
|
|
1098
1118
|
end
|
|
@@ -1618,10 +1638,16 @@ module Aws::CloudFormation
|
|
|
1618
1638
|
# Unique identifier of the stack.
|
|
1619
1639
|
# @return [String]
|
|
1620
1640
|
#
|
|
1641
|
+
# @!attribute [rw] operation_id
|
|
1642
|
+
# A unique identifier for this stack operation that can be used to
|
|
1643
|
+
# track the operation's progress and events.
|
|
1644
|
+
# @return [String]
|
|
1645
|
+
#
|
|
1621
1646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackOutput AWS API Documentation
|
|
1622
1647
|
#
|
|
1623
1648
|
class CreateStackOutput < Struct.new(
|
|
1624
|
-
:stack_id
|
|
1649
|
+
:stack_id,
|
|
1650
|
+
:operation_id)
|
|
1625
1651
|
SENSITIVE = []
|
|
1626
1652
|
include Aws::Structure
|
|
1627
1653
|
end
|
|
@@ -2581,6 +2607,22 @@ module Aws::CloudFormation
|
|
|
2581
2607
|
# error message.
|
|
2582
2608
|
# @return [String]
|
|
2583
2609
|
#
|
|
2610
|
+
# @!attribute [rw] stack_drift_status
|
|
2611
|
+
# The drift status of the stack when the change set was created. Valid
|
|
2612
|
+
# values:
|
|
2613
|
+
#
|
|
2614
|
+
# * `DRIFTED` – The stack has drifted from its last deployment.
|
|
2615
|
+
#
|
|
2616
|
+
# * `IN_SYNC` – The stack is in sync with its last deployment.
|
|
2617
|
+
#
|
|
2618
|
+
# * `NOT_CHECKED` – CloudFormation doesn’t currently return this
|
|
2619
|
+
# value.
|
|
2620
|
+
#
|
|
2621
|
+
# * `UNKNOWN` – The drift status could not be determined.
|
|
2622
|
+
#
|
|
2623
|
+
# Only present for drift-aware change sets.
|
|
2624
|
+
# @return [String]
|
|
2625
|
+
#
|
|
2584
2626
|
# @!attribute [rw] notification_arns
|
|
2585
2627
|
# The ARNs of the Amazon SNS topics that will be associated with the
|
|
2586
2628
|
# stack if you execute the change set.
|
|
@@ -2665,6 +2707,11 @@ module Aws::CloudFormation
|
|
|
2665
2707
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html
|
|
2666
2708
|
# @return [Boolean]
|
|
2667
2709
|
#
|
|
2710
|
+
# @!attribute [rw] deployment_mode
|
|
2711
|
+
# The deployment mode specified when the change set was created. Valid
|
|
2712
|
+
# value is `REVERT_DRIFT`. Only present for drift-aware change sets.
|
|
2713
|
+
# @return [String]
|
|
2714
|
+
#
|
|
2668
2715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetOutput AWS API Documentation
|
|
2669
2716
|
#
|
|
2670
2717
|
class DescribeChangeSetOutput < Struct.new(
|
|
@@ -2678,6 +2725,7 @@ module Aws::CloudFormation
|
|
|
2678
2725
|
:execution_status,
|
|
2679
2726
|
:status,
|
|
2680
2727
|
:status_reason,
|
|
2728
|
+
:stack_drift_status,
|
|
2681
2729
|
:notification_arns,
|
|
2682
2730
|
:rollback_configuration,
|
|
2683
2731
|
:capabilities,
|
|
@@ -2688,7 +2736,64 @@ module Aws::CloudFormation
|
|
|
2688
2736
|
:parent_change_set_id,
|
|
2689
2737
|
:root_change_set_id,
|
|
2690
2738
|
:on_stack_failure,
|
|
2691
|
-
:import_existing_resources
|
|
2739
|
+
:import_existing_resources,
|
|
2740
|
+
:deployment_mode)
|
|
2741
|
+
SENSITIVE = []
|
|
2742
|
+
include Aws::Structure
|
|
2743
|
+
end
|
|
2744
|
+
|
|
2745
|
+
# @!attribute [rw] stack_name
|
|
2746
|
+
# The name or unique stack ID for which you want to retrieve events.
|
|
2747
|
+
# @return [String]
|
|
2748
|
+
#
|
|
2749
|
+
# @!attribute [rw] change_set_name
|
|
2750
|
+
# The name or Amazon Resource Name (ARN) of the change set for which
|
|
2751
|
+
# you want to retrieve events.
|
|
2752
|
+
# @return [String]
|
|
2753
|
+
#
|
|
2754
|
+
# @!attribute [rw] operation_id
|
|
2755
|
+
# The unique identifier of the operation for which you want to
|
|
2756
|
+
# retrieve events.
|
|
2757
|
+
# @return [String]
|
|
2758
|
+
#
|
|
2759
|
+
# @!attribute [rw] filters
|
|
2760
|
+
# Filters to apply when retrieving events.
|
|
2761
|
+
# @return [Types::EventFilter]
|
|
2762
|
+
#
|
|
2763
|
+
# @!attribute [rw] next_token
|
|
2764
|
+
# The token for the next set of items to return. (You received this
|
|
2765
|
+
# token from a previous call.)
|
|
2766
|
+
# @return [String]
|
|
2767
|
+
#
|
|
2768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeEventsInput AWS API Documentation
|
|
2769
|
+
#
|
|
2770
|
+
class DescribeEventsInput < Struct.new(
|
|
2771
|
+
:stack_name,
|
|
2772
|
+
:change_set_name,
|
|
2773
|
+
:operation_id,
|
|
2774
|
+
:filters,
|
|
2775
|
+
:next_token)
|
|
2776
|
+
SENSITIVE = []
|
|
2777
|
+
include Aws::Structure
|
|
2778
|
+
end
|
|
2779
|
+
|
|
2780
|
+
# @!attribute [rw] operation_events
|
|
2781
|
+
# A list of operation events that match the specified criteria.
|
|
2782
|
+
# @return [Array<Types::OperationEvent>]
|
|
2783
|
+
#
|
|
2784
|
+
# @!attribute [rw] next_token
|
|
2785
|
+
# If the request doesn't return all the remaining results,
|
|
2786
|
+
# `NextToken` is set to a token. To retrieve the next set of results,
|
|
2787
|
+
# call `DescribeEvents` again and assign that token to the request
|
|
2788
|
+
# object's `NextToken` parameter. If the request returns all results,
|
|
2789
|
+
# `NextToken` is set to `null`.
|
|
2790
|
+
# @return [String]
|
|
2791
|
+
#
|
|
2792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeEventsOutput AWS API Documentation
|
|
2793
|
+
#
|
|
2794
|
+
class DescribeEventsOutput < Struct.new(
|
|
2795
|
+
:operation_events,
|
|
2796
|
+
:next_token)
|
|
2692
2797
|
SENSITIVE = []
|
|
2693
2798
|
include Aws::Structure
|
|
2694
2799
|
end
|
|
@@ -4219,6 +4324,21 @@ module Aws::CloudFormation
|
|
|
4219
4324
|
include Aws::Structure
|
|
4220
4325
|
end
|
|
4221
4326
|
|
|
4327
|
+
# Event filter allows you to focus on specific events in an operation.
|
|
4328
|
+
#
|
|
4329
|
+
# @!attribute [rw] failed_events
|
|
4330
|
+
# When set to true, only returns failed events within the operation.
|
|
4331
|
+
# This helps quickly identify root causes for a failed operation.
|
|
4332
|
+
# @return [Boolean]
|
|
4333
|
+
#
|
|
4334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/EventFilter AWS API Documentation
|
|
4335
|
+
#
|
|
4336
|
+
class EventFilter < Struct.new(
|
|
4337
|
+
:failed_events)
|
|
4338
|
+
SENSITIVE = []
|
|
4339
|
+
include Aws::Structure
|
|
4340
|
+
end
|
|
4341
|
+
|
|
4222
4342
|
# The input for the ExecuteChangeSet action.
|
|
4223
4343
|
#
|
|
4224
4344
|
# @!attribute [rw] change_set_name
|
|
@@ -6429,6 +6549,31 @@ module Aws::CloudFormation
|
|
|
6429
6549
|
include Aws::Structure
|
|
6430
6550
|
end
|
|
6431
6551
|
|
|
6552
|
+
# Contains drift information for a resource property, including actual
|
|
6553
|
+
# value, previous deployment value, and drift detection timestamp.
|
|
6554
|
+
#
|
|
6555
|
+
# @!attribute [rw] previous_value
|
|
6556
|
+
# The configuration value from the previous CloudFormation deployment.
|
|
6557
|
+
# @return [String]
|
|
6558
|
+
#
|
|
6559
|
+
# @!attribute [rw] actual_value
|
|
6560
|
+
# The current live configuration value of the resource property.
|
|
6561
|
+
# @return [String]
|
|
6562
|
+
#
|
|
6563
|
+
# @!attribute [rw] drift_detection_timestamp
|
|
6564
|
+
# The timestamp when drift was detected for this resource property.
|
|
6565
|
+
# @return [Time]
|
|
6566
|
+
#
|
|
6567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/LiveResourceDrift AWS API Documentation
|
|
6568
|
+
#
|
|
6569
|
+
class LiveResourceDrift < Struct.new(
|
|
6570
|
+
:previous_value,
|
|
6571
|
+
:actual_value,
|
|
6572
|
+
:drift_detection_timestamp)
|
|
6573
|
+
SENSITIVE = []
|
|
6574
|
+
include Aws::Structure
|
|
6575
|
+
end
|
|
6576
|
+
|
|
6432
6577
|
# Contains logging configuration information for an extension.
|
|
6433
6578
|
#
|
|
6434
6579
|
# @!attribute [rw] log_role_arn
|
|
@@ -6536,6 +6681,171 @@ module Aws::CloudFormation
|
|
|
6536
6681
|
#
|
|
6537
6682
|
class NameAlreadyExistsException < Aws::EmptyStructure; end
|
|
6538
6683
|
|
|
6684
|
+
# Contains information about a CloudFormation operation.
|
|
6685
|
+
#
|
|
6686
|
+
# @!attribute [rw] operation_type
|
|
6687
|
+
# The type of operation.
|
|
6688
|
+
# @return [String]
|
|
6689
|
+
#
|
|
6690
|
+
# @!attribute [rw] operation_id
|
|
6691
|
+
# The unique identifier for the operation.
|
|
6692
|
+
# @return [String]
|
|
6693
|
+
#
|
|
6694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/OperationEntry AWS API Documentation
|
|
6695
|
+
#
|
|
6696
|
+
class OperationEntry < Struct.new(
|
|
6697
|
+
:operation_type,
|
|
6698
|
+
:operation_id)
|
|
6699
|
+
SENSITIVE = []
|
|
6700
|
+
include Aws::Structure
|
|
6701
|
+
end
|
|
6702
|
+
|
|
6703
|
+
# Contains detailed information about an event that occurred during a
|
|
6704
|
+
# CloudFormation operation.
|
|
6705
|
+
#
|
|
6706
|
+
# @!attribute [rw] event_id
|
|
6707
|
+
# A unique identifier for this event.
|
|
6708
|
+
# @return [String]
|
|
6709
|
+
#
|
|
6710
|
+
# @!attribute [rw] stack_id
|
|
6711
|
+
# The unique ID name of the instance of the stack.
|
|
6712
|
+
# @return [String]
|
|
6713
|
+
#
|
|
6714
|
+
# @!attribute [rw] operation_id
|
|
6715
|
+
# The unique identifier of the operation this event belongs to.
|
|
6716
|
+
# @return [String]
|
|
6717
|
+
#
|
|
6718
|
+
# @!attribute [rw] operation_type
|
|
6719
|
+
# The type of operation.
|
|
6720
|
+
# @return [String]
|
|
6721
|
+
#
|
|
6722
|
+
# @!attribute [rw] operation_status
|
|
6723
|
+
# The current status of the operation.
|
|
6724
|
+
# @return [String]
|
|
6725
|
+
#
|
|
6726
|
+
# @!attribute [rw] event_type
|
|
6727
|
+
# The type of event.
|
|
6728
|
+
# @return [String]
|
|
6729
|
+
#
|
|
6730
|
+
# @!attribute [rw] logical_resource_id
|
|
6731
|
+
# The logical name of the resource as specified in the template.
|
|
6732
|
+
# @return [String]
|
|
6733
|
+
#
|
|
6734
|
+
# @!attribute [rw] physical_resource_id
|
|
6735
|
+
# The name or unique identifier that corresponds to a physical
|
|
6736
|
+
# instance ID of a resource.
|
|
6737
|
+
# @return [String]
|
|
6738
|
+
#
|
|
6739
|
+
# @!attribute [rw] resource_type
|
|
6740
|
+
# Type of resource.
|
|
6741
|
+
# @return [String]
|
|
6742
|
+
#
|
|
6743
|
+
# @!attribute [rw] timestamp
|
|
6744
|
+
# Time the status was updated.
|
|
6745
|
+
# @return [Time]
|
|
6746
|
+
#
|
|
6747
|
+
# @!attribute [rw] start_time
|
|
6748
|
+
# The time when the event started.
|
|
6749
|
+
# @return [Time]
|
|
6750
|
+
#
|
|
6751
|
+
# @!attribute [rw] end_time
|
|
6752
|
+
# The time when the event ended.
|
|
6753
|
+
# @return [Time]
|
|
6754
|
+
#
|
|
6755
|
+
# @!attribute [rw] resource_status
|
|
6756
|
+
# Current status of the resource.
|
|
6757
|
+
# @return [String]
|
|
6758
|
+
#
|
|
6759
|
+
# @!attribute [rw] resource_status_reason
|
|
6760
|
+
# Success or failure message associated with the resource.
|
|
6761
|
+
# @return [String]
|
|
6762
|
+
#
|
|
6763
|
+
# @!attribute [rw] resource_properties
|
|
6764
|
+
# The properties used to create the resource.
|
|
6765
|
+
# @return [String]
|
|
6766
|
+
#
|
|
6767
|
+
# @!attribute [rw] client_request_token
|
|
6768
|
+
# A unique identifier for the request that initiated this operation.
|
|
6769
|
+
# @return [String]
|
|
6770
|
+
#
|
|
6771
|
+
# @!attribute [rw] hook_type
|
|
6772
|
+
# The type name of the Hook that was invoked.
|
|
6773
|
+
# @return [String]
|
|
6774
|
+
#
|
|
6775
|
+
# @!attribute [rw] hook_status
|
|
6776
|
+
# The status of the Hook invocation.
|
|
6777
|
+
# @return [String]
|
|
6778
|
+
#
|
|
6779
|
+
# @!attribute [rw] hook_status_reason
|
|
6780
|
+
# Additional information about the Hook status.
|
|
6781
|
+
# @return [String]
|
|
6782
|
+
#
|
|
6783
|
+
# @!attribute [rw] hook_invocation_point
|
|
6784
|
+
# The point in the operation lifecycle when the Hook was invoked.
|
|
6785
|
+
# @return [String]
|
|
6786
|
+
#
|
|
6787
|
+
# @!attribute [rw] hook_failure_mode
|
|
6788
|
+
# Specifies how Hook failures are handled.
|
|
6789
|
+
# @return [String]
|
|
6790
|
+
#
|
|
6791
|
+
# @!attribute [rw] detailed_status
|
|
6792
|
+
# Additional status information about the operation.
|
|
6793
|
+
# @return [String]
|
|
6794
|
+
#
|
|
6795
|
+
# @!attribute [rw] validation_failure_mode
|
|
6796
|
+
# Specifies how validation failures are handled.
|
|
6797
|
+
# @return [String]
|
|
6798
|
+
#
|
|
6799
|
+
# @!attribute [rw] validation_name
|
|
6800
|
+
# The name of the validation that was performed.
|
|
6801
|
+
# @return [String]
|
|
6802
|
+
#
|
|
6803
|
+
# @!attribute [rw] validation_status
|
|
6804
|
+
# The status of the validation.
|
|
6805
|
+
# @return [String]
|
|
6806
|
+
#
|
|
6807
|
+
# @!attribute [rw] validation_status_reason
|
|
6808
|
+
# Additional information about the validation status.
|
|
6809
|
+
# @return [String]
|
|
6810
|
+
#
|
|
6811
|
+
# @!attribute [rw] validation_path
|
|
6812
|
+
# The path within the resource where the validation was applied.
|
|
6813
|
+
# @return [String]
|
|
6814
|
+
#
|
|
6815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/OperationEvent AWS API Documentation
|
|
6816
|
+
#
|
|
6817
|
+
class OperationEvent < Struct.new(
|
|
6818
|
+
:event_id,
|
|
6819
|
+
:stack_id,
|
|
6820
|
+
:operation_id,
|
|
6821
|
+
:operation_type,
|
|
6822
|
+
:operation_status,
|
|
6823
|
+
:event_type,
|
|
6824
|
+
:logical_resource_id,
|
|
6825
|
+
:physical_resource_id,
|
|
6826
|
+
:resource_type,
|
|
6827
|
+
:timestamp,
|
|
6828
|
+
:start_time,
|
|
6829
|
+
:end_time,
|
|
6830
|
+
:resource_status,
|
|
6831
|
+
:resource_status_reason,
|
|
6832
|
+
:resource_properties,
|
|
6833
|
+
:client_request_token,
|
|
6834
|
+
:hook_type,
|
|
6835
|
+
:hook_status,
|
|
6836
|
+
:hook_status_reason,
|
|
6837
|
+
:hook_invocation_point,
|
|
6838
|
+
:hook_failure_mode,
|
|
6839
|
+
:detailed_status,
|
|
6840
|
+
:validation_failure_mode,
|
|
6841
|
+
:validation_name,
|
|
6842
|
+
:validation_status,
|
|
6843
|
+
:validation_status_reason,
|
|
6844
|
+
:validation_path)
|
|
6845
|
+
SENSITIVE = []
|
|
6846
|
+
include Aws::Structure
|
|
6847
|
+
end
|
|
6848
|
+
|
|
6539
6849
|
# The specified operation ID already exists.
|
|
6540
6850
|
#
|
|
6541
6851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/OperationIdAlreadyExistsException AWS API Documentation
|
|
@@ -7172,8 +7482,10 @@ module Aws::CloudFormation
|
|
|
7172
7482
|
# @!attribute [rw] action
|
|
7173
7483
|
# The action that CloudFormation takes on the resource, such as `Add`
|
|
7174
7484
|
# (adds a new resource), `Modify` (changes a resource), `Remove`
|
|
7175
|
-
# (deletes a resource), `Import` (imports a resource),
|
|
7176
|
-
# (exact action for the resource can't be determined)
|
|
7485
|
+
# (deletes a resource), `Import` (imports a resource), `Dynamic`
|
|
7486
|
+
# (exact action for the resource can't be determined), or
|
|
7487
|
+
# `SyncWithActual` (resource will not be changed, only CloudFormation
|
|
7488
|
+
# metadata will change).
|
|
7177
7489
|
# @return [String]
|
|
7178
7490
|
#
|
|
7179
7491
|
# @!attribute [rw] logical_resource_id
|
|
@@ -7212,6 +7524,31 @@ module Aws::CloudFormation
|
|
|
7212
7524
|
# attribute's `Metadata`, `Properties`, or `Tags`.
|
|
7213
7525
|
# @return [Array<String>]
|
|
7214
7526
|
#
|
|
7527
|
+
# @!attribute [rw] resource_drift_status
|
|
7528
|
+
# The drift status of the resource. Valid values:
|
|
7529
|
+
#
|
|
7530
|
+
# * `IN_SYNC` – The resource matches its template definition.
|
|
7531
|
+
#
|
|
7532
|
+
# * `MODIFIED` – Resource properties were modified outside
|
|
7533
|
+
# CloudFormation.
|
|
7534
|
+
#
|
|
7535
|
+
# * `DELETED` – The resource was deleted outside CloudFormation.
|
|
7536
|
+
#
|
|
7537
|
+
# * `NOT_CHECKED` – CloudFormation doesn’t currently return this
|
|
7538
|
+
# value.
|
|
7539
|
+
#
|
|
7540
|
+
# * `UNKNOWN` – Drift status could not be determined.
|
|
7541
|
+
#
|
|
7542
|
+
# * `UNSUPPORTED` – Resource type does not support actual state
|
|
7543
|
+
# comparison.
|
|
7544
|
+
#
|
|
7545
|
+
# Only present for drift-aware change sets.
|
|
7546
|
+
# @return [String]
|
|
7547
|
+
#
|
|
7548
|
+
# @!attribute [rw] resource_drift_ignored_attributes
|
|
7549
|
+
# List of resource attributes for which drift was ignored.
|
|
7550
|
+
# @return [Array<Types::ResourceDriftIgnoredAttribute>]
|
|
7551
|
+
#
|
|
7215
7552
|
# @!attribute [rw] details
|
|
7216
7553
|
# For the `Modify` action, a list of `ResourceChangeDetail` structures
|
|
7217
7554
|
# that describes the changes that CloudFormation will make to the
|
|
@@ -7238,6 +7575,11 @@ module Aws::CloudFormation
|
|
|
7238
7575
|
# after the change is executed.
|
|
7239
7576
|
# @return [String]
|
|
7240
7577
|
#
|
|
7578
|
+
# @!attribute [rw] previous_deployment_context
|
|
7579
|
+
# Information about the resource's state from the previous
|
|
7580
|
+
# CloudFormation deployment.
|
|
7581
|
+
# @return [String]
|
|
7582
|
+
#
|
|
7241
7583
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceChange AWS API Documentation
|
|
7242
7584
|
#
|
|
7243
7585
|
class ResourceChange < Struct.new(
|
|
@@ -7248,11 +7590,14 @@ module Aws::CloudFormation
|
|
|
7248
7590
|
:resource_type,
|
|
7249
7591
|
:replacement,
|
|
7250
7592
|
:scope,
|
|
7593
|
+
:resource_drift_status,
|
|
7594
|
+
:resource_drift_ignored_attributes,
|
|
7251
7595
|
:details,
|
|
7252
7596
|
:change_set_id,
|
|
7253
7597
|
:module_info,
|
|
7254
7598
|
:before_context,
|
|
7255
|
-
:after_context
|
|
7599
|
+
:after_context,
|
|
7600
|
+
:previous_deployment_context)
|
|
7256
7601
|
SENSITIVE = []
|
|
7257
7602
|
include Aws::Structure
|
|
7258
7603
|
end
|
|
@@ -7314,6 +7659,9 @@ module Aws::CloudFormation
|
|
|
7314
7659
|
# nested stack's template might have changed. Changes to a nested
|
|
7315
7660
|
# stack's template aren't visible to CloudFormation until you run
|
|
7316
7661
|
# an update on the parent stack.
|
|
7662
|
+
#
|
|
7663
|
+
# * `NoModification` entities are changes made to the template that
|
|
7664
|
+
# matches the actual state of the resource.
|
|
7317
7665
|
# @return [String]
|
|
7318
7666
|
#
|
|
7319
7667
|
# @!attribute [rw] causing_entity
|
|
@@ -7456,6 +7804,32 @@ module Aws::CloudFormation
|
|
|
7456
7804
|
include Aws::Structure
|
|
7457
7805
|
end
|
|
7458
7806
|
|
|
7807
|
+
# The `ResourceDriftIgnoredAttribute` data type.
|
|
7808
|
+
#
|
|
7809
|
+
# @!attribute [rw] path
|
|
7810
|
+
# Path of the resource attribute for which drift was ignored.
|
|
7811
|
+
# @return [String]
|
|
7812
|
+
#
|
|
7813
|
+
# @!attribute [rw] reason
|
|
7814
|
+
# Reason why drift was ignored for the attribute, can have 2 possible
|
|
7815
|
+
# values:
|
|
7816
|
+
#
|
|
7817
|
+
# * `WRITE_ONLY_PROPERTY` - Property is not included in read response
|
|
7818
|
+
# for the resource’s live state.
|
|
7819
|
+
#
|
|
7820
|
+
# * `MANAGED_BY_AWS` - Property is managed by an Amazon Web Services
|
|
7821
|
+
# service and is expected to be dynamically modified.
|
|
7822
|
+
# @return [String]
|
|
7823
|
+
#
|
|
7824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceDriftIgnoredAttribute AWS API Documentation
|
|
7825
|
+
#
|
|
7826
|
+
class ResourceDriftIgnoredAttribute < Struct.new(
|
|
7827
|
+
:path,
|
|
7828
|
+
:reason)
|
|
7829
|
+
SENSITIVE = []
|
|
7830
|
+
include Aws::Structure
|
|
7831
|
+
end
|
|
7832
|
+
|
|
7459
7833
|
# Describes the target resources of a specific type in your import
|
|
7460
7834
|
# template (for example, all `AWS::S3::Bucket` resources) and the
|
|
7461
7835
|
# properties you can provide during the import to identify resources of
|
|
@@ -7659,6 +8033,33 @@ module Aws::CloudFormation
|
|
|
7659
8033
|
# can be truncated.
|
|
7660
8034
|
# @return [String]
|
|
7661
8035
|
#
|
|
8036
|
+
# @!attribute [rw] before_value_from
|
|
8037
|
+
# Indicates the source of the before value. Valid values:
|
|
8038
|
+
#
|
|
8039
|
+
# * `ACTUAL_STATE` – The before value represents current actual state.
|
|
8040
|
+
#
|
|
8041
|
+
# * `PREVIOUS_DEPLOYMENT_STATE` – The before value represents the
|
|
8042
|
+
# previous CloudFormation deployment state.
|
|
8043
|
+
#
|
|
8044
|
+
# Only present for drift-aware change sets.
|
|
8045
|
+
# @return [String]
|
|
8046
|
+
#
|
|
8047
|
+
# @!attribute [rw] after_value_from
|
|
8048
|
+
# Indicates the source of the after value. Valid value:
|
|
8049
|
+
#
|
|
8050
|
+
# * `TEMPLATE` – The after value comes from the new template.
|
|
8051
|
+
#
|
|
8052
|
+
# ^
|
|
8053
|
+
#
|
|
8054
|
+
# Only present for drift-aware change sets.
|
|
8055
|
+
# @return [String]
|
|
8056
|
+
#
|
|
8057
|
+
# @!attribute [rw] drift
|
|
8058
|
+
# Detailed drift information for the resource property, including
|
|
8059
|
+
# actual values, previous deployment values, and drift detection
|
|
8060
|
+
# timestamps.
|
|
8061
|
+
# @return [Types::LiveResourceDrift]
|
|
8062
|
+
#
|
|
7662
8063
|
# @!attribute [rw] attribute_change_type
|
|
7663
8064
|
# The type of change to be made to the property if the change is
|
|
7664
8065
|
# executed.
|
|
@@ -7668,6 +8069,9 @@ module Aws::CloudFormation
|
|
|
7668
8069
|
# * `Remove` The item will be removed.
|
|
7669
8070
|
#
|
|
7670
8071
|
# * `Modify` The item will be modified.
|
|
8072
|
+
#
|
|
8073
|
+
# * `SyncWithActual` The drift status of this item will be reset but
|
|
8074
|
+
# the item will not be modified.
|
|
7671
8075
|
# @return [String]
|
|
7672
8076
|
#
|
|
7673
8077
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceTargetDefinition AWS API Documentation
|
|
@@ -7679,6 +8083,9 @@ module Aws::CloudFormation
|
|
|
7679
8083
|
:path,
|
|
7680
8084
|
:before_value,
|
|
7681
8085
|
:after_value,
|
|
8086
|
+
:before_value_from,
|
|
8087
|
+
:after_value_from,
|
|
8088
|
+
:drift,
|
|
7682
8089
|
:attribute_change_type)
|
|
7683
8090
|
SENSITIVE = []
|
|
7684
8091
|
include Aws::Structure
|
|
@@ -7827,10 +8234,16 @@ module Aws::CloudFormation
|
|
|
7827
8234
|
# Unique identifier of the stack.
|
|
7828
8235
|
# @return [String]
|
|
7829
8236
|
#
|
|
8237
|
+
# @!attribute [rw] operation_id
|
|
8238
|
+
# A unique identifier for this rollback operation that can be used to
|
|
8239
|
+
# track the operation's progress and events.
|
|
8240
|
+
# @return [String]
|
|
8241
|
+
#
|
|
7830
8242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStackOutput AWS API Documentation
|
|
7831
8243
|
#
|
|
7832
8244
|
class RollbackStackOutput < Struct.new(
|
|
7833
|
-
:stack_id
|
|
8245
|
+
:stack_id,
|
|
8246
|
+
:operation_id)
|
|
7834
8247
|
SENSITIVE = []
|
|
7835
8248
|
include Aws::Structure
|
|
7836
8249
|
end
|
|
@@ -8342,6 +8755,11 @@ module Aws::CloudFormation
|
|
|
8342
8755
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
|
|
8343
8756
|
# @return [String]
|
|
8344
8757
|
#
|
|
8758
|
+
# @!attribute [rw] last_operations
|
|
8759
|
+
# Information about the most recent operations performed on this
|
|
8760
|
+
# stack.
|
|
8761
|
+
# @return [Array<Types::OperationEntry>]
|
|
8762
|
+
#
|
|
8345
8763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Stack AWS API Documentation
|
|
8346
8764
|
#
|
|
8347
8765
|
class Stack < Struct.new(
|
|
@@ -8369,7 +8787,8 @@ module Aws::CloudFormation
|
|
|
8369
8787
|
:drift_information,
|
|
8370
8788
|
:retain_except_on_create,
|
|
8371
8789
|
:deletion_mode,
|
|
8372
|
-
:detailed_status
|
|
8790
|
+
:detailed_status,
|
|
8791
|
+
:last_operations)
|
|
8373
8792
|
SENSITIVE = []
|
|
8374
8793
|
include Aws::Structure
|
|
8375
8794
|
end
|
|
@@ -8490,6 +8909,11 @@ module Aws::CloudFormation
|
|
|
8490
8909
|
# The name associated with a stack.
|
|
8491
8910
|
# @return [String]
|
|
8492
8911
|
#
|
|
8912
|
+
# @!attribute [rw] operation_id
|
|
8913
|
+
# The unique identifier of the operation that generated this stack
|
|
8914
|
+
# event.
|
|
8915
|
+
# @return [String]
|
|
8916
|
+
#
|
|
8493
8917
|
# @!attribute [rw] logical_resource_id
|
|
8494
8918
|
# The logical name of the resource specified in the template.
|
|
8495
8919
|
# @return [String]
|
|
@@ -8602,6 +9026,7 @@ module Aws::CloudFormation
|
|
|
8602
9026
|
:stack_id,
|
|
8603
9027
|
:event_id,
|
|
8604
9028
|
:stack_name,
|
|
9029
|
+
:operation_id,
|
|
8605
9030
|
:logical_resource_id,
|
|
8606
9031
|
:physical_resource_id,
|
|
8607
9032
|
:resource_type,
|
|
@@ -10527,6 +10952,11 @@ module Aws::CloudFormation
|
|
|
10527
10952
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
10528
10953
|
# @return [Types::StackDriftInformationSummary]
|
|
10529
10954
|
#
|
|
10955
|
+
# @!attribute [rw] last_operations
|
|
10956
|
+
# Information about the most recent operations performed on this
|
|
10957
|
+
# stack.
|
|
10958
|
+
# @return [Array<Types::OperationEntry>]
|
|
10959
|
+
#
|
|
10530
10960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSummary AWS API Documentation
|
|
10531
10961
|
#
|
|
10532
10962
|
class StackSummary < Struct.new(
|
|
@@ -10540,7 +10970,8 @@ module Aws::CloudFormation
|
|
|
10540
10970
|
:stack_status_reason,
|
|
10541
10971
|
:parent_id,
|
|
10542
10972
|
:root_id,
|
|
10543
|
-
:drift_information
|
|
10973
|
+
:drift_information,
|
|
10974
|
+
:last_operations)
|
|
10544
10975
|
SENSITIVE = []
|
|
10545
10976
|
include Aws::Structure
|
|
10546
10977
|
end
|
|
@@ -11867,10 +12298,16 @@ module Aws::CloudFormation
|
|
|
11867
12298
|
# Unique identifier of the stack.
|
|
11868
12299
|
# @return [String]
|
|
11869
12300
|
#
|
|
12301
|
+
# @!attribute [rw] operation_id
|
|
12302
|
+
# A unique identifier for this update operation that can be used to
|
|
12303
|
+
# track the operation's progress and events.
|
|
12304
|
+
# @return [String]
|
|
12305
|
+
#
|
|
11870
12306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackOutput AWS API Documentation
|
|
11871
12307
|
#
|
|
11872
12308
|
class UpdateStackOutput < Struct.new(
|
|
11873
|
-
:stack_id
|
|
12309
|
+
:stack_id,
|
|
12310
|
+
:operation_id)
|
|
11874
12311
|
SENSITIVE = []
|
|
11875
12312
|
include Aws::Structure
|
|
11876
12313
|
end
|