commonMain.aws.sdk.kotlin.services.devopsguru.model.DescribeAccountOverviewRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devopsguru-jvm Show documentation
Show all versions of devopsguru-jvm Show documentation
The AWS SDK for Kotlin client for DevOps Guru
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class DescribeAccountOverviewRequest private constructor(builder: Builder) {
/**
* The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.
*/
public val fromTime: aws.smithy.kotlin.runtime.time.Instant? = builder.fromTime
/**
* The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.
*/
public val toTime: aws.smithy.kotlin.runtime.time.Instant? = builder.toTime
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.DescribeAccountOverviewRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeAccountOverviewRequest(")
append("fromTime=$fromTime,")
append("toTime=$toTime")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = fromTime?.hashCode() ?: 0
result = 31 * result + (toTime?.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 DescribeAccountOverviewRequest
if (fromTime != other.fromTime) return false
if (toTime != other.toTime) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devopsguru.model.DescribeAccountOverviewRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.
*/
public var fromTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.
*/
public var toTime: aws.smithy.kotlin.runtime.time.Instant? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.DescribeAccountOverviewRequest) : this() {
this.fromTime = x.fromTime
this.toTime = x.toTime
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.DescribeAccountOverviewRequest = DescribeAccountOverviewRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}