All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.backup.kotlin.outputs.GetFrameworkControlScope.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.backup.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 *
 * @property complianceResourceIds The ID of the only AWS resource that you want your control scope to contain.
 * @property complianceResourceTypes Describes whether the control scope includes one or more types of resources, such as EFS or RDS.
 * @property tags Tag key-value pair applied to those AWS resources that you want to trigger an evaluation for a rule. A maximum of one key-value pair can be provided.
 */
public data class GetFrameworkControlScope(
    public val complianceResourceIds: List,
    public val complianceResourceTypes: List,
    public val tags: Map,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.backup.outputs.GetFrameworkControlScope): GetFrameworkControlScope = GetFrameworkControlScope(
            complianceResourceIds = javaType.complianceResourceIds().map({ args0 -> args0 }),
            complianceResourceTypes = javaType.complianceResourceTypes().map({ args0 -> args0 }),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy