Sha256: c8ecf726c6a6b8e3b59fd4b8e5153e6a2f3da15168a6564d216b09097f997e2f
Contents?: true
Size: 702 Bytes
Versions: 56
Compression:
Stored size: 702 Bytes
Contents
# frozen_string_literal: true # # Collect DMS resources # class DatabaseMigrationService < Mapper # # Returns an array of resources. # def collect resources = [] # # describe_replication_instances # @client.describe_replication_instances.each_with_index do |response, page| log(response.context.operation_name, page) response.replication_instances.each do |instance| struct = OpenStruct.new(instance.to_h) struct.type = 'replication_instance' struct.arn = "arn:aws:#{@service}:#{@region}::replication_instance/#{instance.replication_instance_identifier}" resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems