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