smithy4s.com.amazonaws.kinesis.KMSAccessDeniedException.scala Maven / Gradle / Ivy
package com.amazonaws.kinesis
import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.Smithy4sThrowable
import smithy4s.schema.Schema.struct
/** The ciphertext references a key that doesn't exist or that you don't have access
* to.
* @param message
* A message that provides information about the error.
*/
final case class KMSAccessDeniedException(message: Option[ErrorMessage] = None) extends Smithy4sThrowable {
override def getMessage(): String = message.map(_.value).orNull
}
object KMSAccessDeniedException extends ShapeTag.Companion[KMSAccessDeniedException] {
val id: ShapeId = ShapeId("com.amazonaws.kinesis", "KMSAccessDeniedException")
val hints: Hints = Hints(
smithy.api.Error.CLIENT.widen,
smithy.api.Documentation("The ciphertext references a key that doesn\'t exist or that you don\'t have access\n to.
"),
).lazily
// constructor using the original order from the spec
private def make(message: Option[ErrorMessage]): KMSAccessDeniedException = KMSAccessDeniedException(message)
implicit val schema: Schema[KMSAccessDeniedException] = struct(
ErrorMessage.schema.optional[KMSAccessDeniedException]("message", _.message).addHints(smithy.api.Documentation("A message that provides information about the error.
")),
)(make).withId(id).addHints(hints)
}