Sha256: 95d41a6515ccb928cdd52b03d4465bfa9afd51c9e0f1e826a7bb331efbb0a558
Contents?: true
Size: 636 Bytes
Versions: 56
Compression:
Stored size: 636 Bytes
Contents
# frozen_string_literal: true # # Collect DirectConnect resources # class DirectConnect < Mapper # # Returns an array of resources. # def collect resources = [] # # describe_connections # @client.describe_connections.each_with_index do |response, page| log(response.context.operation_name, page) response.connections.each do |connection| struct = OpenStruct.new(connection.to_h) struct.type = 'connection' struct.arn = "arn:aws:service:#{@service}::connection/#{connection.connection_id}" resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems