![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.aws.sdk.kotlin.services.devicefarm.model.CreateNetworkProfileResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devicefarm.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateNetworkProfileResponse private constructor(builder: Builder) {
/**
* The network profile that is returned by the create network profile request.
*/
public val networkProfile: aws.sdk.kotlin.services.devicefarm.model.NetworkProfile? = builder.networkProfile
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devicefarm.model.CreateNetworkProfileResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateNetworkProfileResponse(")
append("networkProfile=$networkProfile")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = networkProfile?.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 CreateNetworkProfileResponse
if (networkProfile != other.networkProfile) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devicefarm.model.CreateNetworkProfileResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The network profile that is returned by the create network profile request.
*/
public var networkProfile: aws.sdk.kotlin.services.devicefarm.model.NetworkProfile? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devicefarm.model.CreateNetworkProfileResponse) : this() {
this.networkProfile = x.networkProfile
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devicefarm.model.CreateNetworkProfileResponse = CreateNetworkProfileResponse(this)
/**
* construct an [aws.sdk.kotlin.services.devicefarm.model.NetworkProfile] inside the given [block]
*/
public fun networkProfile(block: aws.sdk.kotlin.services.devicefarm.model.NetworkProfile.Builder.() -> kotlin.Unit) {
this.networkProfile = aws.sdk.kotlin.services.devicefarm.model.NetworkProfile.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy