com.pulumi.awsnative.backup.kotlin.outputs.ReportSettingProperties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.backup.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Identifies the report template for the report. Reports are built using a report template.
* @property accounts The list of AWS accounts that a report covers.
* @property frameworkArns The Amazon Resource Names (ARNs) of the frameworks a report covers.
* @property organizationUnits The list of AWS organization units that a report covers.
* @property regions The list of AWS regions that a report covers.
* @property reportTemplate Identifies the report template for the report. Reports are built using a report template. The report templates are: `BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT`
*/
public data class ReportSettingProperties(
public val accounts: List? = null,
public val frameworkArns: List? = null,
public val organizationUnits: List? = null,
public val regions: List? = null,
public val reportTemplate: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.backup.outputs.ReportSettingProperties): ReportSettingProperties = ReportSettingProperties(
accounts = javaType.accounts().map({ args0 -> args0 }),
frameworkArns = javaType.frameworkArns().map({ args0 -> args0 }),
organizationUnits = javaType.organizationUnits().map({ args0 -> args0 }),
regions = javaType.regions().map({ args0 -> args0 }),
reportTemplate = javaType.reportTemplate(),
)
}
}