commonMain.aws.sdk.kotlin.services.nimble.model.LaunchProfileMembership.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble-jvm Show documentation
Show all versions of nimble-jvm Show documentation
The AWS SDK for Kotlin client for nimble
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.nimble.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Studio admins can use launch profile membership to delegate launch profile access to studio users in the Nimble Studio portal without writing or maintaining complex IAM policies. A launch profile member is a user association from your studio identity source who is granted permissions to a launch profile.
*
* A launch profile member (type USER) provides the following permissions to that launch profile:
* + GetLaunchProfile
* + GetLaunchProfileInitialization
* + GetLaunchProfileMembers
* + GetLaunchProfileMember
* + CreateStreamingSession
* + GetLaunchProfileDetails
*/
public class LaunchProfileMembership private constructor(builder: Builder) {
/**
* The ID of the identity store.
*/
public val identityStoreId: kotlin.String? = builder.identityStoreId
/**
* The persona.
*/
public val persona: aws.sdk.kotlin.services.nimble.model.LaunchProfilePersona? = builder.persona
/**
* The principal ID.
*/
public val principalId: kotlin.String? = builder.principalId
/**
* The Active Directory Security Identifier for this user, if available.
*/
public val sid: kotlin.String? = builder.sid
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.nimble.model.LaunchProfileMembership = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("LaunchProfileMembership(")
append("identityStoreId=$identityStoreId,")
append("persona=$persona,")
append("principalId=$principalId,")
append("sid=$sid")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = identityStoreId?.hashCode() ?: 0
result = 31 * result + (persona?.hashCode() ?: 0)
result = 31 * result + (principalId?.hashCode() ?: 0)
result = 31 * result + (sid?.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 LaunchProfileMembership
if (identityStoreId != other.identityStoreId) return false
if (persona != other.persona) return false
if (principalId != other.principalId) return false
if (sid != other.sid) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.nimble.model.LaunchProfileMembership = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the identity store.
*/
public var identityStoreId: kotlin.String? = null
/**
* The persona.
*/
public var persona: aws.sdk.kotlin.services.nimble.model.LaunchProfilePersona? = null
/**
* The principal ID.
*/
public var principalId: kotlin.String? = null
/**
* The Active Directory Security Identifier for this user, if available.
*/
public var sid: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.nimble.model.LaunchProfileMembership) : this() {
this.identityStoreId = x.identityStoreId
this.persona = x.persona
this.principalId = x.principalId
this.sid = x.sid
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.nimble.model.LaunchProfileMembership = LaunchProfileMembership(this)
internal fun correctErrors(): Builder {
return this
}
}
}