commonMain.aws.sdk.kotlin.services.appflow.model.ServiceNowConnectorProfileCredentials.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 credentials required when using ServiceNow.
*/
public class ServiceNowConnectorProfileCredentials private constructor(builder: Builder) {
/**
* The OAuth 2.0 credentials required to authenticate the user.
*/
public val oAuth2Credentials: aws.sdk.kotlin.services.appflow.model.OAuth2Credentials? = builder.oAuth2Credentials
/**
* The password that corresponds to the user name.
*/
public val password: kotlin.String? = builder.password
/**
* The name of the user.
*/
public val username: kotlin.String? = builder.username
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appflow.model.ServiceNowConnectorProfileCredentials = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ServiceNowConnectorProfileCredentials(")
append("oAuth2Credentials=$oAuth2Credentials,")
append("password=*** Sensitive Data Redacted ***,")
append("username=$username")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = oAuth2Credentials?.hashCode() ?: 0
result = 31 * result + (password?.hashCode() ?: 0)
result = 31 * result + (username?.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 ServiceNowConnectorProfileCredentials
if (oAuth2Credentials != other.oAuth2Credentials) return false
if (password != other.password) return false
if (username != other.username) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appflow.model.ServiceNowConnectorProfileCredentials = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The OAuth 2.0 credentials required to authenticate the user.
*/
public var oAuth2Credentials: aws.sdk.kotlin.services.appflow.model.OAuth2Credentials? = null
/**
* The password that corresponds to the user name.
*/
public var password: kotlin.String? = null
/**
* The name of the user.
*/
public var username: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appflow.model.ServiceNowConnectorProfileCredentials) : this() {
this.oAuth2Credentials = x.oAuth2Credentials
this.password = x.password
this.username = x.username
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appflow.model.ServiceNowConnectorProfileCredentials = ServiceNowConnectorProfileCredentials(this)
/**
* construct an [aws.sdk.kotlin.services.appflow.model.OAuth2Credentials] inside the given [block]
*/
public fun oAuth2Credentials(block: aws.sdk.kotlin.services.appflow.model.OAuth2Credentials.Builder.() -> kotlin.Unit) {
this.oAuth2Credentials = aws.sdk.kotlin.services.appflow.model.OAuth2Credentials.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}