commonMain.aws.sdk.kotlin.services.ssoadmin.model.DeleteApplicationAuthenticationMethodRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssoadmin-jvm Show documentation
Show all versions of ssoadmin-jvm Show documentation
The AWS SDK for Kotlin client for SSO Admin
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ssoadmin.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteApplicationAuthenticationMethodRequest private constructor(builder: Builder) {
/**
* Specifies the ARN of the application with the authentication method to delete.
*/
public val applicationArn: kotlin.String? = builder.applicationArn
/**
* Specifies the authentication method type to delete from the application.
*/
public val authenticationMethodType: aws.sdk.kotlin.services.ssoadmin.model.AuthenticationMethodType? = builder.authenticationMethodType
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.ssoadmin.model.DeleteApplicationAuthenticationMethodRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteApplicationAuthenticationMethodRequest(")
append("applicationArn=$applicationArn,")
append("authenticationMethodType=$authenticationMethodType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = applicationArn?.hashCode() ?: 0
result = 31 * result + (authenticationMethodType?.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 DeleteApplicationAuthenticationMethodRequest
if (applicationArn != other.applicationArn) return false
if (authenticationMethodType != other.authenticationMethodType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.ssoadmin.model.DeleteApplicationAuthenticationMethodRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies the ARN of the application with the authentication method to delete.
*/
public var applicationArn: kotlin.String? = null
/**
* Specifies the authentication method type to delete from the application.
*/
public var authenticationMethodType: aws.sdk.kotlin.services.ssoadmin.model.AuthenticationMethodType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.ssoadmin.model.DeleteApplicationAuthenticationMethodRequest) : this() {
this.applicationArn = x.applicationArn
this.authenticationMethodType = x.authenticationMethodType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.ssoadmin.model.DeleteApplicationAuthenticationMethodRequest = DeleteApplicationAuthenticationMethodRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}