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

commonMain.aws.sdk.kotlin.services.elasticbeanstalk.model.EnvironmentInfoDescription.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

/**
 * The information retrieved from the Amazon EC2 instances.
 */
public class EnvironmentInfoDescription private constructor(builder: Builder) {
    /**
     * The Amazon EC2 Instance ID for this information.
     */
    public val ec2InstanceId: kotlin.String? = builder.ec2InstanceId
    /**
     * The type of information retrieved.
     */
    public val infoType: aws.sdk.kotlin.services.elasticbeanstalk.model.EnvironmentInfoType? = builder.infoType
    /**
     * The retrieved information. Currently contains a presigned Amazon S3 URL. The files are deleted after 15 minutes.
     *
     * Anyone in possession of this URL can access the files before they are deleted. Make the URL available only to trusted parties.
     */
    public val message: kotlin.String? = builder.message
    /**
     * The time stamp when this information was retrieved.
     */
    public val sampleTimestamp: aws.smithy.kotlin.runtime.time.Instant? = builder.sampleTimestamp

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

    override fun toString(): kotlin.String = buildString {
        append("EnvironmentInfoDescription(")
        append("ec2InstanceId=$ec2InstanceId,")
        append("infoType=$infoType,")
        append("message=$message,")
        append("sampleTimestamp=$sampleTimestamp")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = ec2InstanceId?.hashCode() ?: 0
        result = 31 * result + (infoType?.hashCode() ?: 0)
        result = 31 * result + (message?.hashCode() ?: 0)
        result = 31 * result + (sampleTimestamp?.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 EnvironmentInfoDescription

        if (ec2InstanceId != other.ec2InstanceId) return false
        if (infoType != other.infoType) return false
        if (message != other.message) return false
        if (sampleTimestamp != other.sampleTimestamp) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Amazon EC2 Instance ID for this information.
         */
        public var ec2InstanceId: kotlin.String? = null
        /**
         * The type of information retrieved.
         */
        public var infoType: aws.sdk.kotlin.services.elasticbeanstalk.model.EnvironmentInfoType? = null
        /**
         * The retrieved information. Currently contains a presigned Amazon S3 URL. The files are deleted after 15 minutes.
         *
         * Anyone in possession of this URL can access the files before they are deleted. Make the URL available only to trusted parties.
         */
        public var message: kotlin.String? = null
        /**
         * The time stamp when this information was retrieved.
         */
        public var sampleTimestamp: aws.smithy.kotlin.runtime.time.Instant? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.elasticbeanstalk.model.EnvironmentInfoDescription) : this() {
            this.ec2InstanceId = x.ec2InstanceId
            this.infoType = x.infoType
            this.message = x.message
            this.sampleTimestamp = x.sampleTimestamp
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy