commonMain.aws.sdk.kotlin.services.appflow.model.PardotConnectorProfileProperties.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
/**
* The connector-specific profile properties required when using Salesforce Pardot.
*/
public class PardotConnectorProfileProperties private constructor(builder: Builder) {
/**
* The business unit id of Salesforce Pardot instance.
*/
public val businessUnitId: kotlin.String? = builder.businessUnitId
/**
* The location of the Salesforce Pardot resource.
*/
public val instanceUrl: kotlin.String? = builder.instanceUrl
/**
* Indicates whether the connector profile applies to a sandbox or production environment.
*/
public val isSandboxEnvironment: kotlin.Boolean = builder.isSandboxEnvironment
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appflow.model.PardotConnectorProfileProperties = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PardotConnectorProfileProperties(")
append("businessUnitId=$businessUnitId,")
append("instanceUrl=$instanceUrl,")
append("isSandboxEnvironment=$isSandboxEnvironment")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = businessUnitId?.hashCode() ?: 0
result = 31 * result + (instanceUrl?.hashCode() ?: 0)
result = 31 * result + (isSandboxEnvironment.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 PardotConnectorProfileProperties
if (businessUnitId != other.businessUnitId) return false
if (instanceUrl != other.instanceUrl) return false
if (isSandboxEnvironment != other.isSandboxEnvironment) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appflow.model.PardotConnectorProfileProperties = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The business unit id of Salesforce Pardot instance.
*/
public var businessUnitId: kotlin.String? = null
/**
* The location of the Salesforce Pardot resource.
*/
public var instanceUrl: kotlin.String? = null
/**
* Indicates whether the connector profile applies to a sandbox or production environment.
*/
public var isSandboxEnvironment: kotlin.Boolean = false
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appflow.model.PardotConnectorProfileProperties) : this() {
this.businessUnitId = x.businessUnitId
this.instanceUrl = x.instanceUrl
this.isSandboxEnvironment = x.isSandboxEnvironment
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appflow.model.PardotConnectorProfileProperties = PardotConnectorProfileProperties(this)
internal fun correctErrors(): Builder {
return this
}
}
}