Sha256: fa90fb3c458cb45b8a6b50ae41d17b5ca9137d713de78db3cc086bb0b85ee7d6
Contents?: true
Size: 497 Bytes
Versions: 26
Compression:
Stored size: 497 Bytes
Contents
module Awspec::Type class Lambda < Base def resource_via_client @resource_via_client ||= find_lambda(@display_name) end def id @id ||= resource_via_client.function_arn if resource_via_client end def timeout resource_via_client.timeout end def has_event_source?(event_source_arn) sources = select_event_source_by_function_arn(id) sources.find do |source| source.event_source_arn == event_source_arn end end end end
Version data entries
26 entries across 26 versions & 1 rubygems