com.gu.memsub.promo.DynamoTables.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of membership-common_2.12 Show documentation
Show all versions of membership-common_2.12 Show documentation
Scala library for common Guardian Membership/Subscriptions functionality.
package com.gu.memsub.promo
import com.typesafe.config.Config
object DynamoTables {
def promotions(config: Config, stage: String): String =
config.getString(s"touchpoint.backend.environments.$stage.dynamodb.promotions")
def campaigns(config: Config, stage: String): String =
config.getString(s"touchpoint.backend.environments.$stage.dynamodb.campaigns")
}