class Awspec::Type::EcrRepository

Public Class Methods

new(repository_name) click to toggle source
Calls superclass method
# File lib/awspec/type/ecr_repository.rb, line 5
def initialize(repository_name)
  super
  @display_name = repository_name
end

Public Instance Methods

id() click to toggle source
# File lib/awspec/type/ecr_repository.rb, line 14
def id
  @id ||= resource_via_client.repository_name if resource_via_client
end
resource_via_client() click to toggle source
# File lib/awspec/type/ecr_repository.rb, line 10
def resource_via_client
  @resource_via_client ||= find_ecr_repository(@display_name)
end