com.gu.aws.package.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
import com.amazonaws.auth.{InstanceProfileCredentialsProvider, AWSCredentialsProviderChain}
import com.amazonaws.auth.profile.ProfileCredentialsProvider
package object aws {
val ProfileName = "membership"
lazy val CredentialsProvider = new AWSCredentialsProviderChain(
new ProfileCredentialsProvider(ProfileName),
new InstanceProfileCredentialsProvider(false)
)
}