Sha256: cfe15b4c7ed3c6e28b5219ce1ab0b6eaf3401943d6f782af36ee5796bec83122

Contents?: true

Size: 279 Bytes

Versions: 10

Compression:

Stored size: 279 Bytes

Contents

module Awspec::Helper
  module Finder
    module Ses
      def find_ses_identity(id)
        res = ses_client.list_identities
        ret = res[:identities].select do |identity|
          identity == id
        end
        ret.first if ret.count == 1
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
awspec-0.33.0 lib/awspec/helper/finder/ses.rb
awspec-0.32.0 lib/awspec/helper/finder/ses.rb
awspec-0.31.0 lib/awspec/helper/finder/ses.rb
awspec-0.30.0 lib/awspec/helper/finder/ses.rb
awspec-0.29.0 lib/awspec/helper/finder/ses.rb
awspec-0.28.1 lib/awspec/helper/finder/ses.rb
awspec-0.28.0 lib/awspec/helper/finder/ses.rb
awspec-0.27.2 lib/awspec/helper/finder/ses.rb
awspec-0.27.1 lib/awspec/helper/finder/ses.rb
awspec-0.27.0 lib/awspec/helper/finder/ses.rb