
com.pulumi.awsnative.ssmcontacts.kotlin.outputs.PlanContactTargetInfo.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ssmcontacts.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* The contact that SSM Incident Manager is engaging during an incident.
* @property contactId The Amazon Resource Name (ARN) of the contact.
* @property isEssential A Boolean value determining if the contact's acknowledgement stops the progress of stages in the plan.
*/
public data class PlanContactTargetInfo(
public val contactId: String,
public val isEssential: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ssmcontacts.outputs.PlanContactTargetInfo): PlanContactTargetInfo = PlanContactTargetInfo(
contactId = javaType.contactId(),
isEssential = javaType.isEssential(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy