com.pulumi.aws.ssm.kotlin.outputs.GetPatchBaselinesBaselineIdentity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.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