Sha256: 3aa2945b86f05d6d5ad25b0c0c38c2f7ee67641771185c6d70fb4457ae5815a4
Contents?: true
Size: 702 Bytes
Versions: 53
Compression:
Stored size: 702 Bytes
Contents
module Fog module AWS class CloudFormation class Real require 'fog/aws/parsers/cloud_formation/basic' # Cancels an update on the specified stack. # # @param stack_name String] Name of the stack to cancel update. # # @return [Excon::Response] # # @see http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html def cancel_update_stack(stack_name) request( 'Action' => 'CancelUpdateStack', 'StackName' => stack_name, :parser => Fog::Parsers::AWS::CloudFormation::Basic.new ) end end end end end
Version data entries
53 entries across 51 versions & 2 rubygems