commonMain.aws.sdk.kotlin.services.appflow.model.DescribeConnectorProfilesRequest.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 DescribeConnectorProfilesRequest private constructor(builder: Builder) {
/**
* The name of the connector. The name is unique for each `ConnectorRegistration` in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector type/.
*/
public val connectorLabel: kotlin.String? = builder.connectorLabel
/**
* The name of the connector profile. The name is unique for each `ConnectorProfile` in the Amazon Web Services account.
*/
public val connectorProfileNames: List? = builder.connectorProfileNames
/**
* The type of connector, such as Salesforce, Amplitude, and so on.
*/
public val connectorType: aws.sdk.kotlin.services.appflow.model.ConnectorType? = builder.connectorType
/**
* Specifies the maximum number of items that should be returned in the result set. The default for `maxResults` is 20 (for all paginated API operations).
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* The pagination token for the next page of data.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appflow.model.DescribeConnectorProfilesRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeConnectorProfilesRequest(")
append("connectorLabel=$connectorLabel,")
append("connectorProfileNames=$connectorProfileNames,")
append("connectorType=$connectorType,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = connectorLabel?.hashCode() ?: 0
result = 31 * result + (connectorProfileNames?.hashCode() ?: 0)
result = 31 * result + (connectorType?.hashCode() ?: 0)
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.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 DescribeConnectorProfilesRequest
if (connectorLabel != other.connectorLabel) return false
if (connectorProfileNames != other.connectorProfileNames) return false
if (connectorType != other.connectorType) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appflow.model.DescribeConnectorProfilesRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the connector. The name is unique for each `ConnectorRegistration` in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector type/.
*/
public var connectorLabel: kotlin.String? = null
/**
* The name of the connector profile. The name is unique for each `ConnectorProfile` in the Amazon Web Services account.
*/
public var connectorProfileNames: List? = null
/**
* The type of connector, such as Salesforce, Amplitude, and so on.
*/
public var connectorType: aws.sdk.kotlin.services.appflow.model.ConnectorType? = null
/**
* Specifies the maximum number of items that should be returned in the result set. The default for `maxResults` is 20 (for all paginated API operations).
*/
public var maxResults: kotlin.Int? = null
/**
* The pagination token for the next page of data.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appflow.model.DescribeConnectorProfilesRequest) : this() {
this.connectorLabel = x.connectorLabel
this.connectorProfileNames = x.connectorProfileNames
this.connectorType = x.connectorType
this.maxResults = x.maxResults
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appflow.model.DescribeConnectorProfilesRequest = DescribeConnectorProfilesRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}