commonMain.aws.sdk.kotlin.services.bedrockagent.model.CollectorFlowNodeConfiguration.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Defines a collector node in your flow. This node takes an iteration of inputs and consolidates them into an array in the output. For more information, see [Node types in Amazon Bedrock works](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
*/
public class CollectorFlowNodeConfiguration private constructor(builder: Builder) {
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.CollectorFlowNodeConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CollectorFlowNodeConfiguration(")
append(")")
}
override fun hashCode(): kotlin.Int {
return this::class.hashCode()
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as CollectorFlowNodeConfiguration
return true
}
@SdkDsl
public class Builder {
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.CollectorFlowNodeConfiguration) : this() {
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.CollectorFlowNodeConfiguration = CollectorFlowNodeConfiguration(this)
internal fun correctErrors(): Builder {
return this
}
}
}