Show / Hide Table of Contents

Class CfnBotPropsMixin.ExactResponseFieldsProperty

Contains the names of the fields used for an exact response to the user.

Inheritance
object
CfnBotPropsMixin.ExactResponseFieldsProperty
Implements
CfnBotPropsMixin.IExactResponseFieldsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotPropsMixin.ExactResponseFieldsProperty : CfnBotPropsMixin.IExactResponseFieldsProperty
Syntax (vb)
Public Class CfnBotPropsMixin.ExactResponseFieldsProperty Implements CfnBotPropsMixin.IExactResponseFieldsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-exactresponsefields.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Lex;

             var exactResponseFieldsProperty = new ExactResponseFieldsProperty {
                 AnswerField = "answerField",
                 QuestionField = "questionField"
             };

Synopsis

Constructors

ExactResponseFieldsProperty()

Contains the names of the fields used for an exact response to the user.

Properties

AnswerField

The name of the field that contains the answer to the query made to the OpenSearch Service database.

QuestionField

The name of the field that contains the query made to the OpenSearch Service database.

Constructors

ExactResponseFieldsProperty()

Contains the names of the fields used for an exact response to the user.

public ExactResponseFieldsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-exactresponsefields.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Lex;

             var exactResponseFieldsProperty = new ExactResponseFieldsProperty {
                 AnswerField = "answerField",
                 QuestionField = "questionField"
             };

Properties

AnswerField

The name of the field that contains the answer to the query made to the OpenSearch Service database.

public string? AnswerField { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-exactresponsefields.html#cfn-lex-bot-exactresponsefields-answerfield

QuestionField

The name of the field that contains the query made to the OpenSearch Service database.

public string? QuestionField { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-exactresponsefields.html#cfn-lex-bot-exactresponsefields-questionfield

Implements

CfnBotPropsMixin.IExactResponseFieldsProperty
Back to top Generated by DocFX