Sha256: 98ffa9eb8e3e087713b102871207930838c34d346522c6998ee9b94f81ccc8cb
Contents?: true
Size: 699 Bytes
Versions: 56
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true # # Collect CloudFront resources # class CloudFront < Mapper # # Returns an array of resources. # def collect resources = [] # # list_distributions # @client.list_distributions.each_with_index do |response, page| log(response.context.operation_name, page) # get_distribution response.distribution_list.items.each do |dist| struct = OpenStruct.new(dist.to_h) struct.type = 'distribution' struct.details = @client .get_distribution({ id: dist.id }) .distribution.to_h resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems