commonMain.aws.sdk.kotlin.services.secretsmanager.model.DeleteResourcePolicyRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secretsmanager-jvm Show documentation
Show all versions of secretsmanager-jvm Show documentation
The AWS SDK for Kotlin client for Secrets Manager
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.secretsmanager.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteResourcePolicyRequest private constructor(builder: Builder) {
/**
* The ARN or name of the secret to delete the attached resource-based policy for.
*
* For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See [Finding a secret from a partial ARN](https://docs.aws.amazon.com/secretsmanager/latest/userguide/troubleshoot.html#ARN_secretnamehyphen).
*/
public val secretId: kotlin.String? = builder.secretId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.secretsmanager.model.DeleteResourcePolicyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteResourcePolicyRequest(")
append("secretId=$secretId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = secretId?.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 DeleteResourcePolicyRequest
if (secretId != other.secretId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.secretsmanager.model.DeleteResourcePolicyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN or name of the secret to delete the attached resource-based policy for.
*
* For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See [Finding a secret from a partial ARN](https://docs.aws.amazon.com/secretsmanager/latest/userguide/troubleshoot.html#ARN_secretnamehyphen).
*/
public var secretId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.secretsmanager.model.DeleteResourcePolicyRequest) : this() {
this.secretId = x.secretId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.secretsmanager.model.DeleteResourcePolicyRequest = DeleteResourcePolicyRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}