Show / Hide Table of Contents

Interface ICfnBotVersionMixinProps

Properties for CfnBotVersionPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnBotVersionMixinProps
Syntax (vb)
Public Interface ICfnBotVersionMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.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 cfnBotVersionMixinProps = new CfnBotVersionMixinProps {
                 BotId = "botId",
                 BotVersionLocaleSpecification = new [] { new BotVersionLocaleSpecificationProperty {
                     BotVersionLocaleDetails = new BotVersionLocaleDetailsProperty {
                         SourceBotVersion = "sourceBotVersion"
                     },
                     LocaleId = "localeId"
                 } },
                 Description = "description"
             };

Synopsis

Properties

BotId

The unique identifier of the bot.

BotVersionLocaleSpecification

Specifies the locales that Amazon Lex adds to this version.

Description

The description of the version.

Properties

BotId

The unique identifier of the bot.

object? BotId { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html#cfn-lex-botversion-botid

Type union: either string or IBotRef

BotVersionLocaleSpecification

Specifies the locales that Amazon Lex adds to this version.

object? BotVersionLocaleSpecification { get; }
Property Value

object

Remarks

You can choose the Draft version or any other previously published version for each locale. When you specify a source version, the locale data is copied from the source version to the new version.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html#cfn-lex-botversion-botversionlocalespecification

Type union: either IResolvable or (either IResolvable or CfnBotVersionPropsMixin.IBotVersionLocaleSpecificationProperty)[]

Description

The description of the version.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html#cfn-lex-botversion-description

Back to top Generated by DocFX