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

scala.com.amazonaws.kinesis.DescribeStreamSummaryInput.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 StreamName
  *   

The name of the stream to describe.

* @param StreamARN *

The ARN of the stream.

*/ final case class DescribeStreamSummaryInput(streamName: Option[StreamName] = None, streamARN: Option[StreamARN] = None) object DescribeStreamSummaryInput extends ShapeTag.Companion[DescribeStreamSummaryInput] { val id: ShapeId = ShapeId("com.amazonaws.kinesis", "DescribeStreamSummaryInput") val hints: Hints = Hints( smithy.api.Input(), ) implicit val schema: Schema[DescribeStreamSummaryInput] = struct( StreamName.schema.optional[DescribeStreamSummaryInput]("StreamName", _.streamName).addHints(smithy.api.Documentation("

The name of the stream to describe.

")), StreamARN.schema.optional[DescribeStreamSummaryInput]("StreamARN", _.streamARN).addHints(smithy.api.Documentation("

The ARN of the stream.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy