Sha256: 1241331b662d33d94737f2367e45701be37e0b05982d964668f7e06d8d774868

Contents?: true

Size: 602 Bytes

Versions: 126

Compression:

Stored size: 602 Bytes

Contents

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

126 entries across 126 versions & 4 rubygems

Version Path
awspec-0.68.0 lib/awspec/generator/doc/type/ecs_task_definition.rb
awspec-0.67.1 lib/awspec/generator/doc/type/ecs_task_definition.rb
awspec-0.67.0 lib/awspec/generator/doc/type/ecs_task_definition.rb
awspec-0.66.2 lib/awspec/generator/doc/type/ecs_task_definition.rb
awspec-0.66.1 lib/awspec/generator/doc/type/ecs_task_definition.rb
awspec-0.66.0 lib/awspec/generator/doc/type/ecs_task_definition.rb