commonMain.aws.sdk.kotlin.services.chatbot.model.DescribeSlackChannelConfigurationsRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.chatbot.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeSlackChannelConfigurationsRequest private constructor(builder: Builder) {
/**
* An optional ARN of a SlackChannelConfiguration to describe.
*/
public val chatConfigurationArn: kotlin.String? = builder.chatConfigurationArn
/**
* The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.chatbot.model.DescribeSlackChannelConfigurationsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeSlackChannelConfigurationsRequest(")
append("chatConfigurationArn=$chatConfigurationArn,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = chatConfigurationArn?.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 DescribeSlackChannelConfigurationsRequest
if (chatConfigurationArn != other.chatConfigurationArn) 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.chatbot.model.DescribeSlackChannelConfigurationsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An optional ARN of a SlackChannelConfiguration to describe.
*/
public var chatConfigurationArn: kotlin.String? = null
/**
* The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
*/
public var maxResults: kotlin.Int? = null
/**
* An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.chatbot.model.DescribeSlackChannelConfigurationsRequest) : this() {
this.chatConfigurationArn = x.chatConfigurationArn
this.maxResults = x.maxResults
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.chatbot.model.DescribeSlackChannelConfigurationsRequest = DescribeSlackChannelConfigurationsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy