Class: Seahorse::Model::Authorizer

Inherits:
Object
  • Object
show all
Defined in:
lib/seahorse/model/authorizer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeAuthorizer

Returns a new instance of Authorizer.



5
6
7
8
# File 'lib/seahorse/model/authorizer.rb', line 5

def initialize
  @type = 'provided'
  @placement = {}
end

Instance Attribute Details

#nameString

Returns:

  • (String)


11
12
13
# File 'lib/seahorse/model/authorizer.rb', line 11

def name
  @name
end

#placementHash

Returns:

  • (Hash)


17
18
19
# File 'lib/seahorse/model/authorizer.rb', line 17

def placement
  @placement
end

#typeString

Returns:

  • (String)


14
15
16
# File 'lib/seahorse/model/authorizer.rb', line 14

def type
  @type
end