
com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.lex.kotlin.outputs
import kotlin.Suppress
/**
*
* @property nextStep Configuration block for the next step in the conversation. See `next_step`.
* @property response Configuration block for a list of message groups that Amazon Lex uses to respond to the user input. See `response`.
*/
public data class V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch(
public val nextStep: V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchNextStep? =
null,
public val response: V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchResponse? =
null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.lex.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch): V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch =
V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch(
nextStep = javaType.nextStep().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchNextStep.Companion.toKotlin(args0)
})
}).orElse(null),
response = javaType.response().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.lex.kotlin.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy