Class: Aws::CloudFormation::Stack
- Inherits:
-
Object
- Object
- Aws::CloudFormation::Stack
- Extended by:
- Deprecations
- Defined in:
- lib/aws-sdk-cloudformation/stack.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
-
#capabilities ⇒ Array<String>
The capabilities allowed in the stack.
-
#change_set_id ⇒ String
The unique ID of the change set.
-
#creation_time ⇒ Time
The time at which the stack was created.
-
#deletion_time ⇒ Time
The time the stack was deleted.
-
#description ⇒ String
A user-defined description associated with the stack.
-
#disable_rollback ⇒ Boolean
Boolean to enable or disable rollback on stack creation failures:.
-
#drift_information ⇒ Types::StackDriftInformation
Information about whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters.
-
#enable_termination_protection ⇒ Boolean
Whether termination protection is enabled for the stack.
-
#last_updated_time ⇒ Time
The time the stack was last updated.
- #name ⇒ String (also: #stack_name)
-
#notification_arns ⇒ Array<String>
Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published.
-
#outputs ⇒ Array<Types::Output>
A list of output structures.
-
#parameters ⇒ Array<Types::Parameter>
A list of `Parameter` structures.
-
#parent_id ⇒ String
For nested stacks–stacks created as resources for another stack–the stack ID of the direct parent of this stack.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack.
-
#rollback_configuration ⇒ Types::RollbackConfiguration
The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the specified monitoring period afterwards.
-
#root_id ⇒ String
For nested stacks–stacks created as resources for another stack–the stack ID of the top-level stack to which the nested stack ultimately belongs.
-
#stack_id ⇒ String
Unique identifier of the stack.
-
#stack_status ⇒ String
Current status of the stack.
-
#stack_status_reason ⇒ String
Success/failure message associated with the stack status.
-
#tags ⇒ Array<Types::Tag>
A list of `Tag`s that specify information about the stack.
-
#timeout_in_minutes ⇒ Integer
The amount of time within which stack creation should complete.
Actions collapse
- #cancel_update(options = {}) ⇒ EmptyStructure
- #create(options = {}) ⇒ Types::CreateStackOutput
- #delete(options = {}) ⇒ EmptyStructure
- #update(options = {}) ⇒ Types::UpdateStackOutput
Associations collapse
- #events(options = {}) ⇒ Event::Collection
- #identifiers ⇒ Object deprecated private Deprecated.
- #resource(logical_id) ⇒ StackResource
- #resource_summaries(options = {}) ⇒ StackResourceSummary::Collection
Instance Method Summary collapse
- #client ⇒ Client
-
#data ⇒ Types::Stack
Returns the data for this Stack.
-
#data_loaded? ⇒ Boolean
Returns `true` if this resource is loaded.
-
#exists?(options = {}) ⇒ Boolean
Returns `true` if the Stack exists.
-
#initialize(*args) ⇒ Stack
constructor
A new instance of Stack.
- #load ⇒ self (also: #reload)
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::CloudFormation::Client] #wait_until instead
- #wait_until_exists(options = {}, &block) ⇒ Stack
Constructor Details
#initialize(name, options = {}) ⇒ Stack #initialize(options = {}) ⇒ Stack
Returns a new instance of Stack.
22 23 24 25 26 27 28 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 22 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @name = extract_name(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#cancel_update(options = {}) ⇒ EmptyStructure
389 390 391 392 393 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 389 def cancel_update( = {}) = .merge(stack_name: @name) resp = @client.cancel_update_stack() resp.data end |
#capabilities ⇒ Array<String>
The capabilities allowed in the stack.
126 127 128 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 126 def capabilities data[:capabilities] end |
#change_set_id ⇒ String
The unique ID of the change set.
46 47 48 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 46 def change_set_id data[:change_set_id] end |
#client ⇒ Client
214 215 216 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 214 def client @client end |
#create(options = {}) ⇒ Types::CreateStackOutput
666 667 668 669 670 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 666 def create( = {}) = .merge(stack_name: @name) resp = @client.create_stack() resp.data end |
#creation_time ⇒ Time
The time at which the stack was created.
64 65 66 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 64 def creation_time data[:creation_time] end |
#data ⇒ Types::Stack
Returns the data for this Aws::CloudFormation::Stack. Calls Client#describe_stacks if #data_loaded? is `false`.
234 235 236 237 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 234 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
242 243 244 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 242 def data_loaded? !!@data end |
#delete(options = {}) ⇒ EmptyStructure
719 720 721 722 723 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 719 def delete( = {}) = .merge(stack_name: @name) resp = @client.delete_stack() resp.data end |
#deletion_time ⇒ Time
The time the stack was deleted.
70 71 72 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 70 def deletion_time data[:deletion_time] end |
#description ⇒ String
A user-defined description associated with the stack.
52 53 54 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 52 def description data[:description] end |
#disable_rollback ⇒ Boolean
Boolean to enable or disable rollback on stack creation failures:
-
`true`: disable rollback.
-
`false`: enable rollback.
107 108 109 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 107 def disable_rollback data[:disable_rollback] end |
#drift_information ⇒ Types::StackDriftInformation
Information about whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see [Detecting Unregulated Configuration Changes to Stacks and Resources].
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
207 208 209 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 207 def drift_information data[:drift_information] end |
#enable_termination_protection ⇒ Boolean
Whether termination protection is enabled for the stack.
For [nested stacks], termination protection is set on the root stack and can't be changed directly on the nested stack. For more information, see [Protecting a Stack From Being Deleted] in the *CloudFormation User Guide*.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html [2]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
163 164 165 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 163 def enable_termination_protection data[:enable_termination_protection] end |
#events(options = {}) ⇒ Event::Collection
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 1014 def events( = {}) batches = Enumerator.new do |y| = .merge(stack_name: @name) resp = @client.describe_stack_events() resp.each_page do |page| batch = [] page.data.stack_events.each do |s| batch << Event.new( id: s.event_id, data: s, client: @client ) end y.yield(batch) end end Event::Collection.new(batches) end |
#exists?(options = {}) ⇒ Boolean
Returns `true` if the Stack exists.
249 250 251 252 253 254 255 256 257 258 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 249 def exists?( = {}) begin wait_until_exists(.merge(max_attempts: 1)) true rescue Aws::Waiters::Errors::UnexpectedError => e raise e.error rescue Aws::Waiters::Errors::WaiterFailed false end end |
#identifiers ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1070 1071 1072 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 1070 def identifiers { name: @name } end |
#last_updated_time ⇒ Time
The time the stack was last updated. This field will only be returned if the stack has been updated at least once.
77 78 79 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 77 def last_updated_time data[:last_updated_time] end |
#load ⇒ self Also known as: reload
Loads, or reloads #data for the current Aws::CloudFormation::Stack. Returns `self` making it possible to chain methods.
stack.reload.data
224 225 226 227 228 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 224 def load resp = @client.describe_stacks(stack_name: @name) @data = resp.stacks[0] self end |
#name ⇒ String Also known as: stack_name
33 34 35 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 33 def name @name end |
#notification_arns ⇒ Array<String>
Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published.
114 115 116 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 114 def notification_arns data[:notification_arns] end |
#outputs ⇒ Array<Types::Output>
A list of output structures.
132 133 134 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 132 def outputs data[:outputs] end |
#parameters ⇒ Array<Types::Parameter>
A list of `Parameter` structures.
58 59 60 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 58 def parameters data[:parameters] end |
#parent_id ⇒ String
For nested stacks–stacks created as resources for another stack–the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack.
For more information, see [Working with Nested Stacks] in the *CloudFormation User Guide*.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
178 179 180 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 178 def parent_id data[:parent_id] end |
#resource(logical_id) ⇒ StackResource
1035 1036 1037 1038 1039 1040 1041 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 1035 def resource(logical_id) StackResource.new( stack_name: @name, logical_id: logical_id, client: @client ) end |
#resource_summaries(options = {}) ⇒ StackResourceSummary::Collection
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 1048 def resource_summaries( = {}) batches = Enumerator.new do |y| = .merge(stack_name: @name) resp = @client.list_stack_resources() resp.each_page do |page| batch = [] page.data.stack_resource_summaries.each do |s| batch << StackResourceSummary.new( logical_id: s.logical_resource_id, stack_name: [:stack_name], data: s, client: @client ) end y.yield(batch) end end StackResourceSummary::Collection.new(batches) end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf.
141 142 143 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 141 def role_arn data[:role_arn] end |
#rollback_configuration ⇒ Types::RollbackConfiguration
The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the specified monitoring period afterwards.
85 86 87 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 85 def rollback_configuration data[:rollback_configuration] end |
#root_id ⇒ String
For nested stacks–stacks created as resources for another stack–the stack ID of the top-level stack to which the nested stack ultimately belongs.
For more information, see [Working with Nested Stacks] in the *CloudFormation User Guide*.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
193 194 195 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 193 def root_id data[:root_id] end |
#stack_id ⇒ String
Unique identifier of the stack.
40 41 42 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 40 def stack_id data[:stack_id] end |
#stack_status ⇒ String
Current status of the stack.
91 92 93 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 91 def stack_status data[:stack_status] end |
#stack_status_reason ⇒ String
Success/failure message associated with the stack status.
97 98 99 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 97 def stack_status_reason data[:stack_status_reason] end |
#tags ⇒ Array<Types::Tag>
A list of `Tag`s that specify information about the stack.
147 148 149 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 147 def data[:tags] end |
#timeout_in_minutes ⇒ Integer
The amount of time within which stack creation should complete.
120 121 122 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 120 def timeout_in_minutes data[:timeout_in_minutes] end |
#update(options = {}) ⇒ Types::UpdateStackOutput
1001 1002 1003 1004 1005 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 1001 def update( = {}) = .merge(stack_name: @name) resp = @client.update_stack() resp.data end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::CloudFormation::Client] #wait_until instead
The waiting operation is performed on a copy. The original resource remains unchanged.
Waiter polls an API operation until a resource enters a desired state.
## Basic Usage
Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop until condition is true
resource.wait_until() {|resource| condition}
## Example
instance.wait_until(max_attempts:10, delay:5) do |instance|
instance.state.name == 'running'
end
## Configuration
You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:
# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}
## Callbacks
You can be notified before each polling attempt and before each delay. If you throw `:success` or `:failure` from these callbacks, it will terminate the waiter.
started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
# disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}
## Handling Errors
When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.
begin
resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
attempts attempt in seconds invoked before each attempt invoked before each wait
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 357 def wait_until( = {}, &block) self_copy = self.dup attempts = 0 [:max_attempts] = 10 unless .key?(:max_attempts) [:delay] ||= 10 [:poller] = Proc.new do attempts += 1 if block.call(self_copy) [:success, self_copy] else self_copy.reload unless attempts == [:max_attempts] :retry end end Aws::Waiters::Waiter.new().wait({}) end |
#wait_until_exists(options = {}, &block) ⇒ Stack
266 267 268 269 270 271 272 273 274 275 |
# File 'lib/aws-sdk-cloudformation/stack.rb', line 266 def wait_until_exists( = {}, &block) , params = () waiter = Waiters::StackExists.new() yield_waiter_and_warn(waiter, &block) if block_given? waiter.wait(params.merge(stack_name: @name)) Stack.new({ name: @name, client: @client }) end |