Module: Stax::Firehose

Defined in:
lib/stax/mixin/firehose.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(thor) ⇒ Object



5
6
7
8
9
10
11
12
# File 'lib/stax/mixin/firehose.rb', line 5

def self.included(thor)
  thor.desc(:firehose, 'Firehose subcommands')
  thor.subcommand(:firehose, Cmd::Firehose)

  def stack_firehoses
    Aws::Cfn.resources_by_type(stack_name,  'AWS::KinesisFirehose::DeliveryStream')
  end
end

Instance Method Details

#stack_firehosesObject



9
10
11
# File 'lib/stax/mixin/firehose.rb', line 9

def stack_firehoses
  Aws::Cfn.resources_by_type(stack_name,  'AWS::KinesisFirehose::DeliveryStream')
end