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

com.pulumi.awsnative.apigatewayv2.kotlin.outputs.GetDeploymentResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.apigatewayv2.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property deploymentId The deployment ID.
 * @property description The description for the deployment resource.
 */
public data class GetDeploymentResult(
    public val deploymentId: String? = null,
    public val description: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.apigatewayv2.outputs.GetDeploymentResult): GetDeploymentResult = GetDeploymentResult(
            deploymentId = javaType.deploymentId().map({ args0 -> args0 }).orElse(null),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy