Class: LambdaConvert::Config
- Inherits:
-
Object
- Object
- LambdaConvert::Config
- Defined in:
- lib/lambda_convert/config.rb
Instance Attribute Summary collapse
-
#access_key ⇒ Object
Returns the value of attribute access_key.
-
#lambda_function ⇒ Object
Returns the value of attribute lambda_function.
-
#lambda_region ⇒ Object
Returns the value of attribute lambda_region.
-
#s3_bucket ⇒ Object
Returns the value of attribute s3_bucket.
-
#s3_key_prefix ⇒ Object
Returns the value of attribute s3_key_prefix.
-
#s3_region ⇒ Object
Returns the value of attribute s3_region.
-
#secret_key ⇒ Object
Returns the value of attribute secret_key.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
Set some defaults.
Constructor Details
#initialize ⇒ Config
Set some defaults
12 13 14 15 16 17 18 19 20 |
# File 'lib/lambda_convert/config.rb', line 12 def initialize @access_key = ?? @secret_key = ?? @lambda_function = "image-convert-dev" @lambda_region = "us-east-1" @s3_region = "us-east-1" @s3_bucket = "envoy-development-staging-2" @s3_key_prefix = "_convert_tmp" end |
Instance Attribute Details
#access_key ⇒ Object
Returns the value of attribute access_key.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def access_key @access_key end |
#lambda_function ⇒ Object
Returns the value of attribute lambda_function.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def lambda_function @lambda_function end |
#lambda_region ⇒ Object
Returns the value of attribute lambda_region.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def lambda_region @lambda_region end |
#s3_bucket ⇒ Object
Returns the value of attribute s3_bucket.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def s3_bucket @s3_bucket end |
#s3_key_prefix ⇒ Object
Returns the value of attribute s3_key_prefix.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def s3_key_prefix @s3_key_prefix end |
#s3_region ⇒ Object
Returns the value of attribute s3_region.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def s3_region @s3_region end |
#secret_key ⇒ Object
Returns the value of attribute secret_key.
3 4 5 |
# File 'lib/lambda_convert/config.rb', line 3 def secret_key @secret_key end |