com.pulumi.awsnative.groundstation.kotlin.DataflowEndpointGroupArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin
import com.pulumi.awsnative.groundstation.DataflowEndpointGroupArgs.builder
import com.pulumi.awsnative.groundstation.kotlin.inputs.DataflowEndpointGroupEndpointDetailsArgs
import com.pulumi.awsnative.groundstation.kotlin.inputs.DataflowEndpointGroupEndpointDetailsArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Int
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* AWS Ground Station DataflowEndpointGroup schema for CloudFormation
* ## Example Usage
* ### Example
* No Java example available.
* @property contactPostPassDurationSeconds Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
* @property contactPrePassDurationSeconds Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
* @property endpointDetails List of Endpoint Details, containing address and port for each endpoint.
* @property tags Tags assigned to a resource.
*/
public data class DataflowEndpointGroupArgs(
public val contactPostPassDurationSeconds: Output? = null,
public val contactPrePassDurationSeconds: Output? = null,
public val endpointDetails: Output>? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.groundstation.DataflowEndpointGroupArgs =
com.pulumi.awsnative.groundstation.DataflowEndpointGroupArgs.builder()
.contactPostPassDurationSeconds(contactPostPassDurationSeconds?.applyValue({ args0 -> args0 }))
.contactPrePassDurationSeconds(contactPrePassDurationSeconds?.applyValue({ args0 -> args0 }))
.endpointDetails(
endpointDetails?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [DataflowEndpointGroupArgs].
*/
@PulumiTagMarker
public class DataflowEndpointGroupArgsBuilder internal constructor() {
private var contactPostPassDurationSeconds: Output? = null
private var contactPrePassDurationSeconds: Output? = null
private var endpointDetails: Output>? = null
private var tags: Output>? = null
/**
* @param value Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
*/
@JvmName("jrvahfncijkvvgfx")
public suspend fun contactPostPassDurationSeconds(`value`: Output) {
this.contactPostPassDurationSeconds = value
}
/**
* @param value Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
*/
@JvmName("ulurttloantqrbxp")
public suspend fun contactPrePassDurationSeconds(`value`: Output) {
this.contactPrePassDurationSeconds = value
}
/**
* @param value List of Endpoint Details, containing address and port for each endpoint.
*/
@JvmName("brfsoaumrsyrfuik")
public suspend fun endpointDetails(`value`: Output>) {
this.endpointDetails = value
}
@JvmName("lshhnicewwpkkfuu")
public suspend fun endpointDetails(vararg values: Output) {
this.endpointDetails = Output.all(values.asList())
}
/**
* @param values List of Endpoint Details, containing address and port for each endpoint.
*/
@JvmName("pmjevyvgpygohffx")
public suspend fun endpointDetails(values: List