All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.com.amazonaws.kinesis.DescribeStreamConsumerOutput.scala Maven / Gradle / Ivy

There is a newer version: 0.0.32
Show newest version
package com.amazonaws.kinesis

import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.struct

/** @param ConsumerDescription
  *   

An object that represents the details of the consumer.

*/ final case class DescribeStreamConsumerOutput(consumerDescription: ConsumerDescription) object DescribeStreamConsumerOutput extends ShapeTag.Companion[DescribeStreamConsumerOutput] { val id: ShapeId = ShapeId("com.amazonaws.kinesis", "DescribeStreamConsumerOutput") val hints: Hints = Hints( smithy.api.Output(), ) implicit val schema: Schema[DescribeStreamConsumerOutput] = struct( ConsumerDescription.schema.required[DescribeStreamConsumerOutput]("ConsumerDescription", _.consumerDescription).addHints(smithy.api.Documentation("

An object that represents the details of the consumer.

")), ){ DescribeStreamConsumerOutput.apply }.withId(id).addHints(hints) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy