All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gu.aws.package.scala Maven / Gradle / Ivy

There is a newer version: 0.605
Show newest version
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)
  )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy