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

com.pulumi.awsnative.configuration.kotlin.outputs.GetConformancePackResult.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 delivery S3 bucket.
 */
public data class GetConformancePackResult(
    public val conformancePackInputParameters: List? = null,
    public val deliveryS3Bucket: String? = null,
    public val deliveryS3KeyPrefix: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.configuration.outputs.GetConformancePackResult): GetConformancePackResult = GetConformancePackResult(
            conformancePackInputParameters = javaType.conformancePackInputParameters().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.configuration.kotlin.outputs.ConformancePackInputParameter.Companion.toKotlin(args0)
                })
            }),
            deliveryS3Bucket = javaType.deliveryS3Bucket().map({ args0 -> args0 }).orElse(null),
            deliveryS3KeyPrefix = javaType.deliveryS3KeyPrefix().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy