commonMain.aws.sdk.kotlin.services.appflow.model.UpdateFlowRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appflow-jvm Show documentation
Show all versions of appflow-jvm Show documentation
The AWS SDK for Kotlin client for Appflow
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appflow.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateFlowRequest private constructor(builder: Builder) {
/**
* The `clientToken` parameter is an idempotency token. It ensures that your `UpdateFlow` request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same `clientToken` parameter value.
*
* If you omit a `clientToken` value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.
*
* If you specify input parameters that differ from your first request, an error occurs. If you use a different value for `clientToken`, Amazon AppFlow considers it a new call to `UpdateFlow`. The token is active for 8 hours.
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* A description of the flow.
*/
public val description: kotlin.String? = builder.description
/**
* The configuration that controls how Amazon AppFlow transfers data to the destination connector.
*/
public val destinationFlowConfigList: List? = builder.destinationFlowConfigList
/**
* The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
*/
public val flowName: kotlin.String? = builder.flowName
/**
* Specifies the configuration that Amazon AppFlow uses when it catalogs the data that's transferred by the associated flow. When Amazon AppFlow catalogs the data from a flow, it stores metadata in a data catalog.
*/
public val metadataCatalogConfig: aws.sdk.kotlin.services.appflow.model.MetadataCatalogConfig? = builder.metadataCatalogConfig
/**
* Contains information about the configuration of the source connector used in the flow.
*/
public val sourceFlowConfig: aws.sdk.kotlin.services.appflow.model.SourceFlowConfig? = builder.sourceFlowConfig
/**
* A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
*/
public val tasks: List? = builder.tasks
/**
* The trigger settings that determine how and when the flow runs.
*/
public val triggerConfig: aws.sdk.kotlin.services.appflow.model.TriggerConfig? = builder.triggerConfig
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appflow.model.UpdateFlowRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateFlowRequest(")
append("clientToken=$clientToken,")
append("description=$description,")
append("destinationFlowConfigList=$destinationFlowConfigList,")
append("flowName=$flowName,")
append("metadataCatalogConfig=$metadataCatalogConfig,")
append("sourceFlowConfig=$sourceFlowConfig,")
append("tasks=$tasks,")
append("triggerConfig=$triggerConfig")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (destinationFlowConfigList?.hashCode() ?: 0)
result = 31 * result + (flowName?.hashCode() ?: 0)
result = 31 * result + (metadataCatalogConfig?.hashCode() ?: 0)
result = 31 * result + (sourceFlowConfig?.hashCode() ?: 0)
result = 31 * result + (tasks?.hashCode() ?: 0)
result = 31 * result + (triggerConfig?.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 UpdateFlowRequest
if (clientToken != other.clientToken) return false
if (description != other.description) return false
if (destinationFlowConfigList != other.destinationFlowConfigList) return false
if (flowName != other.flowName) return false
if (metadataCatalogConfig != other.metadataCatalogConfig) return false
if (sourceFlowConfig != other.sourceFlowConfig) return false
if (tasks != other.tasks) return false
if (triggerConfig != other.triggerConfig) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appflow.model.UpdateFlowRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The `clientToken` parameter is an idempotency token. It ensures that your `UpdateFlow` request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same `clientToken` parameter value.
*
* If you omit a `clientToken` value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.
*
* If you specify input parameters that differ from your first request, an error occurs. If you use a different value for `clientToken`, Amazon AppFlow considers it a new call to `UpdateFlow`. The token is active for 8 hours.
*/
public var clientToken: kotlin.String? = null
/**
* A description of the flow.
*/
public var description: kotlin.String? = null
/**
* The configuration that controls how Amazon AppFlow transfers data to the destination connector.
*/
public var destinationFlowConfigList: List? = null
/**
* The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
*/
public var flowName: kotlin.String? = null
/**
* Specifies the configuration that Amazon AppFlow uses when it catalogs the data that's transferred by the associated flow. When Amazon AppFlow catalogs the data from a flow, it stores metadata in a data catalog.
*/
public var metadataCatalogConfig: aws.sdk.kotlin.services.appflow.model.MetadataCatalogConfig? = null
/**
* Contains information about the configuration of the source connector used in the flow.
*/
public var sourceFlowConfig: aws.sdk.kotlin.services.appflow.model.SourceFlowConfig? = null
/**
* A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
*/
public var tasks: List? = null
/**
* The trigger settings that determine how and when the flow runs.
*/
public var triggerConfig: aws.sdk.kotlin.services.appflow.model.TriggerConfig? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appflow.model.UpdateFlowRequest) : this() {
this.clientToken = x.clientToken
this.description = x.description
this.destinationFlowConfigList = x.destinationFlowConfigList
this.flowName = x.flowName
this.metadataCatalogConfig = x.metadataCatalogConfig
this.sourceFlowConfig = x.sourceFlowConfig
this.tasks = x.tasks
this.triggerConfig = x.triggerConfig
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appflow.model.UpdateFlowRequest = UpdateFlowRequest(this)
/**
* construct an [aws.sdk.kotlin.services.appflow.model.MetadataCatalogConfig] inside the given [block]
*/
public fun metadataCatalogConfig(block: aws.sdk.kotlin.services.appflow.model.MetadataCatalogConfig.Builder.() -> kotlin.Unit) {
this.metadataCatalogConfig = aws.sdk.kotlin.services.appflow.model.MetadataCatalogConfig.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.appflow.model.SourceFlowConfig] inside the given [block]
*/
public fun sourceFlowConfig(block: aws.sdk.kotlin.services.appflow.model.SourceFlowConfig.Builder.() -> kotlin.Unit) {
this.sourceFlowConfig = aws.sdk.kotlin.services.appflow.model.SourceFlowConfig.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.appflow.model.TriggerConfig] inside the given [block]
*/
public fun triggerConfig(block: aws.sdk.kotlin.services.appflow.model.TriggerConfig.Builder.() -> kotlin.Unit) {
this.triggerConfig = aws.sdk.kotlin.services.appflow.model.TriggerConfig.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}