commonMain.aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedAnomalyResource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devopsguru-jvm Show documentation
Show all versions of devopsguru-jvm Show documentation
The AWS SDK for Kotlin client for DevOps Guru
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about a resource in which DevOps Guru detected anomalous behavior.
*/
public class RecommendationRelatedAnomalyResource private constructor(builder: Builder) {
/**
* The name of the resource.
*/
public val name: kotlin.String? = builder.name
/**
* The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation resource type identifiers, `service-provider::service-name::data-type-name`. For example, `AWS::RDS::DBCluster`. For more information, see [Amazon Web Services resource and property types reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html) in the *Amazon Web Services CloudFormation User Guide*.
*/
public val type: kotlin.String? = builder.type
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedAnomalyResource = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RecommendationRelatedAnomalyResource(")
append("name=$name,")
append("type=$type")
append(")")
}
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 RecommendationRelatedAnomalyResource
if (name != other.name) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedAnomalyResource = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the resource.
*/
public var name: kotlin.String? = null
/**
* The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation resource type identifiers, `service-provider::service-name::data-type-name`. For example, `AWS::RDS::DBCluster`. For more information, see [Amazon Web Services resource and property types reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html) in the *Amazon Web Services CloudFormation User Guide*.
*/
public var type: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedAnomalyResource) : this() {
this.name = x.name
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.RecommendationRelatedAnomalyResource = RecommendationRelatedAnomalyResource(this)
internal fun correctErrors(): Builder {
return this
}
}
}