smithy4s.com.amazonaws.kinesis.SubscribeToShardOutput.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_native0.4_3 Show documentation
Show all versions of kinesis4cats-smithy4s-client_native0.4_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.schema.Schema.constant
/** @param EventStream
* The event stream that your consumer can use to read records from the shard.
*/
final case class SubscribeToShardOutput()
object SubscribeToShardOutput extends ShapeTag.Companion[SubscribeToShardOutput] {
val id: ShapeId = ShapeId("com.amazonaws.kinesis", "SubscribeToShardOutput")
val hints: Hints = Hints(
smithy.api.Output(),
).lazily
implicit val schema: Schema[SubscribeToShardOutput] = constant(SubscribeToShardOutput()).withId(id).addHints(hints)
}