12 lines
337 B
Ruby
12 lines
337 B
Ruby
actions :associate, :disassociate
|
|
|
|
attribute :aws_access_key, :kind_of => String
|
|
attribute :aws_secret_access_key, :kind_of => String
|
|
attribute :ip, :kind_of => String
|
|
attribute :timeout, :default => 3*60 # 3 mins, nil or 0 for no timeout
|
|
|
|
def initialize(*args)
|
|
super
|
|
@action = :associate
|
|
end
|