commonMain.aws.sdk.kotlin.services.cloudtraildata.model.ResultErrorEntry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudtraildata-jvm Show documentation
Show all versions of cloudtraildata-jvm Show documentation
The AWS SDK for Kotlin client for CloudTrail Data
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudtraildata.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Includes the error code and error message for events that could not be ingested by CloudTrail.
*/
public class ResultErrorEntry private constructor(builder: Builder) {
/**
* The error code for events that could not be ingested by CloudTrail. Possible error codes include: `FieldTooLong`, `FieldNotFound`, `InvalidChecksum`, `InvalidData`, `InvalidRecipient`, `InvalidEventSource`, `AccountNotSubscribed`, `Throttling`, and `InternalFailure`.
*/
public val errorCode: kotlin.String = requireNotNull(builder.errorCode) { "A non-null value must be provided for errorCode" }
/**
* The message that describes the error for events that could not be ingested by CloudTrail.
*/
public val errorMessage: kotlin.String = requireNotNull(builder.errorMessage) { "A non-null value must be provided for errorMessage" }
/**
* The original event ID from the source event that could not be ingested by CloudTrail.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudtraildata.model.ResultErrorEntry = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ResultErrorEntry(")
append("errorCode=$errorCode,")
append("errorMessage=$errorMessage,")
append("id=$id")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = errorCode.hashCode()
result = 31 * result + (errorMessage.hashCode())
result = 31 * result + (id.hashCode())
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 ResultErrorEntry
if (errorCode != other.errorCode) return false
if (errorMessage != other.errorMessage) return false
if (id != other.id) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudtraildata.model.ResultErrorEntry = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The error code for events that could not be ingested by CloudTrail. Possible error codes include: `FieldTooLong`, `FieldNotFound`, `InvalidChecksum`, `InvalidData`, `InvalidRecipient`, `InvalidEventSource`, `AccountNotSubscribed`, `Throttling`, and `InternalFailure`.
*/
public var errorCode: kotlin.String? = null
/**
* The message that describes the error for events that could not be ingested by CloudTrail.
*/
public var errorMessage: kotlin.String? = null
/**
* The original event ID from the source event that could not be ingested by CloudTrail.
*/
public var id: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudtraildata.model.ResultErrorEntry) : this() {
this.errorCode = x.errorCode
this.errorMessage = x.errorMessage
this.id = x.id
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudtraildata.model.ResultErrorEntry = ResultErrorEntry(this)
internal fun correctErrors(): Builder {
if (errorCode == null) errorCode = ""
if (errorMessage == null) errorMessage = ""
if (id == null) id = ""
return this
}
}
}