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

com.pulumi.awsnative.iotsitewise.kotlin.outputs.GatewayCapabilitySummary.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.iotsitewise.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Contains a summary of a gateway capability configuration.
 * @property capabilityConfiguration The JSON document that defines the configuration for the gateway capability. For more information, see [Configuring data sources (CLI)](https://docs.aws.amazon.com/iot-sitewise/latest/userguide/configure-sources.html#configure-source-cli) in the *AWS IoT SiteWise User Guide* .
 * @property capabilityNamespace The namespace of the capability configuration. For example, if you configure OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability configuration has the namespace `iotsitewise:opcuacollector:version` , where `version` is a number such as `1` .
 */
public data class GatewayCapabilitySummary(
    public val capabilityConfiguration: String? = null,
    public val capabilityNamespace: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.iotsitewise.outputs.GatewayCapabilitySummary): GatewayCapabilitySummary = GatewayCapabilitySummary(
            capabilityConfiguration = javaType.capabilityConfiguration().map({ args0 -> args0 }).orElse(null),
            capabilityNamespace = javaType.capabilityNamespace(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy