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

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

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

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

import kotlin.String
import kotlin.Suppress

/**
 * The TemplateSSMDocumentDetails object contains the name of the SSM document and the version of the SSM document.
 * @property documentName The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the document name, AWS Config checks only your account and AWS Region for the SSM document.
 * @property documentVersion The version of the SSM document to use to create a conformance pack. By default, AWS Config uses the latest version.
 * > This field is optional.
 */
public data class TemplateSsmDocumentDetailsProperties(
    public val documentName: String? = null,
    public val documentVersion: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.configuration.outputs.TemplateSsmDocumentDetailsProperties): TemplateSsmDocumentDetailsProperties = TemplateSsmDocumentDetailsProperties(
            documentName = javaType.documentName().map({ args0 -> args0 }).orElse(null),
            documentVersion = javaType.documentVersion().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy