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

commonMain.aws.sdk.kotlin.services.appstream.model.CreateApplicationRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.appstream.model



public class CreateApplicationRequest private constructor(builder: Builder) {
    /**
     * The app block ARN to which the application should be associated
     */
    public val appBlockArn: kotlin.String? = builder.appBlockArn
    /**
     * The description of the application.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The display name of the application. This name is visible to users in the application catalog.
     */
    public val displayName: kotlin.String? = builder.displayName
    /**
     * The location in S3 of the application icon.
     */
    public val iconS3Location: aws.sdk.kotlin.services.appstream.model.S3Location? = builder.iconS3Location
    /**
     * The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.
     */
    public val instanceFamilies: List? = builder.instanceFamilies
    /**
     * The launch parameters of the application.
     */
    public val launchParameters: kotlin.String? = builder.launchParameters
    /**
     * The launch path of the application.
     */
    public val launchPath: kotlin.String? = builder.launchPath
    /**
     * The name of the application. This name is visible to users when display name is not specified.
     */
    public val name: kotlin.String? = builder.name
    /**
     * The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.
     */
    public val platforms: List? = builder.platforms
    /**
     * The tags assigned to the application.
     */
    public val tags: Map? = builder.tags
    /**
     * The working directory of the application.
     */
    public val workingDirectory: kotlin.String? = builder.workingDirectory

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

    override fun toString(): kotlin.String = buildString {
        append("CreateApplicationRequest(")
        append("appBlockArn=$appBlockArn,")
        append("description=$description,")
        append("displayName=$displayName,")
        append("iconS3Location=$iconS3Location,")
        append("instanceFamilies=$instanceFamilies,")
        append("launchParameters=$launchParameters,")
        append("launchPath=$launchPath,")
        append("name=$name,")
        append("platforms=$platforms,")
        append("tags=$tags,")
        append("workingDirectory=$workingDirectory")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = appBlockArn?.hashCode() ?: 0
        result = 31 * result + (description?.hashCode() ?: 0)
        result = 31 * result + (displayName?.hashCode() ?: 0)
        result = 31 * result + (iconS3Location?.hashCode() ?: 0)
        result = 31 * result + (instanceFamilies?.hashCode() ?: 0)
        result = 31 * result + (launchParameters?.hashCode() ?: 0)
        result = 31 * result + (launchPath?.hashCode() ?: 0)
        result = 31 * result + (name?.hashCode() ?: 0)
        result = 31 * result + (platforms?.hashCode() ?: 0)
        result = 31 * result + (tags?.hashCode() ?: 0)
        result = 31 * result + (workingDirectory?.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 CreateApplicationRequest

        if (appBlockArn != other.appBlockArn) return false
        if (description != other.description) return false
        if (displayName != other.displayName) return false
        if (iconS3Location != other.iconS3Location) return false
        if (instanceFamilies != other.instanceFamilies) return false
        if (launchParameters != other.launchParameters) return false
        if (launchPath != other.launchPath) return false
        if (name != other.name) return false
        if (platforms != other.platforms) return false
        if (tags != other.tags) return false
        if (workingDirectory != other.workingDirectory) return false

        return true
    }

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

    public class Builder {
        /**
         * The app block ARN to which the application should be associated
         */
        public var appBlockArn: kotlin.String? = null
        /**
         * The description of the application.
         */
        public var description: kotlin.String? = null
        /**
         * The display name of the application. This name is visible to users in the application catalog.
         */
        public var displayName: kotlin.String? = null
        /**
         * The location in S3 of the application icon.
         */
        public var iconS3Location: aws.sdk.kotlin.services.appstream.model.S3Location? = null
        /**
         * The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.
         */
        public var instanceFamilies: List? = null
        /**
         * The launch parameters of the application.
         */
        public var launchParameters: kotlin.String? = null
        /**
         * The launch path of the application.
         */
        public var launchPath: kotlin.String? = null
        /**
         * The name of the application. This name is visible to users when display name is not specified.
         */
        public var name: kotlin.String? = null
        /**
         * The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.
         */
        public var platforms: List? = null
        /**
         * The tags assigned to the application.
         */
        public var tags: Map? = null
        /**
         * The working directory of the application.
         */
        public var workingDirectory: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.appstream.model.CreateApplicationRequest) : this() {
            this.appBlockArn = x.appBlockArn
            this.description = x.description
            this.displayName = x.displayName
            this.iconS3Location = x.iconS3Location
            this.instanceFamilies = x.instanceFamilies
            this.launchParameters = x.launchParameters
            this.launchPath = x.launchPath
            this.name = x.name
            this.platforms = x.platforms
            this.tags = x.tags
            this.workingDirectory = x.workingDirectory
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.appstream.model.S3Location] inside the given [block]
         */
        public fun iconS3Location(block: aws.sdk.kotlin.services.appstream.model.S3Location.Builder.() -> kotlin.Unit) {
            this.iconS3Location = aws.sdk.kotlin.services.appstream.model.S3Location.invoke(block)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy