Packages

Simple library for working with data in DynamoDB.

Current section

Files

Jump to
exddb lib aws_config localhost.ex
Raw

lib/aws_config/localhost.ex

defmodule Exddb.AWS.Config.Localhost do
@behaviour Exddb.AWS.Config
require Record
Record.defrecord :aws_config, Record.extract(:aws_config, from_lib: "erlcloud/include/erlcloud_aws.hrl")
def get_config do
aws_config(
ddb_scheme: 'http://', ddb_host: 'localhost', ddb_port: 8000,
access_key_id: 'nothing',
secret_access_key: 'nothing'
)
end
end