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

zio.config.aws.parameterstore.package.scala Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package zio.config.aws

import zio.aws.ssm.Ssm
import zio.{Config, ConfigProvider, ZIO}

package object parameterstore {

  implicit class FromConfigSourceTypesafe(c: ConfigProvider.type) {
    def fromParameterStore(
      basePath: String,
      ssm: Ssm
    ): ZIO[Any, Config.Error, ConfigProvider] =
      ParameterStoreConfigProvider.from(basePath, ssm)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy