class Stax::Cmd::Firehose

Constants

COLORS

Public Instance Methods

ls() click to toggle source
# File lib/stax/mixin/firehose.rb, line 25
def ls
  print_table my.stack_firehoses.map { |r|
    f = Aws::Firehose.describe(r.physical_resource_id)
    [f.delivery_stream_name, color(f.delivery_stream_status, COLORS), f.create_timestamp, f.delivery_stream_type]
  }
end