com.pulumi.aws.securityhub.kotlin.outputs.GetStandardsControlAssociationsResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.securityhub.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getStandardsControlAssociations.
* @property id
* @property securityControlId ID of the security control.
* @property standardsControlAssociations A list that provides the status and other details for each security control that applies to each enabled standard.
* See `standards_control_associations` below.
*/
public data class GetStandardsControlAssociationsResult(
public val id: String,
public val securityControlId: String,
public val standardsControlAssociations: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.securityhub.outputs.GetStandardsControlAssociationsResult): GetStandardsControlAssociationsResult = GetStandardsControlAssociationsResult(
id = javaType.id(),
securityControlId = javaType.securityControlId(),
standardsControlAssociations = javaType.standardsControlAssociations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.securityhub.kotlin.outputs.GetStandardsControlAssociationsStandardsControlAssociation.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy