![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.greengrassv2.kotlin.outputs.ComponentVersionComponentPlatform.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.greengrassv2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property attributes A dictionary of attributes for the platform. The AWS IoT Greengrass Core software defines the `os` and `platform` by default. You can specify additional platform attributes for a core device when you deploy the AWS IoT Greengrass nucleus component. For more information, see the [AWS IoT Greengrass nucleus component](https://docs.aws.amazon.com/greengrass/v2/developerguide/greengrass-nucleus-component.html) in the *AWS IoT Greengrass V2 Developer Guide* .
* @property name The friendly name of the platform. This name helps you identify the platform.
* If you omit this parameter, AWS IoT Greengrass creates a friendly name from the `os` and `architecture` of the platform.
*/
public data class ComponentVersionComponentPlatform(
public val attributes: Map? = null,
public val name: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.greengrassv2.outputs.ComponentVersionComponentPlatform): ComponentVersionComponentPlatform = ComponentVersionComponentPlatform(
attributes = javaType.attributes().map({ args0 -> args0.key.to(args0.value) }).toMap(),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy