class Athens::Configuration

Attributes

aws_access_key[RW]
aws_profile[RW]
aws_region[RW]
aws_secret_key[RW]
output_location[RW]
wait_polling_period[RW]

Public Class Methods

new() click to toggle source
# File lib/athens/configuration.rb, line 10
def initialize
  @aws_access_key = nil
  @aws_secret_key = nil
  @aws_region = nil
  @output_location = nil
  @wait_polling_period = 0.25
  @aws_profile = nil
end