module Awspec::Helper::Finder::Ses

Public Instance Methods

find_ses_identity(id) click to toggle source
# File lib/awspec/helper/finder/ses.rb, line 6
def find_ses_identity(id)
  res = ses_client.list_identities
  ret = res.identities.select do |identity|
    identity == id
  end
  ret.single_resource(id)
end