commonMain.aws.sdk.kotlin.services.eventbridge.model.RemovePermissionRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-jvm Show documentation
Show all versions of eventbridge-jvm Show documentation
The AWS SDK for Kotlin client for EventBridge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.eventbridge.model
import aws.smithy.kotlin.runtime.SdkDsl
public class RemovePermissionRequest private constructor(builder: Builder) {
/**
* The name of the event bus to revoke permissions for. If you omit this, the default event bus is used.
*/
public val eventBusName: kotlin.String? = builder.eventBusName
/**
* Specifies whether to remove all permissions.
*/
public val removeAllPermissions: kotlin.Boolean? = builder.removeAllPermissions
/**
* The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.
*/
public val statementId: kotlin.String? = builder.statementId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.RemovePermissionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RemovePermissionRequest(")
append("eventBusName=$eventBusName,")
append("removeAllPermissions=$removeAllPermissions,")
append("statementId=$statementId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = eventBusName?.hashCode() ?: 0
result = 31 * result + (removeAllPermissions?.hashCode() ?: 0)
result = 31 * result + (statementId?.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 RemovePermissionRequest
if (eventBusName != other.eventBusName) return false
if (removeAllPermissions != other.removeAllPermissions) return false
if (statementId != other.statementId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.RemovePermissionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the event bus to revoke permissions for. If you omit this, the default event bus is used.
*/
public var eventBusName: kotlin.String? = null
/**
* Specifies whether to remove all permissions.
*/
public var removeAllPermissions: kotlin.Boolean? = null
/**
* The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.
*/
public var statementId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.RemovePermissionRequest) : this() {
this.eventBusName = x.eventBusName
this.removeAllPermissions = x.removeAllPermissions
this.statementId = x.statementId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.RemovePermissionRequest = RemovePermissionRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}