scala.com.amazonaws.kinesis.ExpiredNextTokenException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinesis4cats-smithy4s-client_3 Show documentation
Show all versions of kinesis4cats-smithy4s-client_3 Show documentation
Cats tooling for the Smithy4s Kinesis Client
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 pagination token passed to the operation is expired.
*/
final case class ExpiredNextTokenException(message: Option[ErrorMessage] = None) extends Smithy4sThrowable {
override def getMessage(): String = message.map(_.value).orNull
}
object ExpiredNextTokenException extends ShapeTag.Companion[ExpiredNextTokenException] {
val id: ShapeId = ShapeId("com.amazonaws.kinesis", "ExpiredNextTokenException")
val hints: Hints = Hints(
smithy.api.Error.CLIENT.widen,
smithy.api.Documentation("The pagination token passed to the operation is expired.
"),
)
implicit val schema: Schema[ExpiredNextTokenException] = struct(
ErrorMessage.schema.optional[ExpiredNextTokenException]("message", _.message),
){
ExpiredNextTokenException.apply
}.withId(id).addHints(hints)
}