![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotwireless.kotlin.outputs.GetNetworkAnalyzerConfigurationResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotwireless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property arn Arn for network analyzer configuration, Returned upon successful create.
* @property description The description of the new resource
* @property traceContent Trace content for your wireless gateway and wireless device resources
* @property wirelessDevices List of wireless gateway resources that have been added to the network analyzer configuration
* @property wirelessGateways List of wireless gateway resources that have been added to the network analyzer configuration
*/
public data class GetNetworkAnalyzerConfigurationResult(
public val arn: String? = null,
public val description: String? = null,
public val traceContent: TraceContentProperties? = null,
public val wirelessDevices: List? = null,
public val wirelessGateways: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotwireless.outputs.GetNetworkAnalyzerConfigurationResult): GetNetworkAnalyzerConfigurationResult = GetNetworkAnalyzerConfigurationResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
traceContent = javaType.traceContent().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.iotwireless.kotlin.outputs.TraceContentProperties.Companion.toKotlin(args0)
})
}).orElse(null),
wirelessDevices = javaType.wirelessDevices().map({ args0 -> args0 }),
wirelessGateways = javaType.wirelessGateways().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy