Sha256: c01bb09b3f4d014d125c6aca810b0c7cfef3631a7748f04f82dfe99980630677
Contents?: true
Size: 741 Bytes
Versions: 48
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true # # Collect SES resources # class SES < Mapper # # Returns an array of resources. # def collect resources = [] # # list_identities # @client.list_identities.each_with_index do |response, page| log(response.context.operation_name, page) response.identities.each do |identity| struct = OpenStruct.new struct.type = 'identity' struct.arn = "arn:aws:ses:#{@region}:#{@account}:identity/#{identity}" # get_identity_dkim_attributes struct.dkim_attributes = @client.get_identity_dkim_attributes({ identities: [identity] }).dkim_attributes[identity].to_h resources.push(struct.to_h) end end resources end end
Version data entries
48 entries across 48 versions & 1 rubygems