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

commonMain.aws.sdk.kotlin.services.ssm.model.ExecutionPreview.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.ssm.model



/**
 * Information about the changes that would be made if an execution were run.
 */
public sealed class ExecutionPreview {
    /**
     * Information about the changes that would be made if an Automation workflow were run.
     */
    public data class Automation(val value: aws.sdk.kotlin.services.ssm.model.AutomationExecutionPreview) : aws.sdk.kotlin.services.ssm.model.ExecutionPreview() {
    }

    public object SdkUnknown : aws.sdk.kotlin.services.ssm.model.ExecutionPreview() {
    }

    /**
     * Casts this [ExecutionPreview] as a [Automation] and retrieves its [aws.sdk.kotlin.services.ssm.model.AutomationExecutionPreview] value. Throws an exception if the [ExecutionPreview] is not a
     * [Automation].
     */
    public fun asAutomation(): aws.sdk.kotlin.services.ssm.model.AutomationExecutionPreview = (this as ExecutionPreview.Automation).value

    /**
     * Casts this [ExecutionPreview] as a [Automation] and retrieves its [aws.sdk.kotlin.services.ssm.model.AutomationExecutionPreview] value. Returns null if the [ExecutionPreview] is not a [Automation].
     */
    public fun asAutomationOrNull(): aws.sdk.kotlin.services.ssm.model.AutomationExecutionPreview? = (this as? ExecutionPreview.Automation)?.value
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy