class Awspec::Type::Msk

Constants

STATES

Public Class Methods

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

Public Instance Methods

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