smithy4s.com.amazonaws.kinesis.ConsumerList.scala Maven / Gradle / Ivy
package com.amazonaws.kinesis
import smithy4s.Hints
import smithy4s.Newtype
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.schema.Schema.bijection
import smithy4s.schema.Schema.list
/** @param member
* An object that represents the details of the consumer you registered. This type of
* object is returned by RegisterStreamConsumer.
*/
object ConsumerList extends Newtype[List[Consumer]] {
val id: ShapeId = ShapeId("com.amazonaws.kinesis", "ConsumerList")
val hints: Hints = Hints.empty
val underlyingSchema: Schema[List[Consumer]] = list(Consumer.schema).withId(id).addHints(hints)
implicit val schema: Schema[ConsumerList] = bijection(underlyingSchema, asBijection)
}