interface AllowedInputTypesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.AllowedInputTypesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_AllowedInputTypesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.AllowedInputTypesProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.AllowedInputTypesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » AllowedInputTypesProperty |
Specifies the allowed input types.
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/cfn-property-mixins';
const allowedInputTypesProperty: lex.CfnBotPropsMixin.AllowedInputTypesProperty = {
allowAudioInput: false,
allowDtmfInput: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | boolean | IResolvable | Indicates whether audio input is allowed. |
| allow | boolean | IResolvable | Indicates whether DTMF input is allowed. |
allowAudioInput?
Type:
boolean | IResolvable
(optional)
Indicates whether audio input is allowed.
allowDtmfInput?
Type:
boolean | IResolvable
(optional)
Indicates whether DTMF input is allowed.

.NET
Go
Java
Python
TypeScript