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

com.pulumi.awsnative.iotanalytics.kotlin.outputs.PipelineDeviceShadowEnrich.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.iotanalytics.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property attribute The name of the attribute that is added to the message.
 * @property name The name of the 'deviceShadowEnrich' activity.
 * @property next The next activity in the pipeline.
 * @property roleArn The ARN of the role that allows access to the device's shadow.
 * @property thingName The name of the IoT device whose shadow information is added to the message.
 */
public data class PipelineDeviceShadowEnrich(
    public val attribute: String,
    public val name: String,
    public val next: String? = null,
    public val roleArn: String,
    public val thingName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.iotanalytics.outputs.PipelineDeviceShadowEnrich): PipelineDeviceShadowEnrich = PipelineDeviceShadowEnrich(
            attribute = javaType.attribute(),
            name = javaType.name(),
            next = javaType.next().map({ args0 -> args0 }).orElse(null),
            roleArn = javaType.roleArn(),
            thingName = javaType.thingName(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy