Sha256: d59889524b44eb1abeb744912efef0ce0b4f0678a11231216aa11c1b45e9f5c2
Contents?: true
Size: 577 Bytes
Versions: 6
Compression:
Stored size: 577 Bytes
Contents
class Lono::CLI class Cfn < Lono::Command opts = Lono::CLI::Cfn::Opts.new(self) desc "cancel BLUEPRINT", "Cancel a CloudFormation blueprint." long_desc Help.text("cfn/cancel") opts.cancel def cancel(blueprint) Lono::Cfn::Cancel.new(options.merge(blueprint: blueprint)).run end desc "download BLUEPRINT", "Download CloudFormation template from existing blueprint." long_desc Help.text("cfn/download") opts.download def download(blueprint) Lono::Cfn::Download.new(options.merge(blueprint: blueprint)).run end end end
Version data entries
6 entries across 6 versions & 1 rubygems