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

commonMain.aws.sdk.kotlin.services.kinesisanalytics.model.AddApplicationOutputRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.kinesisanalytics.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 *
 */
public class AddApplicationOutputRequest private constructor(builder: Builder) {
    /**
     * Name of the application to which you want to add the output configuration.
     */
    public val applicationName: kotlin.String? = builder.applicationName
    /**
     * Version of the application to which you want to add the output configuration. You can use the [DescribeApplication](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html) operation to get the current application version. If the version specified is not the current version, the `ConcurrentModificationException` is returned.
     */
    public val currentApplicationVersionId: kotlin.Long? = builder.currentApplicationVersionId
    /**
     * An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.
     */
    public val output: aws.sdk.kotlin.services.kinesisanalytics.model.Output? = builder.output

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.kinesisanalytics.model.AddApplicationOutputRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("AddApplicationOutputRequest(")
        append("applicationName=$applicationName,")
        append("currentApplicationVersionId=$currentApplicationVersionId,")
        append("output=$output")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = applicationName?.hashCode() ?: 0
        result = 31 * result + (currentApplicationVersionId?.hashCode() ?: 0)
        result = 31 * result + (output?.hashCode() ?: 0)
        return result
    }

    override fun equals(other: kotlin.Any?): kotlin.Boolean {
        if (this === other) return true
        if (other == null || this::class != other::class) return false

        other as AddApplicationOutputRequest

        if (applicationName != other.applicationName) return false
        if (currentApplicationVersionId != other.currentApplicationVersionId) return false
        if (output != other.output) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.kinesisanalytics.model.AddApplicationOutputRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Name of the application to which you want to add the output configuration.
         */
        public var applicationName: kotlin.String? = null
        /**
         * Version of the application to which you want to add the output configuration. You can use the [DescribeApplication](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html) operation to get the current application version. If the version specified is not the current version, the `ConcurrentModificationException` is returned.
         */
        public var currentApplicationVersionId: kotlin.Long? = null
        /**
         * An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.
         */
        public var output: aws.sdk.kotlin.services.kinesisanalytics.model.Output? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.kinesisanalytics.model.AddApplicationOutputRequest) : this() {
            this.applicationName = x.applicationName
            this.currentApplicationVersionId = x.currentApplicationVersionId
            this.output = x.output
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.kinesisanalytics.model.AddApplicationOutputRequest = AddApplicationOutputRequest(this)

        /**
         * construct an [aws.sdk.kotlin.services.kinesisanalytics.model.Output] inside the given [block]
         */
        public fun output(block: aws.sdk.kotlin.services.kinesisanalytics.model.Output.Builder.() -> kotlin.Unit) {
            this.output = aws.sdk.kotlin.services.kinesisanalytics.model.Output.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy