commonMain.aws.sdk.kotlin.services.firehose.model.HttpEndpointDescription.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the HTTP endpoint selected as the destination.
*/
public class HttpEndpointDescription private constructor(builder: Builder) {
/**
* The name of the HTTP endpoint selected as the destination.
*/
public val name: kotlin.String? = builder.name
/**
* The URL of the HTTP endpoint selected as the destination.
*/
public val url: kotlin.String? = builder.url
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.HttpEndpointDescription = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("HttpEndpointDescription(")
append("name=$name,")
append("url=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (url?.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 HttpEndpointDescription
if (name != other.name) return false
if (url != other.url) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.HttpEndpointDescription = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the HTTP endpoint selected as the destination.
*/
public var name: kotlin.String? = null
/**
* The URL of the HTTP endpoint selected as the destination.
*/
public var url: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.HttpEndpointDescription) : this() {
this.name = x.name
this.url = x.url
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.HttpEndpointDescription = HttpEndpointDescription(this)
internal fun correctErrors(): Builder {
return this
}
}
}