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

com.pulumi.aws.ssm.kotlin.outputs.GetPatchBaselinesBaselineIdentity.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.ssm.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property baselineDescription Description of the patch baseline.
 * @property baselineId ID of the patch baseline.
 * @property baselineName Name of the patch baseline.
 * @property defaultBaseline Indicates whether this is the default baseline. AWS Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.
 * @property operatingSystem Operating system the patch baseline applies to.
 */
public data class GetPatchBaselinesBaselineIdentity(
    public val baselineDescription: String,
    public val baselineId: String,
    public val baselineName: String,
    public val defaultBaseline: Boolean,
    public val operatingSystem: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.ssm.outputs.GetPatchBaselinesBaselineIdentity): GetPatchBaselinesBaselineIdentity = GetPatchBaselinesBaselineIdentity(
            baselineDescription = javaType.baselineDescription(),
            baselineId = javaType.baselineId(),
            baselineName = javaType.baselineName(),
            defaultBaseline = javaType.defaultBaseline(),
            operatingSystem = javaType.operatingSystem(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy