All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeEventsRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.31
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.elasticbeanstalk.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant

/**
 * Request to retrieve a list of events for an environment.
 */
public class DescribeEventsRequest private constructor(builder: Builder) {
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application.
     */
    public val applicationName: kotlin.String? = builder.applicationName
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the `EndTime`.
     */
    public val endTime: aws.smithy.kotlin.runtime.time.Instant? = builder.endTime
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
     */
    public val environmentId: kotlin.String? = builder.environmentId
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
     */
    public val environmentName: kotlin.String? = builder.environmentName
    /**
     * Specifies the maximum number of events that can be returned, beginning with the most recent event.
     */
    public val maxRecords: kotlin.Int? = builder.maxRecords
    /**
     * Pagination token. If specified, the events return the next batch of results.
     */
    public val nextToken: kotlin.String? = builder.nextToken
    /**
     * The ARN of a custom platform version. If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this custom platform version.
     */
    public val platformArn: kotlin.String? = builder.platformArn
    /**
     * If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID.
     */
    public val requestId: kotlin.String? = builder.requestId
    /**
     * If specified, limits the events returned from this call to include only those with the specified severity or higher.
     */
    public val severity: aws.sdk.kotlin.services.elasticbeanstalk.model.EventSeverity? = builder.severity
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time.
     */
    public val startTime: aws.smithy.kotlin.runtime.time.Instant? = builder.startTime
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration.
     */
    public val templateName: kotlin.String? = builder.templateName
    /**
     * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version.
     */
    public val versionLabel: kotlin.String? = builder.versionLabel

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeEventsRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("DescribeEventsRequest(")
        append("applicationName=$applicationName,")
        append("endTime=$endTime,")
        append("environmentId=$environmentId,")
        append("environmentName=$environmentName,")
        append("maxRecords=$maxRecords,")
        append("nextToken=$nextToken,")
        append("platformArn=$platformArn,")
        append("requestId=$requestId,")
        append("severity=$severity,")
        append("startTime=$startTime,")
        append("templateName=$templateName,")
        append("versionLabel=$versionLabel")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = applicationName?.hashCode() ?: 0
        result = 31 * result + (endTime?.hashCode() ?: 0)
        result = 31 * result + (environmentId?.hashCode() ?: 0)
        result = 31 * result + (environmentName?.hashCode() ?: 0)
        result = 31 * result + (maxRecords ?: 0)
        result = 31 * result + (nextToken?.hashCode() ?: 0)
        result = 31 * result + (platformArn?.hashCode() ?: 0)
        result = 31 * result + (requestId?.hashCode() ?: 0)
        result = 31 * result + (severity?.hashCode() ?: 0)
        result = 31 * result + (startTime?.hashCode() ?: 0)
        result = 31 * result + (templateName?.hashCode() ?: 0)
        result = 31 * result + (versionLabel?.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 DescribeEventsRequest

        if (applicationName != other.applicationName) return false
        if (endTime != other.endTime) return false
        if (environmentId != other.environmentId) return false
        if (environmentName != other.environmentName) return false
        if (maxRecords != other.maxRecords) return false
        if (nextToken != other.nextToken) return false
        if (platformArn != other.platformArn) return false
        if (requestId != other.requestId) return false
        if (severity != other.severity) return false
        if (startTime != other.startTime) return false
        if (templateName != other.templateName) return false
        if (versionLabel != other.versionLabel) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeEventsRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application.
         */
        public var applicationName: kotlin.String? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the `EndTime`.
         */
        public var endTime: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
         */
        public var environmentId: kotlin.String? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
         */
        public var environmentName: kotlin.String? = null
        /**
         * Specifies the maximum number of events that can be returned, beginning with the most recent event.
         */
        public var maxRecords: kotlin.Int? = null
        /**
         * Pagination token. If specified, the events return the next batch of results.
         */
        public var nextToken: kotlin.String? = null
        /**
         * The ARN of a custom platform version. If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this custom platform version.
         */
        public var platformArn: kotlin.String? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID.
         */
        public var requestId: kotlin.String? = null
        /**
         * If specified, limits the events returned from this call to include only those with the specified severity or higher.
         */
        public var severity: aws.sdk.kotlin.services.elasticbeanstalk.model.EventSeverity? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time.
         */
        public var startTime: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration.
         */
        public var templateName: kotlin.String? = null
        /**
         * If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version.
         */
        public var versionLabel: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeEventsRequest) : this() {
            this.applicationName = x.applicationName
            this.endTime = x.endTime
            this.environmentId = x.environmentId
            this.environmentName = x.environmentName
            this.maxRecords = x.maxRecords
            this.nextToken = x.nextToken
            this.platformArn = x.platformArn
            this.requestId = x.requestId
            this.severity = x.severity
            this.startTime = x.startTime
            this.templateName = x.templateName
            this.versionLabel = x.versionLabel
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeEventsRequest = DescribeEventsRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy