class Cumulus::IAM::UserConfig

Public: Represents a config file for a user. Lazily loads its static and template policies as needed.

Public Class Methods

new(name = nil, json = nil) click to toggle source

Public: Constructor

name - the name of the user json - the Hash containing the JSON configuration for this UserConfig, if

nil, this will be an "empty UserConfig"
Calls superclass method Cumulus::IAM::ResourceWithPolicy::new
# File lib/iam/models/UserConfig.rb, line 14
def initialize(name = nil, json = nil)
  super(name, json)
  @type = "user"
end