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

com.pulumi.awsnative.configuration.kotlin.outputs.GetOrganizationConformancePackResult.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.configuration.kotlin.outputs

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

/**
 *
 * @property conformancePackInputParameters A list of ConformancePackInputParameter objects.
 * @property deliveryS3Bucket AWS Config stores intermediate files while processing conformance pack template.
 * @property deliveryS3KeyPrefix The prefix for the delivery S3 bucket.
 * @property excludedAccounts A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack.
 */
public data class GetOrganizationConformancePackResult(
    public val conformancePackInputParameters: List? = null,
    public val deliveryS3Bucket: String? = null,
    public val deliveryS3KeyPrefix: String? = null,
    public val excludedAccounts: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.configuration.outputs.GetOrganizationConformancePackResult): GetOrganizationConformancePackResult = GetOrganizationConformancePackResult(
            conformancePackInputParameters = javaType.conformancePackInputParameters().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.configuration.kotlin.outputs.OrganizationConformancePackConformancePackInputParameter.Companion.toKotlin(args0)
                })
            }),
            deliveryS3Bucket = javaType.deliveryS3Bucket().map({ args0 -> args0 }).orElse(null),
            deliveryS3KeyPrefix = javaType.deliveryS3KeyPrefix().map({ args0 -> args0 }).orElse(null),
            excludedAccounts = javaType.excludedAccounts().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy