Sha256: b5003639face9620cbacf9d2df236be72693deb9a2e489371d0b20205669b971
Contents?: true
Size: 385 Bytes
Versions: 14
Compression:
Stored size: 385 Bytes
Contents
# frozen_string_literal: true module Awspec::Type class BatchJobDefinition < ResourceBase def initialize(jobdef) super @display_name = jobdef end def resource_via_client @resource_via_client ||= find_batch_job_definition(@display_name) end def id @id ||= resource_via_client.job_definition_name if resource_via_client end end end
Version data entries
14 entries across 14 versions & 1 rubygems