
commonMain.aws.sdk.kotlin.services.s3control.model.GetStorageLensGroupRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.s3control.model
public class GetStorageLensGroupRequest private constructor(builder: Builder) {
/**
* The Amazon Web Services account ID associated with the Storage Lens group that you're trying to retrieve the details for.
*/
public val accountId: kotlin.String? = builder.accountId
/**
* The name of the Storage Lens group that you're trying to retrieve the configuration details for.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.s3control.model.GetStorageLensGroupRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetStorageLensGroupRequest(")
append("accountId=$accountId,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accountId?.hashCode() ?: 0
result = 31 * result + (name?.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 GetStorageLensGroupRequest
if (accountId != other.accountId) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.s3control.model.GetStorageLensGroupRequest = Builder(this).apply(block).build()
public class Builder {
/**
* The Amazon Web Services account ID associated with the Storage Lens group that you're trying to retrieve the details for.
*/
public var accountId: kotlin.String? = null
/**
* The name of the Storage Lens group that you're trying to retrieve the configuration details for.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.s3control.model.GetStorageLensGroupRequest) : this() {
this.accountId = x.accountId
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.s3control.model.GetStorageLensGroupRequest = GetStorageLensGroupRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy