commonMain.aws.sdk.kotlin.services.redshift.model.DescribeScheduledActionsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class DescribeScheduledActionsRequest private constructor(builder: Builder) {
/**
* If true, retrieve only active scheduled actions. If false, retrieve only disabled scheduled actions.
*/
public val active: kotlin.Boolean? = builder.active
/**
* The end time in UTC of the scheduled action to retrieve. Only active scheduled actions that have invocations before this time are retrieved.
*/
public val endTime: aws.smithy.kotlin.runtime.time.Instant? = builder.endTime
/**
* List of scheduled action filters.
*/
public val filters: List? = builder.filters
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in `MaxRecords`, Amazon Web Services returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
*/
public val marker: kotlin.String? = builder.marker
/**
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified `MaxRecords` value, a value is returned in a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
*
* Default: `100`
*
* Constraints: minimum 20, maximum 100.
*/
public val maxRecords: kotlin.Int? = builder.maxRecords
/**
* The name of the scheduled action to retrieve.
*/
public val scheduledActionName: kotlin.String? = builder.scheduledActionName
/**
* The start time in UTC of the scheduled actions to retrieve. Only active scheduled actions that have invocations after this time are retrieved.
*/
public val startTime: aws.smithy.kotlin.runtime.time.Instant? = builder.startTime
/**
* The type of the scheduled actions to retrieve.
*/
public val targetActionType: aws.sdk.kotlin.services.redshift.model.ScheduledActionTypeValues? = builder.targetActionType
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeScheduledActionsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeScheduledActionsRequest(")
append("active=$active,")
append("endTime=$endTime,")
append("filters=$filters,")
append("marker=$marker,")
append("maxRecords=$maxRecords,")
append("scheduledActionName=$scheduledActionName,")
append("startTime=$startTime,")
append("targetActionType=$targetActionType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = active?.hashCode() ?: 0
result = 31 * result + (endTime?.hashCode() ?: 0)
result = 31 * result + (filters?.hashCode() ?: 0)
result = 31 * result + (marker?.hashCode() ?: 0)
result = 31 * result + (maxRecords ?: 0)
result = 31 * result + (scheduledActionName?.hashCode() ?: 0)
result = 31 * result + (startTime?.hashCode() ?: 0)
result = 31 * result + (targetActionType?.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 DescribeScheduledActionsRequest
if (active != other.active) return false
if (endTime != other.endTime) return false
if (filters != other.filters) return false
if (marker != other.marker) return false
if (maxRecords != other.maxRecords) return false
if (scheduledActionName != other.scheduledActionName) return false
if (startTime != other.startTime) return false
if (targetActionType != other.targetActionType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeScheduledActionsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* If true, retrieve only active scheduled actions. If false, retrieve only disabled scheduled actions.
*/
public var active: kotlin.Boolean? = null
/**
* The end time in UTC of the scheduled action to retrieve. Only active scheduled actions that have invocations before this time are retrieved.
*/
public var endTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* List of scheduled action filters.
*/
public var filters: List? = null
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in `MaxRecords`, Amazon Web Services returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
*/
public var marker: kotlin.String? = null
/**
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified `MaxRecords` value, a value is returned in a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
*
* Default: `100`
*
* Constraints: minimum 20, maximum 100.
*/
public var maxRecords: kotlin.Int? = null
/**
* The name of the scheduled action to retrieve.
*/
public var scheduledActionName: kotlin.String? = null
/**
* The start time in UTC of the scheduled actions to retrieve. Only active scheduled actions that have invocations after this time are retrieved.
*/
public var startTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The type of the scheduled actions to retrieve.
*/
public var targetActionType: aws.sdk.kotlin.services.redshift.model.ScheduledActionTypeValues? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeScheduledActionsRequest) : this() {
this.active = x.active
this.endTime = x.endTime
this.filters = x.filters
this.marker = x.marker
this.maxRecords = x.maxRecords
this.scheduledActionName = x.scheduledActionName
this.startTime = x.startTime
this.targetActionType = x.targetActionType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeScheduledActionsRequest = DescribeScheduledActionsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}