interface AudioFillerSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.AudioFillerSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_AudioFillerSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.AudioFillerSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.AudioFillerSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » AudioFillerSettingsProperty |
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 audioFillerSettingsProperty: lex.CfnBotPropsMixin.AudioFillerSettingsProperty = {
audioType: 'audioType',
enabled: false,
minimumPlayDurationInMilliseconds: 123,
responseDeliveryDelayInMilliseconds: 123,
startDelayInMilliseconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | string | |
| enabled? | boolean | IResolvable | |
| minimum | number | |
| response | number | |
| start | number |
audioType?
Type:
string
(optional)
enabled?
Type:
boolean | IResolvable
(optional)
minimumPlayDurationInMilliseconds?
Type:
number
(optional)
responseDeliveryDelayInMilliseconds?
Type:
number
(optional)
startDelayInMilliseconds?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript