Sha256: f5c629d01af7e60dd16620d4c1ec7a3d0b7cce5b0ceb0518862c6ee0d71e79f6
Contents?: true
Size: 553 Bytes
Versions: 14
Compression:
Stored size: 553 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class Emr < Base def initialize super @type_name = 'Emr' @type = Awspec::Type::Emr.new('my-emr') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Emr::STATES.map { |state| "be_#{state.downcase}" }.join(', ') ] @ignore_matchers = Awspec::Type::Emr::STATES.map { |state| "be_#{state.downcase}" } @describes = [] end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems