commonMain.aws.sdk.kotlin.services.glue.model.PrincipalPermissions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Permissions granted to a principal.
*/
public class PrincipalPermissions private constructor(builder: Builder) {
/**
* The permissions that are granted to the principal.
*/
public val permissions: List? = builder.permissions
/**
* The principal who is granted permissions.
*/
public val principal: aws.sdk.kotlin.services.glue.model.DataLakePrincipal? = builder.principal
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.PrincipalPermissions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PrincipalPermissions(")
append("permissions=$permissions,")
append("principal=$principal")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = permissions?.hashCode() ?: 0
result = 31 * result + (principal?.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 PrincipalPermissions
if (permissions != other.permissions) return false
if (principal != other.principal) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.PrincipalPermissions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The permissions that are granted to the principal.
*/
public var permissions: List? = null
/**
* The principal who is granted permissions.
*/
public var principal: aws.sdk.kotlin.services.glue.model.DataLakePrincipal? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.PrincipalPermissions) : this() {
this.permissions = x.permissions
this.principal = x.principal
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.PrincipalPermissions = PrincipalPermissions(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.DataLakePrincipal] inside the given [block]
*/
public fun principal(block: aws.sdk.kotlin.services.glue.model.DataLakePrincipal.Builder.() -> kotlin.Unit) {
this.principal = aws.sdk.kotlin.services.glue.model.DataLakePrincipal.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}