Interface CfnBot.IntentProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.IntentProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.IntentProperty extends software.amazon.jsii.JsiiSerializable
Represents an action that the user wants to perform.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lex.*;
 SlotValueOverrideProperty slotValueOverrideProperty_;
 IntentProperty intentProperty = IntentProperty.builder()
         .name("name")
         // the properties below are optional
         .description("description")
         .dialogCodeHook(DialogCodeHookSettingProperty.builder()
                 .enabled(false)
                 .build())
         .fulfillmentCodeHook(FulfillmentCodeHookSettingProperty.builder()
                 .enabled(false)
                 // the properties below are optional
                 .fulfillmentUpdatesSpecification(FulfillmentUpdatesSpecificationProperty.builder()
                         .active(false)
                         // the properties below are optional
                         .startResponse(FulfillmentStartResponseSpecificationProperty.builder()
                                 .delayInSeconds(123)
                                 .messageGroups(List.of(MessageGroupProperty.builder()
                                         .message(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .variations(List.of(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build()))
                                         .build()))
                                 // the properties below are optional
                                 .allowInterrupt(false)
                                 .build())
                         .timeoutInSeconds(123)
                         .updateResponse(FulfillmentUpdateResponseSpecificationProperty.builder()
                                 .frequencyInSeconds(123)
                                 .messageGroups(List.of(MessageGroupProperty.builder()
                                         .message(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .variations(List.of(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build()))
                                         .build()))
                                 // the properties below are optional
                                 .allowInterrupt(false)
                                 .build())
                         .build())
                 .isActive(false)
                 .postFulfillmentStatusSpecification(PostFulfillmentStatusSpecificationProperty.builder()
                         .failureConditional(ConditionalSpecificationProperty.builder()
                                 .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                         .condition(ConditionProperty.builder()
                                                 .expressionString("expressionString")
                                                 .build())
                                         .name("name")
                                         .nextStep(DialogStateProperty.builder()
                                                 .dialogAction(DialogActionProperty.builder()
                                                         .type("type")
                                                         // the properties below are optional
                                                         .slotToElicit("slotToElicit")
                                                         .suppressNextMessage(false)
                                                         .build())
                                                 .intent(IntentOverrideProperty.builder()
                                                         .name("name")
                                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                 .slotName("slotName")
                                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                         .shape("shape")
                                                                         .value(SlotValueProperty.builder()
                                                                                 .interpretedValue("interpretedValue")
                                                                                 .build())
                                                                         .values(List.of(slotValueOverrideProperty_))
                                                                         .build())
                                                                 .build()))
                                                         .build())
                                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                         .key("key")
                                                         // the properties below are optional
                                                         .value("value")
                                                         .build()))
                                                 .build())
                                         // the properties below are optional
                                         .response(ResponseSpecificationProperty.builder()
                                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                         .message(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build())
                                                         // the properties below are optional
                                                         .variations(List.of(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build()))
                                                         .build()))
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .build())
                                         .build()))
                                 .defaultBranch(DefaultConditionalBranchProperty.builder()
                                         .nextStep(DialogStateProperty.builder()
                                                 .dialogAction(DialogActionProperty.builder()
                                                         .type("type")
                                                         // the properties below are optional
                                                         .slotToElicit("slotToElicit")
                                                         .suppressNextMessage(false)
                                                         .build())
                                                 .intent(IntentOverrideProperty.builder()
                                                         .name("name")
                                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                 .slotName("slotName")
                                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                         .shape("shape")
                                                                         .value(SlotValueProperty.builder()
                                                                                 .interpretedValue("interpretedValue")
                                                                                 .build())
                                                                         .values(List.of(slotValueOverrideProperty_))
                                                                         .build())
                                                                 .build()))
                                                         .build())
                                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                         .key("key")
                                                         // the properties below are optional
                                                         .value("value")
                                                         .build()))
                                                 .build())
                                         .response(ResponseSpecificationProperty.builder()
                                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                         .message(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build())
                                                         // the properties below are optional
                                                         .variations(List.of(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build()))
                                                         .build()))
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .build())
                                         .build())
                                 .isActive(false)
                                 .build())
                         .failureNextStep(DialogStateProperty.builder()
                                 .dialogAction(DialogActionProperty.builder()
                                         .type("type")
                                         // the properties below are optional
                                         .slotToElicit("slotToElicit")
                                         .suppressNextMessage(false)
                                         .build())
                                 .intent(IntentOverrideProperty.builder()
                                         .name("name")
                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                 .slotName("slotName")
                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                         .shape("shape")
                                                         .value(SlotValueProperty.builder()
                                                                 .interpretedValue("interpretedValue")
                                                                 .build())
                                                         .values(List.of(slotValueOverrideProperty_))
                                                         .build())
                                                 .build()))
                                         .build())
                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                         .key("key")
                                         // the properties below are optional
                                         .value("value")
                                         .build()))
                                 .build())
                         .failureResponse(ResponseSpecificationProperty.builder()
                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                         .message(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .variations(List.of(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build()))
                                         .build()))
                                 // the properties below are optional
                                 .allowInterrupt(false)
                                 .build())
                         .successConditional(ConditionalSpecificationProperty.builder()
                                 .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                         .condition(ConditionProperty.builder()
                                                 .expressionString("expressionString")
                                                 .build())
                                         .name("name")
                                         .nextStep(DialogStateProperty.builder()
                                                 .dialogAction(DialogActionProperty.builder()
                                                         .type("type")
                                                         // the properties below are optional
                                                         .slotToElicit("slotToElicit")
                                                         .suppressNextMessage(false)
                                                         .build())
                                                 .intent(IntentOverrideProperty.builder()
                                                         .name("name")
                                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                 .slotName("slotName")
                                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                         .shape("shape")
                                                                         .value(SlotValueProperty.builder()
                                                                                 .interpretedValue("interpretedValue")
                                                                                 .build())
                                                                         .values(List.of(slotValueOverrideProperty_))
                                                                         .build())
                                                                 .build()))
                                                         .build())
                                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                         .key("key")
                                                         // the properties below are optional
                                                         .value("value")
                                                         .build()))
                                                 .build())
                                         // the properties below are optional
                                         .response(ResponseSpecificationProperty.builder()
                                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                         .message(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build())
                                                         // the properties below are optional
                                                         .variations(List.of(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build()))
                                                         .build()))
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .build())
                                         .build()))
                                 .defaultBranch(DefaultConditionalBranchProperty.builder()
                                         .nextStep(DialogStateProperty.builder()
                                                 .dialogAction(DialogActionProperty.builder()
                                                         .type("type")
                                                         // the properties below are optional
                                                         .slotToElicit("slotToElicit")
                                                         .suppressNextMessage(false)
                                                         .build())
                                                 .intent(IntentOverrideProperty.builder()
                                                         .name("name")
                                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                 .slotName("slotName")
                                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                         .shape("shape")
                                                                         .value(SlotValueProperty.builder()
                                                                                 .interpretedValue("interpretedValue")
                                                                                 .build())
                                                                         .values(List.of(slotValueOverrideProperty_))
                                                                         .build())
                                                                 .build()))
                                                         .build())
                                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                         .key("key")
                                                         // the properties below are optional
                                                         .value("value")
                                                         .build()))
                                                 .build())
                                         .response(ResponseSpecificationProperty.builder()
                                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                         .message(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build())
                                                         // the properties below are optional
                                                         .variations(List.of(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build()))
                                                         .build()))
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .build())
                                         .build())
                                 .isActive(false)
                                 .build())
                         .successNextStep(DialogStateProperty.builder()
                                 .dialogAction(DialogActionProperty.builder()
                                         .type("type")
                                         // the properties below are optional
                                         .slotToElicit("slotToElicit")
                                         .suppressNextMessage(false)
                                         .build())
                                 .intent(IntentOverrideProperty.builder()
                                         .name("name")
                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                 .slotName("slotName")
                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                         .shape("shape")
                                                         .value(SlotValueProperty.builder()
                                                                 .interpretedValue("interpretedValue")
                                                                 .build())
                                                         .values(List.of(slotValueOverrideProperty_))
                                                         .build())
                                                 .build()))
                                         .build())
                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                         .key("key")
                                         // the properties below are optional
                                         .value("value")
                                         .build()))
                                 .build())
                         .successResponse(ResponseSpecificationProperty.builder()
                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                         .message(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .variations(List.of(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build()))
                                         .build()))
                                 // the properties below are optional
                                 .allowInterrupt(false)
                                 .build())
                         .timeoutConditional(ConditionalSpecificationProperty.builder()
                                 .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                         .condition(ConditionProperty.builder()
                                                 .expressionString("expressionString")
                                                 .build())
                                         .name("name")
                                         .nextStep(DialogStateProperty.builder()
                                                 .dialogAction(DialogActionProperty.builder()
                                                         .type("type")
                                                         // the properties below are optional
                                                         .slotToElicit("slotToElicit")
                                                         .suppressNextMessage(false)
                                                         .build())
                                                 .intent(IntentOverrideProperty.builder()
                                                         .name("name")
                                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                 .slotName("slotName")
                                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                         .shape("shape")
                                                                         .value(SlotValueProperty.builder()
                                                                                 .interpretedValue("interpretedValue")
                                                                                 .build())
                                                                         .values(List.of(slotValueOverrideProperty_))
                                                                         .build())
                                                                 .build()))
                                                         .build())
                                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                         .key("key")
                                                         // the properties below are optional
                                                         .value("value")
                                                         .build()))
                                                 .build())
                                         // the properties below are optional
                                         .response(ResponseSpecificationProperty.builder()
                                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                         .message(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build())
                                                         // the properties below are optional
                                                         .variations(List.of(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build()))
                                                         .build()))
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .build())
                                         .build()))
                                 .defaultBranch(DefaultConditionalBranchProperty.builder()
                                         .nextStep(DialogStateProperty.builder()
                                                 .dialogAction(DialogActionProperty.builder()
                                                         .type("type")
                                                         // the properties below are optional
                                                         .slotToElicit("slotToElicit")
                                                         .suppressNextMessage(false)
                                                         .build())
                                                 .intent(IntentOverrideProperty.builder()
                                                         .name("name")
                                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                 .slotName("slotName")
                                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                         .shape("shape")
                                                                         .value(SlotValueProperty.builder()
                                                                                 .interpretedValue("interpretedValue")
                                                                                 .build())
                                                                         .values(List.of(slotValueOverrideProperty_))
                                                                         .build())
                                                                 .build()))
                                                         .build())
                                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                         .key("key")
                                                         // the properties below are optional
                                                         .value("value")
                                                         .build()))
                                                 .build())
                                         .response(ResponseSpecificationProperty.builder()
                                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                         .message(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build())
                                                         // the properties below are optional
                                                         .variations(List.of(MessageProperty.builder()
                                                                 .customPayload(CustomPayloadProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                                         .title("title")
                                                                         // the properties below are optional
                                                                         .buttons(List.of(ButtonProperty.builder()
                                                                                 .text("text")
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .imageUrl("imageUrl")
                                                                         .subtitle("subtitle")
                                                                         .build())
                                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                                         .value("value")
                                                                         .build())
                                                                 .build()))
                                                         .build()))
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .build())
                                         .build())
                                 .isActive(false)
                                 .build())
                         .timeoutNextStep(DialogStateProperty.builder()
                                 .dialogAction(DialogActionProperty.builder()
                                         .type("type")
                                         // the properties below are optional
                                         .slotToElicit("slotToElicit")
                                         .suppressNextMessage(false)
                                         .build())
                                 .intent(IntentOverrideProperty.builder()
                                         .name("name")
                                         .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                 .slotName("slotName")
                                                 .slotValueOverride(SlotValueOverrideProperty.builder()
                                                         .shape("shape")
                                                         .value(SlotValueProperty.builder()
                                                                 .interpretedValue("interpretedValue")
                                                                 .build())
                                                         .values(List.of(slotValueOverrideProperty_))
                                                         .build())
                                                 .build()))
                                         .build())
                                 .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                         .key("key")
                                         // the properties below are optional
                                         .value("value")
                                         .build()))
                                 .build())
                         .timeoutResponse(ResponseSpecificationProperty.builder()
                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                         .message(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .variations(List.of(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build()))
                                         .build()))
                                 // the properties below are optional
                                 .allowInterrupt(false)
                                 .build())
                         .build())
                 .build())
         .initialResponseSetting(InitialResponseSettingProperty.builder()
                 .codeHook(DialogCodeHookInvocationSettingProperty.builder()
                         .enableCodeHookInvocation(false)
                         .isActive(false)
                         .postCodeHookSpecification(PostDialogCodeHookInvocationSpecificationProperty.builder()
                                 .failureConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .failureNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .failureResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .successConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .successNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .successResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .timeoutConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .timeoutNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .timeoutResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         // the properties below are optional
                         .invocationLabel("invocationLabel")
                         .build())
                 .conditional(ConditionalSpecificationProperty.builder()
                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                 .condition(ConditionProperty.builder()
                                         .expressionString("expressionString")
                                         .build())
                                 .name("name")
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 // the properties below are optional
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build()))
                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .isActive(false)
                         .build())
                 .initialResponse(ResponseSpecificationProperty.builder()
                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                 .message(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build())
                                 // the properties below are optional
                                 .variations(List.of(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build()))
                                 .build()))
                         // the properties below are optional
                         .allowInterrupt(false)
                         .build())
                 .nextStep(DialogStateProperty.builder()
                         .dialogAction(DialogActionProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .slotToElicit("slotToElicit")
                                 .suppressNextMessage(false)
                                 .build())
                         .intent(IntentOverrideProperty.builder()
                                 .name("name")
                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                         .slotName("slotName")
                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                 .shape("shape")
                                                 .value(SlotValueProperty.builder()
                                                         .interpretedValue("interpretedValue")
                                                         .build())
                                                 .values(List.of(slotValueOverrideProperty_))
                                                 .build())
                                         .build()))
                                 .build())
                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                 .key("key")
                                 // the properties below are optional
                                 .value("value")
                                 .build()))
                         .build())
                 .build())
         .inputContexts(List.of(InputContextProperty.builder()
                 .name("name")
                 .build()))
         .intentClosingSetting(IntentClosingSettingProperty.builder()
                 .closingResponse(ResponseSpecificationProperty.builder()
                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                 .message(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build())
                                 // the properties below are optional
                                 .variations(List.of(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build()))
                                 .build()))
                         // the properties below are optional
                         .allowInterrupt(false)
                         .build())
                 .conditional(ConditionalSpecificationProperty.builder()
                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                 .condition(ConditionProperty.builder()
                                         .expressionString("expressionString")
                                         .build())
                                 .name("name")
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 // the properties below are optional
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build()))
                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .isActive(false)
                         .build())
                 .isActive(false)
                 .nextStep(DialogStateProperty.builder()
                         .dialogAction(DialogActionProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .slotToElicit("slotToElicit")
                                 .suppressNextMessage(false)
                                 .build())
                         .intent(IntentOverrideProperty.builder()
                                 .name("name")
                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                         .slotName("slotName")
                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                 .shape("shape")
                                                 .value(SlotValueProperty.builder()
                                                         .interpretedValue("interpretedValue")
                                                         .build())
                                                 .values(List.of(slotValueOverrideProperty_))
                                                 .build())
                                         .build()))
                                 .build())
                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                 .key("key")
                                 // the properties below are optional
                                 .value("value")
                                 .build()))
                         .build())
                 .build())
         .intentConfirmationSetting(IntentConfirmationSettingProperty.builder()
                 .promptSpecification(PromptSpecificationProperty.builder()
                         .maxRetries(123)
                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                 .message(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build())
                                 // the properties below are optional
                                 .variations(List.of(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build()))
                                 .build()))
                         // the properties below are optional
                         .allowInterrupt(false)
                         .messageSelectionStrategy("messageSelectionStrategy")
                         .promptAttemptsSpecification(Map.of(
                                 "promptAttemptsSpecificationKey", PromptAttemptSpecificationProperty.builder()
                                         .allowedInputTypes(AllowedInputTypesProperty.builder()
                                                 .allowAudioInput(false)
                                                 .allowDtmfInput(false)
                                                 .build())
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .audioAndDtmfInputSpecification(AudioAndDTMFInputSpecificationProperty.builder()
                                                 .startTimeoutMs(123)
                                                 // the properties below are optional
                                                 .audioSpecification(AudioSpecificationProperty.builder()
                                                         .endTimeoutMs(123)
                                                         .maxLengthMs(123)
                                                         .build())
                                                 .dtmfSpecification(DTMFSpecificationProperty.builder()
                                                         .deletionCharacter("deletionCharacter")
                                                         .endCharacter("endCharacter")
                                                         .endTimeoutMs(123)
                                                         .maxLength(123)
                                                         .build())
                                                 .build())
                                         .textInputSpecification(TextInputSpecificationProperty.builder()
                                                 .startTimeoutMs(123)
                                                 .build())
                                         .build()))
                         .build())
                 // the properties below are optional
                 .codeHook(DialogCodeHookInvocationSettingProperty.builder()
                         .enableCodeHookInvocation(false)
                         .isActive(false)
                         .postCodeHookSpecification(PostDialogCodeHookInvocationSpecificationProperty.builder()
                                 .failureConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .failureNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .failureResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .successConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .successNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .successResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .timeoutConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .timeoutNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .timeoutResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         // the properties below are optional
                         .invocationLabel("invocationLabel")
                         .build())
                 .confirmationConditional(ConditionalSpecificationProperty.builder()
                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                 .condition(ConditionProperty.builder()
                                         .expressionString("expressionString")
                                         .build())
                                 .name("name")
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 // the properties below are optional
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build()))
                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .isActive(false)
                         .build())
                 .confirmationNextStep(DialogStateProperty.builder()
                         .dialogAction(DialogActionProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .slotToElicit("slotToElicit")
                                 .suppressNextMessage(false)
                                 .build())
                         .intent(IntentOverrideProperty.builder()
                                 .name("name")
                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                         .slotName("slotName")
                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                 .shape("shape")
                                                 .value(SlotValueProperty.builder()
                                                         .interpretedValue("interpretedValue")
                                                         .build())
                                                 .values(List.of(slotValueOverrideProperty_))
                                                 .build())
                                         .build()))
                                 .build())
                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                 .key("key")
                                 // the properties below are optional
                                 .value("value")
                                 .build()))
                         .build())
                 .confirmationResponse(ResponseSpecificationProperty.builder()
                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                 .message(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build())
                                 // the properties below are optional
                                 .variations(List.of(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build()))
                                 .build()))
                         // the properties below are optional
                         .allowInterrupt(false)
                         .build())
                 .declinationConditional(ConditionalSpecificationProperty.builder()
                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                 .condition(ConditionProperty.builder()
                                         .expressionString("expressionString")
                                         .build())
                                 .name("name")
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 // the properties below are optional
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build()))
                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .isActive(false)
                         .build())
                 .declinationNextStep(DialogStateProperty.builder()
                         .dialogAction(DialogActionProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .slotToElicit("slotToElicit")
                                 .suppressNextMessage(false)
                                 .build())
                         .intent(IntentOverrideProperty.builder()
                                 .name("name")
                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                         .slotName("slotName")
                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                 .shape("shape")
                                                 .value(SlotValueProperty.builder()
                                                         .interpretedValue("interpretedValue")
                                                         .build())
                                                 .values(List.of(slotValueOverrideProperty_))
                                                 .build())
                                         .build()))
                                 .build())
                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                 .key("key")
                                 // the properties below are optional
                                 .value("value")
                                 .build()))
                         .build())
                 .declinationResponse(ResponseSpecificationProperty.builder()
                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                 .message(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build())
                                 // the properties below are optional
                                 .variations(List.of(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build()))
                                 .build()))
                         // the properties below are optional
                         .allowInterrupt(false)
                         .build())
                 .elicitationCodeHook(ElicitationCodeHookInvocationSettingProperty.builder()
                         .enableCodeHookInvocation(false)
                         // the properties below are optional
                         .invocationLabel("invocationLabel")
                         .build())
                 .failureConditional(ConditionalSpecificationProperty.builder()
                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                 .condition(ConditionProperty.builder()
                                         .expressionString("expressionString")
                                         .build())
                                 .name("name")
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 // the properties below are optional
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build()))
                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                 .nextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .response(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .isActive(false)
                         .build())
                 .failureNextStep(DialogStateProperty.builder()
                         .dialogAction(DialogActionProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .slotToElicit("slotToElicit")
                                 .suppressNextMessage(false)
                                 .build())
                         .intent(IntentOverrideProperty.builder()
                                 .name("name")
                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                         .slotName("slotName")
                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                 .shape("shape")
                                                 .value(SlotValueProperty.builder()
                                                         .interpretedValue("interpretedValue")
                                                         .build())
                                                 .values(List.of(slotValueOverrideProperty_))
                                                 .build())
                                         .build()))
                                 .build())
                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                 .key("key")
                                 // the properties below are optional
                                 .value("value")
                                 .build()))
                         .build())
                 .failureResponse(ResponseSpecificationProperty.builder()
                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                 .message(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build())
                                 // the properties below are optional
                                 .variations(List.of(MessageProperty.builder()
                                         .customPayload(CustomPayloadProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                 .title("title")
                                                 // the properties below are optional
                                                 .buttons(List.of(ButtonProperty.builder()
                                                         .text("text")
                                                         .value("value")
                                                         .build()))
                                                 .imageUrl("imageUrl")
                                                 .subtitle("subtitle")
                                                 .build())
                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                 .value("value")
                                                 .build())
                                         .build()))
                                 .build()))
                         // the properties below are optional
                         .allowInterrupt(false)
                         .build())
                 .isActive(false)
                 .build())
         .kendraConfiguration(KendraConfigurationProperty.builder()
                 .kendraIndex("kendraIndex")
                 // the properties below are optional
                 .queryFilterString("queryFilterString")
                 .queryFilterStringEnabled(false)
                 .build())
         .outputContexts(List.of(OutputContextProperty.builder()
                 .name("name")
                 .timeToLiveInSeconds(123)
                 .turnsToLive(123)
                 .build()))
         .parentIntentSignature("parentIntentSignature")
         .sampleUtterances(List.of(SampleUtteranceProperty.builder()
                 .utterance("utterance")
                 .build()))
         .slotPriorities(List.of(SlotPriorityProperty.builder()
                 .priority(123)
                 .slotName("slotName")
                 .build()))
         .slots(List.of(SlotProperty.builder()
                 .name("name")
                 .slotTypeName("slotTypeName")
                 .valueElicitationSetting(SlotValueElicitationSettingProperty.builder()
                         .slotConstraint("slotConstraint")
                         // the properties below are optional
                         .defaultValueSpecification(SlotDefaultValueSpecificationProperty.builder()
                                 .defaultValueList(List.of(SlotDefaultValueProperty.builder()
                                         .defaultValue("defaultValue")
                                         .build()))
                                 .build())
                         .promptSpecification(PromptSpecificationProperty.builder()
                                 .maxRetries(123)
                                 .messageGroupsList(List.of(MessageGroupProperty.builder()
                                         .message(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .variations(List.of(MessageProperty.builder()
                                                 .customPayload(CustomPayloadProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .imageResponseCard(ImageResponseCardProperty.builder()
                                                         .title("title")
                                                         // the properties below are optional
                                                         .buttons(List.of(ButtonProperty.builder()
                                                                 .text("text")
                                                                 .value("value")
                                                                 .build()))
                                                         .imageUrl("imageUrl")
                                                         .subtitle("subtitle")
                                                         .build())
                                                 .plainTextMessage(PlainTextMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .ssmlMessage(SSMLMessageProperty.builder()
                                                         .value("value")
                                                         .build())
                                                 .build()))
                                         .build()))
                                 // the properties below are optional
                                 .allowInterrupt(false)
                                 .messageSelectionStrategy("messageSelectionStrategy")
                                 .promptAttemptsSpecification(Map.of(
                                         "promptAttemptsSpecificationKey", PromptAttemptSpecificationProperty.builder()
                                                 .allowedInputTypes(AllowedInputTypesProperty.builder()
                                                         .allowAudioInput(false)
                                                         .allowDtmfInput(false)
                                                         .build())
                                                 // the properties below are optional
                                                 .allowInterrupt(false)
                                                 .audioAndDtmfInputSpecification(AudioAndDTMFInputSpecificationProperty.builder()
                                                         .startTimeoutMs(123)
                                                         // the properties below are optional
                                                         .audioSpecification(AudioSpecificationProperty.builder()
                                                                 .endTimeoutMs(123)
                                                                 .maxLengthMs(123)
                                                                 .build())
                                                         .dtmfSpecification(DTMFSpecificationProperty.builder()
                                                                 .deletionCharacter("deletionCharacter")
                                                                 .endCharacter("endCharacter")
                                                                 .endTimeoutMs(123)
                                                                 .maxLength(123)
                                                                 .build())
                                                         .build())
                                                 .textInputSpecification(TextInputSpecificationProperty.builder()
                                                         .startTimeoutMs(123)
                                                         .build())
                                                 .build()))
                                 .build())
                         .sampleUtterances(List.of(SampleUtteranceProperty.builder()
                                 .utterance("utterance")
                                 .build()))
                         .slotCaptureSetting(SlotCaptureSettingProperty.builder()
                                 .captureConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .captureNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .captureResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .codeHook(DialogCodeHookInvocationSettingProperty.builder()
                                         .enableCodeHookInvocation(false)
                                         .isActive(false)
                                         .postCodeHookSpecification(PostDialogCodeHookInvocationSpecificationProperty.builder()
                                                 .failureConditional(ConditionalSpecificationProperty.builder()
                                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                                 .condition(ConditionProperty.builder()
                                                                         .expressionString("expressionString")
                                                                         .build())
                                                                 .name("name")
                                                                 .nextStep(DialogStateProperty.builder()
                                                                         .dialogAction(DialogActionProperty.builder()
                                                                                 .type("type")
                                                                                 // the properties below are optional
                                                                                 .slotToElicit("slotToElicit")
                                                                                 .suppressNextMessage(false)
                                                                                 .build())
                                                                         .intent(IntentOverrideProperty.builder()
                                                                                 .name("name")
                                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                                         .slotName("slotName")
                                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                                 .shape("shape")
                                                                                                 .value(SlotValueProperty.builder()
                                                                                                         .interpretedValue("interpretedValue")
                                                                                                         .build())
                                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build())
                                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                                 .key("key")
                                                                                 // the properties below are optional
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .response(ResponseSpecificationProperty.builder()
                                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                                 .message(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build())
                                                                                 // the properties below are optional
                                                                                 .variations(List.of(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build()))
                                                                         // the properties below are optional
                                                                         .allowInterrupt(false)
                                                                         .build())
                                                                 .build()))
                                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                                 .nextStep(DialogStateProperty.builder()
                                                                         .dialogAction(DialogActionProperty.builder()
                                                                                 .type("type")
                                                                                 // the properties below are optional
                                                                                 .slotToElicit("slotToElicit")
                                                                                 .suppressNextMessage(false)
                                                                                 .build())
                                                                         .intent(IntentOverrideProperty.builder()
                                                                                 .name("name")
                                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                                         .slotName("slotName")
                                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                                 .shape("shape")
                                                                                                 .value(SlotValueProperty.builder()
                                                                                                         .interpretedValue("interpretedValue")
                                                                                                         .build())
                                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build())
                                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                                 .key("key")
                                                                                 // the properties below are optional
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .build())
                                                                 .response(ResponseSpecificationProperty.builder()
                                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                                 .message(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build())
                                                                                 // the properties below are optional
                                                                                 .variations(List.of(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build()))
                                                                         // the properties below are optional
                                                                         .allowInterrupt(false)
                                                                         .build())
                                                                 .build())
                                                         .isActive(false)
                                                         .build())
                                                 .failureNextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .failureResponse(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .successConditional(ConditionalSpecificationProperty.builder()
                                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                                 .condition(ConditionProperty.builder()
                                                                         .expressionString("expressionString")
                                                                         .build())
                                                                 .name("name")
                                                                 .nextStep(DialogStateProperty.builder()
                                                                         .dialogAction(DialogActionProperty.builder()
                                                                                 .type("type")
                                                                                 // the properties below are optional
                                                                                 .slotToElicit("slotToElicit")
                                                                                 .suppressNextMessage(false)
                                                                                 .build())
                                                                         .intent(IntentOverrideProperty.builder()
                                                                                 .name("name")
                                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                                         .slotName("slotName")
                                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                                 .shape("shape")
                                                                                                 .value(SlotValueProperty.builder()
                                                                                                         .interpretedValue("interpretedValue")
                                                                                                         .build())
                                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build())
                                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                                 .key("key")
                                                                                 // the properties below are optional
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .response(ResponseSpecificationProperty.builder()
                                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                                 .message(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build())
                                                                                 // the properties below are optional
                                                                                 .variations(List.of(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build()))
                                                                         // the properties below are optional
                                                                         .allowInterrupt(false)
                                                                         .build())
                                                                 .build()))
                                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                                 .nextStep(DialogStateProperty.builder()
                                                                         .dialogAction(DialogActionProperty.builder()
                                                                                 .type("type")
                                                                                 // the properties below are optional
                                                                                 .slotToElicit("slotToElicit")
                                                                                 .suppressNextMessage(false)
                                                                                 .build())
                                                                         .intent(IntentOverrideProperty.builder()
                                                                                 .name("name")
                                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                                         .slotName("slotName")
                                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                                 .shape("shape")
                                                                                                 .value(SlotValueProperty.builder()
                                                                                                         .interpretedValue("interpretedValue")
                                                                                                         .build())
                                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build())
                                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                                 .key("key")
                                                                                 // the properties below are optional
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .build())
                                                                 .response(ResponseSpecificationProperty.builder()
                                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                                 .message(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build())
                                                                                 // the properties below are optional
                                                                                 .variations(List.of(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build()))
                                                                         // the properties below are optional
                                                                         .allowInterrupt(false)
                                                                         .build())
                                                                 .build())
                                                         .isActive(false)
                                                         .build())
                                                 .successNextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .successResponse(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .timeoutConditional(ConditionalSpecificationProperty.builder()
                                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                                 .condition(ConditionProperty.builder()
                                                                         .expressionString("expressionString")
                                                                         .build())
                                                                 .name("name")
                                                                 .nextStep(DialogStateProperty.builder()
                                                                         .dialogAction(DialogActionProperty.builder()
                                                                                 .type("type")
                                                                                 // the properties below are optional
                                                                                 .slotToElicit("slotToElicit")
                                                                                 .suppressNextMessage(false)
                                                                                 .build())
                                                                         .intent(IntentOverrideProperty.builder()
                                                                                 .name("name")
                                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                                         .slotName("slotName")
                                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                                 .shape("shape")
                                                                                                 .value(SlotValueProperty.builder()
                                                                                                         .interpretedValue("interpretedValue")
                                                                                                         .build())
                                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build())
                                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                                 .key("key")
                                                                                 // the properties below are optional
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .response(ResponseSpecificationProperty.builder()
                                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                                 .message(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build())
                                                                                 // the properties below are optional
                                                                                 .variations(List.of(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build()))
                                                                         // the properties below are optional
                                                                         .allowInterrupt(false)
                                                                         .build())
                                                                 .build()))
                                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                                 .nextStep(DialogStateProperty.builder()
                                                                         .dialogAction(DialogActionProperty.builder()
                                                                                 .type("type")
                                                                                 // the properties below are optional
                                                                                 .slotToElicit("slotToElicit")
                                                                                 .suppressNextMessage(false)
                                                                                 .build())
                                                                         .intent(IntentOverrideProperty.builder()
                                                                                 .name("name")
                                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                                         .slotName("slotName")
                                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                                 .shape("shape")
                                                                                                 .value(SlotValueProperty.builder()
                                                                                                         .interpretedValue("interpretedValue")
                                                                                                         .build())
                                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build())
                                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                                 .key("key")
                                                                                 // the properties below are optional
                                                                                 .value("value")
                                                                                 .build()))
                                                                         .build())
                                                                 .response(ResponseSpecificationProperty.builder()
                                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                                 .message(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build())
                                                                                 // the properties below are optional
                                                                                 .variations(List.of(MessageProperty.builder()
                                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                                 .title("title")
                                                                                                 // the properties below are optional
                                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                                         .text("text")
                                                                                                         .value("value")
                                                                                                         .build()))
                                                                                                 .imageUrl("imageUrl")
                                                                                                 .subtitle("subtitle")
                                                                                                 .build())
                                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                                 .value("value")
                                                                                                 .build())
                                                                                         .build()))
                                                                                 .build()))
                                                                         // the properties below are optional
                                                                         .allowInterrupt(false)
                                                                         .build())
                                                                 .build())
                                                         .isActive(false)
                                                         .build())
                                                 .timeoutNextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .timeoutResponse(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         // the properties below are optional
                                         .invocationLabel("invocationLabel")
                                         .build())
                                 .elicitationCodeHook(ElicitationCodeHookInvocationSettingProperty.builder()
                                         .enableCodeHookInvocation(false)
                                         // the properties below are optional
                                         .invocationLabel("invocationLabel")
                                         .build())
                                 .failureConditional(ConditionalSpecificationProperty.builder()
                                         .conditionalBranches(List.of(ConditionalBranchProperty.builder()
                                                 .condition(ConditionProperty.builder()
                                                         .expressionString("expressionString")
                                                         .build())
                                                 .name("name")
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 // the properties below are optional
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build()))
                                         .defaultBranch(DefaultConditionalBranchProperty.builder()
                                                 .nextStep(DialogStateProperty.builder()
                                                         .dialogAction(DialogActionProperty.builder()
                                                                 .type("type")
                                                                 // the properties below are optional
                                                                 .slotToElicit("slotToElicit")
                                                                 .suppressNextMessage(false)
                                                                 .build())
                                                         .intent(IntentOverrideProperty.builder()
                                                                 .name("name")
                                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                                         .slotName("slotName")
                                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                                 .shape("shape")
                                                                                 .value(SlotValueProperty.builder()
                                                                                         .interpretedValue("interpretedValue")
                                                                                         .build())
                                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                                 .build())
                                                                         .build()))
                                                                 .build())
                                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                                 .key("key")
                                                                 // the properties below are optional
                                                                 .value("value")
                                                                 .build()))
                                                         .build())
                                                 .response(ResponseSpecificationProperty.builder()
                                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                                 .message(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build())
                                                                 // the properties below are optional
                                                                 .variations(List.of(MessageProperty.builder()
                                                                         .customPayload(CustomPayloadProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                                 .title("title")
                                                                                 // the properties below are optional
                                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                                         .text("text")
                                                                                         .value("value")
                                                                                         .build()))
                                                                                 .imageUrl("imageUrl")
                                                                                 .subtitle("subtitle")
                                                                                 .build())
                                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                                 .value("value")
                                                                                 .build())
                                                                         .build()))
                                                                 .build()))
                                                         // the properties below are optional
                                                         .allowInterrupt(false)
                                                         .build())
                                                 .build())
                                         .isActive(false)
                                         .build())
                                 .failureNextStep(DialogStateProperty.builder()
                                         .dialogAction(DialogActionProperty.builder()
                                                 .type("type")
                                                 // the properties below are optional
                                                 .slotToElicit("slotToElicit")
                                                 .suppressNextMessage(false)
                                                 .build())
                                         .intent(IntentOverrideProperty.builder()
                                                 .name("name")
                                                 .slots(List.of(SlotValueOverrideMapProperty.builder()
                                                         .slotName("slotName")
                                                         .slotValueOverride(SlotValueOverrideProperty.builder()
                                                                 .shape("shape")
                                                                 .value(SlotValueProperty.builder()
                                                                         .interpretedValue("interpretedValue")
                                                                         .build())
                                                                 .values(List.of(slotValueOverrideProperty_))
                                                                 .build())
                                                         .build()))
                                                 .build())
                                         .sessionAttributes(List.of(SessionAttributeProperty.builder()
                                                 .key("key")
                                                 // the properties below are optional
                                                 .value("value")
                                                 .build()))
                                         .build())
                                 .failureResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .waitAndContinueSpecification(WaitAndContinueSpecificationProperty.builder()
                                 .continueResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .waitingResponse(ResponseSpecificationProperty.builder()
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 // the properties below are optional
                                 .isActive(false)
                                 .stillWaitingResponse(StillWaitingResponseSpecificationProperty.builder()
                                         .frequencyInSeconds(123)
                                         .messageGroupsList(List.of(MessageGroupProperty.builder()
                                                 .message(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build())
                                                 // the properties below are optional
                                                 .variations(List.of(MessageProperty.builder()
                                                         .customPayload(CustomPayloadProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .imageResponseCard(ImageResponseCardProperty.builder()
                                                                 .title("title")
                                                                 // the properties below are optional
                                                                 .buttons(List.of(ButtonProperty.builder()
                                                                         .text("text")
                                                                         .value("value")
                                                                         .build()))
                                                                 .imageUrl("imageUrl")
                                                                 .subtitle("subtitle")
                                                                 .build())
                                                         .plainTextMessage(PlainTextMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .ssmlMessage(SSMLMessageProperty.builder()
                                                                 .value("value")
                                                                 .build())
                                                         .build()))
                                                 .build()))
                                         .timeoutInSeconds(123)
                                         // the properties below are optional
                                         .allowInterrupt(false)
                                         .build())
                                 .build())
                         .build())
                 // the properties below are optional
                 .description("description")
                 .multipleValuesSetting(MultipleValuesSettingProperty.builder()
                         .allowMultipleValues(false)
                         .build())
                 .obfuscationSetting(ObfuscationSettingProperty.builder()
                         .obfuscationSettingType("obfuscationSettingType")
                         .build())
                 .build()))
         .build();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the intent.

      Intent names must be unique within the locale that contains the intent and can't match the name of any built-in intent.

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description of the intent.

      Use the description to help identify the intent in lists.

    • getDialogCodeHook

      @Stability(Stable) @Nullable default Object getDialogCodeHook()
      Specifies that Amazon Lex invokes the alias Lambda function for each user input.

      You can invoke this Lambda function to personalize user interaction.

    • getFulfillmentCodeHook

      @Stability(Stable) @Nullable default Object getFulfillmentCodeHook()
      Specifies that Amazon Lex invokes the alias Lambda function when the intent is ready for fulfillment.

      You can invoke this function to complete the bot's transaction with the user.

    • getInitialResponseSetting

      @Stability(Stable) @Nullable default Object getInitialResponseSetting()
      Configuration setting for a response sent to the user before Amazon Lex starts eliciting slots.
    • getInputContexts

      @Stability(Stable) @Nullable default Object getInputContexts()
      A list of contexts that must be active for this intent to be considered by Amazon Lex .
    • getIntentClosingSetting

      @Stability(Stable) @Nullable default Object getIntentClosingSetting()
      Sets the response that Amazon Lex sends to the user when the intent is closed.
    • getIntentConfirmationSetting

      @Stability(Stable) @Nullable default Object getIntentConfirmationSetting()
      Provides prompts that Amazon Lex sends to the user to confirm the completion of an intent.

      If the user answers "no," the settings contain a statement that is sent to the user to end the intent.

    • getKendraConfiguration

      @Stability(Stable) @Nullable default Object getKendraConfiguration()
      Provides configuration information for the AMAZON.KendraSearchIntent intent. When you use this intent, Amazon Lex searches the specified Amazon Kendra index and returns documents from the index that match the user's utterance.
    • getOutputContexts

      @Stability(Stable) @Nullable default Object getOutputContexts()
      A list of contexts that the intent activates when it is fulfilled.
    • getParentIntentSignature

      @Stability(Stable) @Nullable default String getParentIntentSignature()
      A unique identifier for the built-in intent to base this intent on.
    • getSampleUtterances

      @Stability(Stable) @Nullable default Object getSampleUtterances()
      A list of utterances that a user might say to signal the intent.
    • getSlotPriorities

      @Stability(Stable) @Nullable default Object getSlotPriorities()
      Indicates the priority for slots.

      Amazon Lex prompts the user for slot values in priority order.

    • getSlots

      @Stability(Stable) @Nullable default Object getSlots()
      A list of slots that the intent requires for fulfillment.
    • builder

      @Stability(Stable) static CfnBot.IntentProperty.Builder builder()
      Returns:
      a CfnBot.IntentProperty.Builder of CfnBot.IntentProperty