Class CfnBotPropsMixin.ExactResponseFieldsProperty
Contains the names of the fields used for an exact response to the user.
Implements
Inherited Members
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
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
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
Remarks
QuestionField
The name of the field that contains the query made to the OpenSearch Service database.
public string? QuestionField { get; set; }