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

ecret-rotation.aws-parameterstore-secret-supplier-base_3.8.1.0.source-code.MinimalAwsSdkWrapper.scala Maven / Gradle / Ivy

There is a newer version: 11.2.0
Show newest version
package com.gu.play.secretrotation.aws.parameterstore

import java.time.Instant

case class Metadata(version: Long, lastModified: Instant)
case class ParameterValue(value: String, metadata: Metadata)

/** This is the minimal functionality we need from AWS SSM ParameterStore,
  * acting as a veneer hiding the differences between v1 & v2 of the AWS SDK for Java,
  * so that we can support both versions of the AWS SDK simultaneously.
  */
trait MinimalAwsSdkWrapper {
  def fetchValues(parameters: Seq[String]): Iterable[ParameterValue]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy