Sha256: a642d8baaabd3eaa6bd0638b34756732e0938afd26ec23389b4195bf3d214ad1
Contents?: true
Size: 630 Bytes
Versions: 56
Compression:
Stored size: 630 Bytes
Contents
# frozen_string_literal: true # # Collect Kinesis resources # class Kinesis < Mapper # # Returns an array of resources. # def collect resources = [] # # list_streams # @client.list_streams.each_with_index do |response, page| log(response.context.operation_name, page) # describe_stream response.stream_names.each do |stream| struct = OpenStruct.new(@client.describe_stream({ stream_name: stream }).stream_description.to_h) struct.type = 'stream' struct.arn = struct.stream_arn resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems