commonMain.aws.sdk.kotlin.services.appsync.model.SourceApiAssociationConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appsync-jvm Show documentation
Show all versions of appsync-jvm Show documentation
The AWS SDK for Kotlin client for AppSync
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appsync.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes properties used to specify configurations related to a source API.
*/
public class SourceApiAssociationConfig private constructor(builder: Builder) {
/**
* The property that indicates which merging option is enabled in the source API association.
*
* Valid merge types are `MANUAL_MERGE` (default) and `AUTO_MERGE`. Manual merges are the default behavior and require the user to trigger any changes from the source APIs to the merged API manually. Auto merges subscribe the merged API to the changes performed on the source APIs so that any change in the source APIs are also made to the merged API. Auto merges use `MergedApiExecutionRoleArn` to perform merge operations.
*/
public val mergeType: aws.sdk.kotlin.services.appsync.model.MergeType? = builder.mergeType
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.SourceApiAssociationConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SourceApiAssociationConfig(")
append("mergeType=$mergeType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = mergeType?.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 SourceApiAssociationConfig
if (mergeType != other.mergeType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.SourceApiAssociationConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The property that indicates which merging option is enabled in the source API association.
*
* Valid merge types are `MANUAL_MERGE` (default) and `AUTO_MERGE`. Manual merges are the default behavior and require the user to trigger any changes from the source APIs to the merged API manually. Auto merges subscribe the merged API to the changes performed on the source APIs so that any change in the source APIs are also made to the merged API. Auto merges use `MergedApiExecutionRoleArn` to perform merge operations.
*/
public var mergeType: aws.sdk.kotlin.services.appsync.model.MergeType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.SourceApiAssociationConfig) : this() {
this.mergeType = x.mergeType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.SourceApiAssociationConfig = SourceApiAssociationConfig(this)
internal fun correctErrors(): Builder {
return this
}
}
}