interface AudioAndDTMFInputSpecificationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Lex.CfnBot.AudioAndDTMFInputSpecificationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_AudioAndDTMFInputSpecificationProperty | 
|  Java | software.amazon.awscdk.services.lex.CfnBot.AudioAndDTMFInputSpecificationProperty | 
|  Python | aws_cdk.aws_lex.CfnBot.AudioAndDTMFInputSpecificationProperty | 
|  TypeScript | aws-cdk-lib»aws_lex»CfnBot»AudioAndDTMFInputSpecificationProperty | 
Specifies the audio and DTMF input specification.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from 'aws-cdk-lib';
const audioAndDTMFInputSpecificationProperty: lex.CfnBot.AudioAndDTMFInputSpecificationProperty = {
  startTimeoutMs: 123,
  // the properties below are optional
  audioSpecification: {
    endTimeoutMs: 123,
    maxLengthMs: 123,
  },
  dtmfSpecification: {
    deletionCharacter: 'deletionCharacter',
    endCharacter: 'endCharacter',
    endTimeoutMs: 123,
    maxLength: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| start | number | Time for which a bot waits before assuming that the customer isn't going to speak or press a key. | 
| audio | IResolvable | Audio | Specifies the settings on audio input. | 
| dtmf | IResolvable | DTMFSpecification | Specifies the settings on DTMF input. | 
startTimeoutMs
Type:
number
Time for which a bot waits before assuming that the customer isn't going to speak or press a key.
This timeout is shared between Audio and DTMF inputs.
audioSpecification?
Type:
IResolvable | Audio
(optional)
Specifies the settings on audio input.
dtmfSpecification?
Type:
IResolvable | DTMFSpecification
(optional)
Specifies the settings on DTMF input.
