Show / Hide Table of Contents

Class CfnBotPropsMixin.AudioAndDTMFInputSpecificationProperty

Specifies the audio and DTMF input specification.

Inheritance
object
CfnBotPropsMixin.AudioAndDTMFInputSpecificationProperty
Implements
CfnBotPropsMixin.IAudioAndDTMFInputSpecificationProperty
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.AudioAndDTMFInputSpecificationProperty : CfnBotPropsMixin.IAudioAndDTMFInputSpecificationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.AudioAndDTMFInputSpecificationProperty Implements CfnBotPropsMixin.IAudioAndDTMFInputSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audioanddtmfinputspecification.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 audioAndDTMFInputSpecificationProperty = new AudioAndDTMFInputSpecificationProperty {
                 AudioSpecification = new AudioSpecificationProperty {
                     EndTimeoutMs = 123,
                     MaxLengthMs = 123
                 },
                 DtmfSpecification = new DTMFSpecificationProperty {
                     DeletionCharacter = "deletionCharacter",
                     EndCharacter = "endCharacter",
                     EndTimeoutMs = 123,
                     MaxLength = 123
                 },
                 StartTimeoutMs = 123
             };

Synopsis

Constructors

AudioAndDTMFInputSpecificationProperty()

Specifies the audio and DTMF input specification.

Properties

AudioSpecification

Specifies the settings on audio input.

DtmfSpecification

Specifies the settings on DTMF input.

StartTimeoutMs

Time for which a bot waits before assuming that the customer isn't going to speak or press a key.

Constructors

AudioAndDTMFInputSpecificationProperty()

Specifies the audio and DTMF input specification.

public AudioAndDTMFInputSpecificationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audioanddtmfinputspecification.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 audioAndDTMFInputSpecificationProperty = new AudioAndDTMFInputSpecificationProperty {
                 AudioSpecification = new AudioSpecificationProperty {
                     EndTimeoutMs = 123,
                     MaxLengthMs = 123
                 },
                 DtmfSpecification = new DTMFSpecificationProperty {
                     DeletionCharacter = "deletionCharacter",
                     EndCharacter = "endCharacter",
                     EndTimeoutMs = 123,
                     MaxLength = 123
                 },
                 StartTimeoutMs = 123
             };

Properties

AudioSpecification

Specifies the settings on audio input.

public object? AudioSpecification { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnBotPropsMixin.IAudioSpecificationProperty

DtmfSpecification

Specifies the settings on DTMF input.

public object? DtmfSpecification { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnBotPropsMixin.IDTMFSpecificationProperty

StartTimeoutMs

Time for which a bot waits before assuming that the customer isn't going to speak or press a key.

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

double?

Remarks

This timeout is shared between Audio and DTMF inputs.

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

Implements

CfnBotPropsMixin.IAudioAndDTMFInputSpecificationProperty
Back to top Generated by DocFX