smithy4s.com.amazonaws.kinesis.KMSThrottlingException.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 request was denied due to request throttling. For more information about
* throttling, see Limits in
* the Amazon Web Services Key Management Service Developer
* Guide.
* @param message
* A message that provides information about the error.
*/
final case class KMSThrottlingException(message: Option[ErrorMessage] = None) extends Smithy4sThrowable {
override def getMessage(): String = message.map(_.value).orNull
}
object KMSThrottlingException extends ShapeTag.Companion[KMSThrottlingException] {
val id: ShapeId = ShapeId("com.amazonaws.kinesis", "KMSThrottlingException")
val hints: Hints = Hints(
smithy.api.Error.CLIENT.widen,
smithy.api.Documentation("The request was denied due to request throttling. For more information about\n throttling, see Limits in\n the Amazon Web Services Key Management Service Developer\n Guide.
"),
).lazily
// constructor using the original order from the spec
private def make(message: Option[ErrorMessage]): KMSThrottlingException = KMSThrottlingException(message)
implicit val schema: Schema[KMSThrottlingException] = struct(
ErrorMessage.schema.optional[KMSThrottlingException]("message", _.message).addHints(smithy.api.Documentation("A message that provides information about the error.
")),
)(make).withId(id).addHints(hints)
}