commonMain.aws.sdk.kotlin.services.appstream.model.SharedImagePermissions.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
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appstream.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the permissions that are available to the specified AWS account for a shared image.
*/
public class SharedImagePermissions private constructor(builder: Builder) {
/**
* Describes the permissions for a shared image.
*/
public val imagePermissions: aws.sdk.kotlin.services.appstream.model.ImagePermissions? = builder.imagePermissions
/**
* The 12-digit identifier of the AWS account with which the image is shared.
*/
public val sharedAccountId: kotlin.String? = builder.sharedAccountId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appstream.model.SharedImagePermissions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SharedImagePermissions(")
append("imagePermissions=$imagePermissions,")
append("sharedAccountId=$sharedAccountId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = imagePermissions?.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 SharedImagePermissions
if (imagePermissions != other.imagePermissions) return false
if (sharedAccountId != other.sharedAccountId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appstream.model.SharedImagePermissions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Describes the permissions for a shared image.
*/
public var imagePermissions: aws.sdk.kotlin.services.appstream.model.ImagePermissions? = null
/**
* The 12-digit identifier of the AWS account with which the image is shared.
*/
public var sharedAccountId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appstream.model.SharedImagePermissions) : this() {
this.imagePermissions = x.imagePermissions
this.sharedAccountId = x.sharedAccountId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appstream.model.SharedImagePermissions = SharedImagePermissions(this)
/**
* construct an [aws.sdk.kotlin.services.appstream.model.ImagePermissions] inside the given [block]
*/
public fun imagePermissions(block: aws.sdk.kotlin.services.appstream.model.ImagePermissions.Builder.() -> kotlin.Unit) {
this.imagePermissions = aws.sdk.kotlin.services.appstream.model.ImagePermissions.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy