Sha256: f1618a934a2ee4ae1ea06306d377cdc342069e622bb9a559ad9fae13b22c98d8
Contents?: true
Size: 503 Bytes
Versions: 118
Compression:
Stored size: 503 Bytes
Contents
module Awspec::Type class Elasticsearch < ResourceBase def resource_via_client @resource_via_client ||= find_elasticsearch_domain(@display_name) end def id @id ||= resource_via_client.arn if resource_via_client end def has_access_policies?(policy) resource_via_client.access_policies == policy.gsub(/\n/, '').gsub(/ /, '') end def created? resource_via_client.created end def deleted? resource_via_client.deleted end end end
Version data entries
118 entries across 118 versions & 4 rubygems