![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.refactorspaces.kotlin.outputs.GetApplicationResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.refactorspaces.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property apiGatewayId The resource ID of the API Gateway for the proxy.
* @property applicationIdentifier The unique identifier of the application.
* @property arn The Amazon Resource Name (ARN) of the application.
* @property nlbArn The Amazon Resource Name (ARN) of the Network Load Balancer .
* @property nlbName The name of the Network Load Balancer configured by the API Gateway proxy.
* @property proxyUrl The endpoint URL of the Amazon API Gateway proxy.
* @property stageName The name of the API Gateway stage. The name defaults to `prod` .
* @property tags Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
* @property vpcLinkId The `VpcLink` ID of the API Gateway proxy.
*/
public data class GetApplicationResult(
public val apiGatewayId: String? = null,
public val applicationIdentifier: String? = null,
public val arn: String? = null,
public val nlbArn: String? = null,
public val nlbName: String? = null,
public val proxyUrl: String? = null,
public val stageName: String? = null,
public val tags: List? = null,
public val vpcLinkId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.refactorspaces.outputs.GetApplicationResult): GetApplicationResult = GetApplicationResult(
apiGatewayId = javaType.apiGatewayId().map({ args0 -> args0 }).orElse(null),
applicationIdentifier = javaType.applicationIdentifier().map({ args0 -> args0 }).orElse(null),
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
nlbArn = javaType.nlbArn().map({ args0 -> args0 }).orElse(null),
nlbName = javaType.nlbName().map({ args0 -> args0 }).orElse(null),
proxyUrl = javaType.proxyUrl().map({ args0 -> args0 }).orElse(null),
stageName = javaType.stageName().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
vpcLinkId = javaType.vpcLinkId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy