commonMain.aws.sdk.kotlin.services.secretsmanager.model.GetResourcePolicyResponse.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 GetResourcePolicyResponse private constructor(builder: Builder) {
/**
* The ARN of the secret that the resource-based policy was retrieved for.
*/
public val arn: kotlin.String? = builder.arn
/**
* The name of the secret that the resource-based policy was retrieved for.
*/
public val name: kotlin.String? = builder.name
/**
* A JSON-formatted string that contains the permissions policy attached to the secret. For more information about permissions policies, see [Authentication and access control for Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html).
*/
public val resourcePolicy: kotlin.String? = builder.resourcePolicy
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.secretsmanager.model.GetResourcePolicyResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetResourcePolicyResponse(")
append("arn=$arn,")
append("name=$name,")
append("resourcePolicy=$resourcePolicy")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (resourcePolicy?.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 GetResourcePolicyResponse
if (arn != other.arn) return false
if (name != other.name) return false
if (resourcePolicy != other.resourcePolicy) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.secretsmanager.model.GetResourcePolicyResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the secret that the resource-based policy was retrieved for.
*/
public var arn: kotlin.String? = null
/**
* The name of the secret that the resource-based policy was retrieved for.
*/
public var name: kotlin.String? = null
/**
* A JSON-formatted string that contains the permissions policy attached to the secret. For more information about permissions policies, see [Authentication and access control for Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html).
*/
public var resourcePolicy: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.secretsmanager.model.GetResourcePolicyResponse) : this() {
this.arn = x.arn
this.name = x.name
this.resourcePolicy = x.resourcePolicy
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.secretsmanager.model.GetResourcePolicyResponse = GetResourcePolicyResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}