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