BotFulfillmentCodeHookSettingArgs

data class BotFulfillmentCodeHookSettingArgs(val enabled: Output<Boolean>, val fulfillmentUpdatesSpecification: Output<BotFulfillmentUpdatesSpecificationArgs>? = null, val isActive: Output<Boolean>? = null, val postFulfillmentStatusSpecification: Output<BotPostFulfillmentStatusSpecificationArgs>? = null) : ConvertibleToJava<BotFulfillmentCodeHookSettingArgs>

Settings that determine if a Lambda function should be invoked to fulfill a specific intent.

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>, fulfillmentUpdatesSpecification: Output<BotFulfillmentUpdatesSpecificationArgs>? = null, isActive: Output<Boolean>? = null, postFulfillmentStatusSpecification: Output<BotPostFulfillmentStatusSpecificationArgs>? = null)

Properties

Link copied to clipboard
val enabled: Output<Boolean>

Indicates whether a Lambda function should be invoked to fulfill a specific intent.

Link copied to clipboard

Provides settings for update messages sent to the user for long-running Lambda fulfillment functions. Fulfillment updates can be used only with streaming conversations.

Link copied to clipboard
val isActive: Output<Boolean>? = null

Determines whether the fulfillment code hook is used. When active is false, the code hook doesn't run.

Link copied to clipboard

Provides settings for messages sent to the user for after the Lambda fulfillment function completes. Post-fulfillment messages can be sent for both streaming and non-streaming conversations.

Functions

Link copied to clipboard
open override fun toJava(): BotFulfillmentCodeHookSettingArgs