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