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

commonMain.aws.sdk.kotlin.services.appflow.model.SourceFieldProperties.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.appflow.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The properties that can be applied to a field when the connector is being used as a source.
 */
public class SourceFieldProperties private constructor(builder: Builder) {
    /**
     * Indicates if the field can be queried.
     */
    public val isQueryable: kotlin.Boolean = builder.isQueryable
    /**
     * Indicates whether the field can be returned in a search result.
     */
    public val isRetrievable: kotlin.Boolean = builder.isRetrievable
    /**
     * Indicates if this timestamp field can be used for incremental queries.
     */
    public val isTimestampFieldForIncrementalQueries: kotlin.Boolean = builder.isTimestampFieldForIncrementalQueries

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

    override fun toString(): kotlin.String = buildString {
        append("SourceFieldProperties(")
        append("isQueryable=$isQueryable,")
        append("isRetrievable=$isRetrievable,")
        append("isTimestampFieldForIncrementalQueries=$isTimestampFieldForIncrementalQueries")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = isQueryable.hashCode()
        result = 31 * result + (isRetrievable.hashCode())
        result = 31 * result + (isTimestampFieldForIncrementalQueries.hashCode())
        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 SourceFieldProperties

        if (isQueryable != other.isQueryable) return false
        if (isRetrievable != other.isRetrievable) return false
        if (isTimestampFieldForIncrementalQueries != other.isTimestampFieldForIncrementalQueries) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Indicates if the field can be queried.
         */
        public var isQueryable: kotlin.Boolean = false
        /**
         * Indicates whether the field can be returned in a search result.
         */
        public var isRetrievable: kotlin.Boolean = false
        /**
         * Indicates if this timestamp field can be used for incremental queries.
         */
        public var isTimestampFieldForIncrementalQueries: kotlin.Boolean = false

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.appflow.model.SourceFieldProperties) : this() {
            this.isQueryable = x.isQueryable
            this.isRetrievable = x.isRetrievable
            this.isTimestampFieldForIncrementalQueries = x.isTimestampFieldForIncrementalQueries
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy