commonMain.aws.sdk.kotlin.services.ssoadmin.model.PutInlinePolicyToPermissionSetRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssoadmin-jvm Show documentation
Show all versions of ssoadmin-jvm Show documentation
The AWS SDK for Kotlin client for SSO Admin
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ssoadmin.model
import aws.smithy.kotlin.runtime.SdkDsl
public class PutInlinePolicyToPermissionSetRequest private constructor(builder: Builder) {
/**
* The inline policy to attach to a PermissionSet.
*/
public val inlinePolicy: kotlin.String? = builder.inlinePolicy
/**
* The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see [Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the *Amazon Web Services General Reference*.
*/
public val instanceArn: kotlin.String? = builder.instanceArn
/**
* The ARN of the permission set.
*/
public val permissionSetArn: kotlin.String? = builder.permissionSetArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.ssoadmin.model.PutInlinePolicyToPermissionSetRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutInlinePolicyToPermissionSetRequest(")
append("inlinePolicy=$inlinePolicy,")
append("instanceArn=$instanceArn,")
append("permissionSetArn=$permissionSetArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = inlinePolicy?.hashCode() ?: 0
result = 31 * result + (instanceArn?.hashCode() ?: 0)
result = 31 * result + (permissionSetArn?.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 PutInlinePolicyToPermissionSetRequest
if (inlinePolicy != other.inlinePolicy) return false
if (instanceArn != other.instanceArn) return false
if (permissionSetArn != other.permissionSetArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.ssoadmin.model.PutInlinePolicyToPermissionSetRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The inline policy to attach to a PermissionSet.
*/
public var inlinePolicy: kotlin.String? = null
/**
* The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see [Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the *Amazon Web Services General Reference*.
*/
public var instanceArn: kotlin.String? = null
/**
* The ARN of the permission set.
*/
public var permissionSetArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.ssoadmin.model.PutInlinePolicyToPermissionSetRequest) : this() {
this.inlinePolicy = x.inlinePolicy
this.instanceArn = x.instanceArn
this.permissionSetArn = x.permissionSetArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.ssoadmin.model.PutInlinePolicyToPermissionSetRequest = PutInlinePolicyToPermissionSetRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}