Class CfnBotPropsMixin.AudioSpecificationProperty
Specifies the audio input specifications.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotPropsMixin.AudioSpecificationProperty : CfnBotPropsMixin.IAudioSpecificationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.AudioSpecificationProperty Implements CfnBotPropsMixin.IAudioSpecificationProperty
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 audioSpecificationProperty = new AudioSpecificationProperty {
EndTimeoutMs = 123,
MaxLengthMs = 123
};
Synopsis
Constructors
| AudioSpecificationProperty() | Specifies the audio input specifications. |
Properties
| EndTimeoutMs | Time for which a bot waits after the customer stops speaking to assume the utterance is finished. |
| MaxLengthMs | Time for how long Amazon Lex waits before speech input is truncated and the speech is returned to application. |
Constructors
AudioSpecificationProperty()
Specifies the audio input specifications.
public AudioSpecificationProperty()
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 audioSpecificationProperty = new AudioSpecificationProperty {
EndTimeoutMs = 123,
MaxLengthMs = 123
};
Properties
EndTimeoutMs
Time for which a bot waits after the customer stops speaking to assume the utterance is finished.
public double? EndTimeoutMs { get; set; }
Property Value
Remarks
MaxLengthMs
Time for how long Amazon Lex waits before speech input is truncated and the speech is returned to application.
public double? MaxLengthMs { get; set; }