Sha256: a51acc961aff6d78d67f250fc61610390f9db7fd477a7186e6d71cf8c0ff529f
Contents?: true
Size: 844 Bytes
Versions: 53
Compression:
Stored size: 844 Bytes
Contents
module Fog module AWS class CloudFormation class Real require 'fog/aws/parsers/cloud_formation/basic' # Execute a change set. # # @param ChangeSetName [String] The name of the change set to delete. # @option options StackName [String] The Stack name or ID (ARN) that is associated with change set. # # @return [Excon::Response] # # @see http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html def execute_change_set(change_set_name, options = {}) options['ChangeSetName'] = change_set_name request({ 'Action' => 'ExecuteChangeSet', :parser => Fog::Parsers::AWS::CloudFormation::Basic.new }.merge!(options)) end end end end end
Version data entries
53 entries across 51 versions & 2 rubygems