interface AudioFillerSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.AudioFillerSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_AudioFillerSettingsProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.AudioFillerSettingsProperty |
Python | aws_cdk.aws_lex.CfnBot.AudioFillerSettingsProperty |
TypeScript | aws-cdk-lib » aws_lex » CfnBot » 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-lib';
const audioFillerSettingsProperty: lex.CfnBot.AudioFillerSettingsProperty = {
enabled: false,
// the properties below are optional
audioType: 'audioType',
minimumPlayDurationInMilliseconds: 123,
responseDeliveryDelayInMilliseconds: 123,
startDelayInMilliseconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | |
| audio | string | |
| minimum | number | |
| response | number | |
| start | number |
enabled
Type:
boolean | IResolvable
audioType?
Type:
string
(optional)
minimumPlayDurationInMilliseconds?
Type:
number
(optional)
responseDeliveryDelayInMilliseconds?
Type:
number
(optional)
startDelayInMilliseconds?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript