interface AllowedInputTypesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.AllowedInputTypesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_AllowedInputTypesProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.AllowedInputTypesProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.AllowedInputTypesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const allowedInputTypesProperty: lex_mixins.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