![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotsitewise.kotlin.outputs.GatewayCapabilitySummary.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.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