package awslex // A set of actions that Amazon Lex should run if none of the other conditions are met. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // var slotValueOverrideProperty_ slotValueOverrideProperty // // defaultConditionalBranchProperty := &DefaultConditionalBranchProperty{ // NextStep: &DialogStateProperty{ // DialogAction: &DialogActionProperty{ // Type: jsii.String("type"), // // // the properties below are optional // SlotToElicit: jsii.String("slotToElicit"), // SuppressNextMessage: jsii.Boolean(false), // }, // Intent: &IntentOverrideProperty{ // Name: jsii.String("name"), // Slots: []interface{}{ // &SlotValueOverrideMapProperty{ // SlotName: jsii.String("slotName"), // SlotValueOverride: &slotValueOverrideProperty{ // Shape: jsii.String("shape"), // Value: &SlotValueProperty{ // InterpretedValue: jsii.String("interpretedValue"), // }, // Values: []interface{}{ // slotValueOverrideProperty_, // }, // }, // }, // }, // }, // SessionAttributes: []interface{}{ // &SessionAttributeProperty{ // Key: jsii.String("key"), // // // the properties below are optional // Value: jsii.String("value"), // }, // }, // }, // Response: &ResponseSpecificationProperty{ // MessageGroupsList: []interface{}{ // &MessageGroupProperty{ // Message: &MessageProperty{ // CustomPayload: &CustomPayloadProperty{ // Value: jsii.String("value"), // }, // ImageResponseCard: &ImageResponseCardProperty{ // Title: jsii.String("title"), // // // the properties below are optional // Buttons: []interface{}{ // &ButtonProperty{ // Text: jsii.String("text"), // Value: jsii.String("value"), // }, // }, // ImageUrl: jsii.String("imageUrl"), // Subtitle: jsii.String("subtitle"), // }, // PlainTextMessage: &PlainTextMessageProperty{ // Value: jsii.String("value"), // }, // SsmlMessage: &SSMLMessageProperty{ // Value: jsii.String("value"), // }, // }, // // // the properties below are optional // Variations: []interface{}{ // &MessageProperty{ // CustomPayload: &CustomPayloadProperty{ // Value: jsii.String("value"), // }, // ImageResponseCard: &ImageResponseCardProperty{ // Title: jsii.String("title"), // // // the properties below are optional // Buttons: []interface{}{ // &ButtonProperty{ // Text: jsii.String("text"), // Value: jsii.String("value"), // }, // }, // ImageUrl: jsii.String("imageUrl"), // Subtitle: jsii.String("subtitle"), // }, // PlainTextMessage: &PlainTextMessageProperty{ // Value: jsii.String("value"), // }, // SsmlMessage: &SSMLMessageProperty{ // Value: jsii.String("value"), // }, // }, // }, // }, // }, // // // the properties below are optional // AllowInterrupt: jsii.Boolean(false), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-defaultconditionalbranch.html // type CfnBot_DefaultConditionalBranchProperty struct { // The next step in the conversation. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-defaultconditionalbranch.html#cfn-lex-bot-defaultconditionalbranch-nextstep // NextStep interface{} `field:"optional" json:"nextStep" yaml:"nextStep"` // Specifies a list of message groups that Amazon Lex uses to respond the user input. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-defaultconditionalbranch.html#cfn-lex-bot-defaultconditionalbranch-response // Response interface{} `field:"optional" json:"response" yaml:"response"` }