
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateGeospatialCoordinateBoundsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateGeospatialCoordinateBoundsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property east The longitude of the east bound of the geospatial coordinate bounds.
* @property north The latitude of the north bound of the geospatial coordinate bounds.
* @property south The latitude of the south bound of the geospatial coordinate bounds.
* @property west The longitude of the west bound of the geospatial coordinate bounds.
*/
public data class TemplateGeospatialCoordinateBoundsArgs(
public val east: Output,
public val north: Output,
public val south: Output,
public val west: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateGeospatialCoordinateBoundsArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateGeospatialCoordinateBoundsArgs.builder()
.east(east.applyValue({ args0 -> args0 }))
.north(north.applyValue({ args0 -> args0 }))
.south(south.applyValue({ args0 -> args0 }))
.west(west.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TemplateGeospatialCoordinateBoundsArgs].
*/
@PulumiTagMarker
public class TemplateGeospatialCoordinateBoundsArgsBuilder internal constructor() {
private var east: Output? = null
private var north: Output? = null
private var south: Output? = null
private var west: Output? = null
/**
* @param value The longitude of the east bound of the geospatial coordinate bounds.
*/
@JvmName("nkkacrkrhpvqvbbq")
public suspend fun east(`value`: Output) {
this.east = value
}
/**
* @param value The latitude of the north bound of the geospatial coordinate bounds.
*/
@JvmName("jtvnfsafpqvlitgf")
public suspend fun north(`value`: Output) {
this.north = value
}
/**
* @param value The latitude of the south bound of the geospatial coordinate bounds.
*/
@JvmName("puxqybgkxqwbmpgg")
public suspend fun south(`value`: Output) {
this.south = value
}
/**
* @param value The longitude of the west bound of the geospatial coordinate bounds.
*/
@JvmName("iogesdljatvxybfs")
public suspend fun west(`value`: Output) {
this.west = value
}
/**
* @param value The longitude of the east bound of the geospatial coordinate bounds.
*/
@JvmName("qyabgstldtevdpol")
public suspend fun east(`value`: Double) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.east = mapped
}
/**
* @param value The latitude of the north bound of the geospatial coordinate bounds.
*/
@JvmName("jsugrkoahlyphvef")
public suspend fun north(`value`: Double) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.north = mapped
}
/**
* @param value The latitude of the south bound of the geospatial coordinate bounds.
*/
@JvmName("ndawkukfwgiynbey")
public suspend fun south(`value`: Double) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.south = mapped
}
/**
* @param value The longitude of the west bound of the geospatial coordinate bounds.
*/
@JvmName("nllxoafisaulgbin")
public suspend fun west(`value`: Double) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.west = mapped
}
internal fun build(): TemplateGeospatialCoordinateBoundsArgs =
TemplateGeospatialCoordinateBoundsArgs(
east = east ?: throw PulumiNullFieldException("east"),
north = north ?: throw PulumiNullFieldException("north"),
south = south ?: throw PulumiNullFieldException("south"),
west = west ?: throw PulumiNullFieldException("west"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy