
commonMain.aws.sdk.kotlin.services.auditmanager.model.BatchCreateDelegationByAssessmentError.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.auditmanager.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An error entity for the `BatchCreateDelegationByAssessment` API. This is used to provide more meaningful errors than a simple string message.
*/
public class BatchCreateDelegationByAssessmentError private constructor(builder: Builder) {
/**
* The API request to batch create delegations in Audit Manager.
*/
public val createDelegationRequest: aws.sdk.kotlin.services.auditmanager.model.CreateDelegationRequest? = builder.createDelegationRequest
/**
* The error code that the `BatchCreateDelegationByAssessment` API returned.
*/
public val errorCode: kotlin.String? = builder.errorCode
/**
* The error message that the `BatchCreateDelegationByAssessment` API returned.
*/
public val errorMessage: kotlin.String? = builder.errorMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.auditmanager.model.BatchCreateDelegationByAssessmentError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchCreateDelegationByAssessmentError(")
append("createDelegationRequest=$createDelegationRequest,")
append("errorCode=$errorCode,")
append("errorMessage=$errorMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = createDelegationRequest?.hashCode() ?: 0
result = 31 * result + (errorCode?.hashCode() ?: 0)
result = 31 * result + (errorMessage?.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 BatchCreateDelegationByAssessmentError
if (createDelegationRequest != other.createDelegationRequest) return false
if (errorCode != other.errorCode) return false
if (errorMessage != other.errorMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.auditmanager.model.BatchCreateDelegationByAssessmentError = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The API request to batch create delegations in Audit Manager.
*/
public var createDelegationRequest: aws.sdk.kotlin.services.auditmanager.model.CreateDelegationRequest? = null
/**
* The error code that the `BatchCreateDelegationByAssessment` API returned.
*/
public var errorCode: kotlin.String? = null
/**
* The error message that the `BatchCreateDelegationByAssessment` API returned.
*/
public var errorMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.auditmanager.model.BatchCreateDelegationByAssessmentError) : this() {
this.createDelegationRequest = x.createDelegationRequest
this.errorCode = x.errorCode
this.errorMessage = x.errorMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.auditmanager.model.BatchCreateDelegationByAssessmentError = BatchCreateDelegationByAssessmentError(this)
/**
* construct an [aws.sdk.kotlin.services.auditmanager.model.CreateDelegationRequest] inside the given [block]
*/
public fun createDelegationRequest(block: aws.sdk.kotlin.services.auditmanager.model.CreateDelegationRequest.Builder.() -> kotlin.Unit) {
this.createDelegationRequest = aws.sdk.kotlin.services.auditmanager.model.CreateDelegationRequest.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy