Sha256: 4f293dcc60ab9515f8a5e876a1e1a693e4775ad6408b1a7439f7248ea97e0b4d

Contents?: true

Size: 304 Bytes

Versions: 13

Compression:

Stored size: 304 Bytes

Contents

# frozen_string_literal: true

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.single_resource(id)
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
awspec-1.31.0 lib/awspec/helper/finder/ses.rb
awspec-1.30.0 lib/awspec/helper/finder/ses.rb
awspec-1.29.3 lib/awspec/helper/finder/ses.rb
awspec-1.29.2 lib/awspec/helper/finder/ses.rb
awspec-1.29.1 lib/awspec/helper/finder/ses.rb
awspec-1.29.0 lib/awspec/helper/finder/ses.rb
awspec-1.28.2 lib/awspec/helper/finder/ses.rb
awspec-1.28.1 lib/awspec/helper/finder/ses.rb
awspec-1.28.0 lib/awspec/helper/finder/ses.rb
awspec-1.27.1 lib/awspec/helper/finder/ses.rb
awspec-1.27.0 lib/awspec/helper/finder/ses.rb
awspec-1.26.0 lib/awspec/helper/finder/ses.rb
awspec-1.25.2 lib/awspec/helper/finder/ses.rb