Class CfnBotPropsMixin.AudioAndDTMFInputSpecificationProperty
Specifies the audio and DTMF input specification.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotPropsMixin.AudioAndDTMFInputSpecificationProperty : CfnBotPropsMixin.IAudioAndDTMFInputSpecificationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.AudioAndDTMFInputSpecificationProperty Implements CfnBotPropsMixin.IAudioAndDTMFInputSpecificationProperty
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 audioAndDTMFInputSpecificationProperty = new AudioAndDTMFInputSpecificationProperty {
AudioSpecification = new AudioSpecificationProperty {
EndTimeoutMs = 123,
MaxLengthMs = 123
},
DtmfSpecification = new DTMFSpecificationProperty {
DeletionCharacter = "deletionCharacter",
EndCharacter = "endCharacter",
EndTimeoutMs = 123,
MaxLength = 123
},
StartTimeoutMs = 123
};
Synopsis
Constructors
| AudioAndDTMFInputSpecificationProperty() | Specifies the audio and DTMF input specification. |
Properties
| AudioSpecification | Specifies the settings on audio input. |
| DtmfSpecification | Specifies the settings on DTMF input. |
| StartTimeoutMs | Time for which a bot waits before assuming that the customer isn't going to speak or press a key. |
Constructors
AudioAndDTMFInputSpecificationProperty()
Specifies the audio and DTMF input specification.
public AudioAndDTMFInputSpecificationProperty()
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 audioAndDTMFInputSpecificationProperty = new AudioAndDTMFInputSpecificationProperty {
AudioSpecification = new AudioSpecificationProperty {
EndTimeoutMs = 123,
MaxLengthMs = 123
},
DtmfSpecification = new DTMFSpecificationProperty {
DeletionCharacter = "deletionCharacter",
EndCharacter = "endCharacter",
EndTimeoutMs = 123,
MaxLength = 123
},
StartTimeoutMs = 123
};
Properties
AudioSpecification
Specifies the settings on audio input.
public object? AudioSpecification { get; set; }
Property Value
Remarks
DtmfSpecification
Specifies the settings on DTMF input.
public object? DtmfSpecification { get; set; }
Property Value
Remarks
StartTimeoutMs
Time for which a bot waits before assuming that the customer isn't going to speak or press a key.
public double? StartTimeoutMs { get; set; }
Property Value
Remarks
This timeout is shared between Audio and DTMF inputs.