
aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedEventResource.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.model
/**
* Information about an Amazon Web Services resource that emitted and event that is related to a
* recommendation in an insight.
*/
class RecommendationRelatedEventResource private constructor(builder: Builder) {
/**
* The name of the resource that emitted the event. This corresponds to the
* Name field in an EventResource object.
*/
val name: kotlin.String? = builder.name
/**
* The type of the resource that emitted the event. This corresponds to the
* Type field in an EventResource object.
*/
val type: kotlin.String? = builder.type
companion object {
operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedEventResource = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RecommendationRelatedEventResource(")
append("name=$name,")
append("type=$type)")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (type?.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 RecommendationRelatedEventResource
if (name != other.name) return false
if (type != other.type) return false
return true
}
inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedEventResource = Builder(this).apply(block).build()
class Builder {
/**
* The name of the resource that emitted the event. This corresponds to the
* Name field in an EventResource object.
*/
var name: kotlin.String? = null
/**
* The type of the resource that emitted the event. This corresponds to the
* Type field in an EventResource object.
*/
var type: kotlin.String? = null
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedEventResource) : this() {
this.name = x.name
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedEventResource = RecommendationRelatedEventResource(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy