
com.pulumi.awsnative.route53recoveryreadiness.kotlin.outputs.GetResourceSetResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.route53recoveryreadiness.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property resourceSetArn The Amazon Resource Name (ARN) of the resource set.
* @property resources A list of resource objects in the resource set.
* @property tags A tag to associate with the parameters for a resource set.
*/
public data class GetResourceSetResult(
public val resourceSetArn: String? = null,
public val resources: List? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.route53recoveryreadiness.outputs.GetResourceSetResult): GetResourceSetResult = GetResourceSetResult(
resourceSetArn = javaType.resourceSetArn().map({ args0 -> args0 }).orElse(null),
resources = javaType.resources().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.route53recoveryreadiness.kotlin.outputs.ResourceSetResource.Companion.toKotlin(args0)
})
}),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy