Sha256: 05dfc41c3e407b564337fa4ff55d026ff12653ad8c94df1bdcb986296335be0f
Contents?: true
Size: 1.07 KB
Versions: 22
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true # # Collect DynamodDB resources # class DynamoDB < Mapper # # Returns an array of resources. # def collect resources = [] # # describe_limits # @client.describe_limits.each_with_index do |response, page| log(response.context.operation_name, page) struct = OpenStruct.new(response) struct.type = 'limits' struct.arn = "arn:aws:dynamodb:#{@region}:#{@account}:limits" resources.push(struct.to_h) end # # list_tables # @client.list_tables.each_with_index do |response, page| log(response.context.operation_name, page) # describe_table response.table_names.each do |table_name| struct = OpenStruct.new(@client.describe_table({ table_name: table_name }).table.to_h) struct.type = 'table' struct.arn = struct.table_arn struct.continuous_backups_description = @client.describe_continuous_backups({ table_name: table_name }).continuous_backups_description.to_h resources.push(struct.to_h) end end resources end end
Version data entries
22 entries across 22 versions & 1 rubygems