commonMain.aws.sdk.kotlin.services.appstream.model.UpdateImagePermissionsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appstream-jvm Show documentation
Show all versions of appstream-jvm Show documentation
The AWS SDK for Kotlin client for AppStream
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appstream.model
class UpdateImagePermissionsRequest private constructor(builder: Builder) {
/**
* The permissions for the image.
*/
val imagePermissions: aws.sdk.kotlin.services.appstream.model.ImagePermissions? = builder.imagePermissions
/**
* The name of the private image.
*/
val name: kotlin.String? = builder.name
/**
* The 12-digit identifier of the AWS account for which you want add or update image permissions.
*/
val sharedAccountId: kotlin.String? = builder.sharedAccountId
companion object {
operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appstream.model.UpdateImagePermissionsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateImagePermissionsRequest(")
append("imagePermissions=$imagePermissions,")
append("name=$name,")
append("sharedAccountId=$sharedAccountId)")
}
override fun hashCode(): kotlin.Int {
var result = imagePermissions?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (sharedAccountId?.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 UpdateImagePermissionsRequest
if (imagePermissions != other.imagePermissions) return false
if (name != other.name) return false
if (sharedAccountId != other.sharedAccountId) return false
return true
}
inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appstream.model.UpdateImagePermissionsRequest = Builder(this).apply(block).build()
class Builder {
/**
* The permissions for the image.
*/
var imagePermissions: aws.sdk.kotlin.services.appstream.model.ImagePermissions? = null
/**
* The name of the private image.
*/
var name: kotlin.String? = null
/**
* The 12-digit identifier of the AWS account for which you want add or update image permissions.
*/
var sharedAccountId: kotlin.String? = null
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appstream.model.UpdateImagePermissionsRequest) : this() {
this.imagePermissions = x.imagePermissions
this.name = x.name
this.sharedAccountId = x.sharedAccountId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appstream.model.UpdateImagePermissionsRequest = UpdateImagePermissionsRequest(this)
/**
* construct an [aws.sdk.kotlin.services.appstream.model.ImagePermissions] inside the given [block]
*/
fun imagePermissions(block: aws.sdk.kotlin.services.appstream.model.ImagePermissions.Builder.() -> kotlin.Unit) {
this.imagePermissions = aws.sdk.kotlin.services.appstream.model.ImagePermissions.invoke(block)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy