Class: Convection::Model::Tags

Inherits:
Hash
  • Object
show all
Defined in:
lib/convection/model/mixin/taggable.rb

Overview

CloudFormation ResourceTag set

Instance Method Summary collapse

Methods inherited from Hash

#diff, #properties

Instance Method Details

#renderObject



9
10
11
12
13
14
15
16
# File 'lib/convection/model/mixin/taggable.rb', line 9

def render
  map do |t|
    {
      'Key' => t[0].to_s,
      'Value' => t[1]
    }
  end
end