Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.iotanalytics.kotlin
import com.pulumi.awsnative.iotanalytics.PipelineArgs.builder
import com.pulumi.awsnative.iotanalytics.kotlin.inputs.PipelineActivityArgs
import com.pulumi.awsnative.iotanalytics.kotlin.inputs.PipelineActivityArgsBuilder
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::IoTAnalytics::Pipeline
* ## Example Usage
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* @property pipelineActivities A list of "PipelineActivity" objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.
* The list can be 2-25 *PipelineActivity* objects and must contain both a `channel` and a `datastore` activity. Each entry in the list must contain only one activity, for example:
* `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]`
* @property pipelineName The name of the pipeline.
* @property tags Metadata which can be used to manage the pipeline.
* For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) .
*/
public data class PipelineArgs(
public val pipelineActivities: Output>? = null,
public val pipelineName: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotanalytics.PipelineArgs =
com.pulumi.awsnative.iotanalytics.PipelineArgs.builder()
.pipelineActivities(
pipelineActivities?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.pipelineName(pipelineName?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [PipelineArgs].
*/
@PulumiTagMarker
public class PipelineArgsBuilder internal constructor() {
private var pipelineActivities: Output>? = null
private var pipelineName: Output? = null
private var tags: Output>? = null
/**
* @param value A list of "PipelineActivity" objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.
* The list can be 2-25 *PipelineActivity* objects and must contain both a `channel` and a `datastore` activity. Each entry in the list must contain only one activity, for example:
* `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]`
*/
@JvmName("ybnirnlfppbutnks")
public suspend fun pipelineActivities(`value`: Output>) {
this.pipelineActivities = value
}
@JvmName("yatrapxqnyagswuv")
public suspend fun pipelineActivities(vararg values: Output) {
this.pipelineActivities = Output.all(values.asList())
}
/**
* @param values A list of "PipelineActivity" objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.
* The list can be 2-25 *PipelineActivity* objects and must contain both a `channel` and a `datastore` activity. Each entry in the list must contain only one activity, for example:
* `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]`
*/
@JvmName("mlfpgteuudcmtjie")
public suspend fun pipelineActivities(values: List