Show / Hide Table of Contents

Class CfnBotPropsMixin.AudioSpecificationProperty

Specifies the audio input specifications.

Inheritance
object
CfnBotPropsMixin.AudioSpecificationProperty
Implements
CfnBotPropsMixin.IAudioSpecificationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotPropsMixin.AudioSpecificationProperty : CfnBotPropsMixin.IAudioSpecificationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.AudioSpecificationProperty Implements CfnBotPropsMixin.IAudioSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiospecification.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Lex;

             var audioSpecificationProperty = new AudioSpecificationProperty {
                 EndTimeoutMs = 123,
                 MaxLengthMs = 123
             };

Synopsis

Constructors

AudioSpecificationProperty()

Specifies the audio input specifications.

Properties

EndTimeoutMs

Time for which a bot waits after the customer stops speaking to assume the utterance is finished.

MaxLengthMs

Time for how long Amazon Lex waits before speech input is truncated and the speech is returned to application.

Constructors

AudioSpecificationProperty()

Specifies the audio input specifications.

public AudioSpecificationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiospecification.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Lex;

             var audioSpecificationProperty = new AudioSpecificationProperty {
                 EndTimeoutMs = 123,
                 MaxLengthMs = 123
             };

Properties

EndTimeoutMs

Time for which a bot waits after the customer stops speaking to assume the utterance is finished.

public double? EndTimeoutMs { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiospecification.html#cfn-lex-bot-audiospecification-endtimeoutms

MaxLengthMs

Time for how long Amazon Lex waits before speech input is truncated and the speech is returned to application.

public double? MaxLengthMs { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiospecification.html#cfn-lex-bot-audiospecification-maxlengthms

Implements

CfnBotPropsMixin.IAudioSpecificationProperty
Back to top Generated by DocFX