![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.backup.kotlin.outputs.GetBackupSelectionResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.backup.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property id Uniquely identifies the backup selection.
* @property selectionId Uniquely identifies a request to assign a set of resources to a backup plan.
*/
public data class GetBackupSelectionResult(
public val id: String? = null,
public val selectionId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.backup.outputs.GetBackupSelectionResult): GetBackupSelectionResult = GetBackupSelectionResult(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
selectionId = javaType.selectionId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy