Class CfnBotVersionProps
Properties for defining a CfnBotVersion
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBotVersionProps : Object, ICfnBotVersionProps
Syntax (vb)
Public Class CfnBotVersionProps
Inherits Object
Implements ICfnBotVersionProps
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.AWS.Lex;
var cfnBotVersionProps = new CfnBotVersionProps {
BotId = "botId",
BotVersionLocaleSpecification = new [] { new BotVersionLocaleSpecificationProperty {
BotVersionLocaleDetails = new BotVersionLocaleDetailsProperty {
SourceBotVersion = "sourceBotVersion"
},
LocaleId = "localeId"
} },
// the properties below are optional
Description = "description"
};
Synopsis
Constructors
Cfn |
Properties
Bot |
The unique identifier of the bot. |
Bot |
Specifies the locales that Amazon Lex adds to this version. |
Description | The description of the version. |
Constructors
CfnBotVersionProps()
public CfnBotVersionProps()
Properties
BotId
The unique identifier of the bot.
public string BotId { get; set; }
Property Value
System.
Remarks
BotVersionLocaleSpecification
Specifies the locales that Amazon Lex adds to this version.
public object BotVersionLocaleSpecification { get; set; }
Property Value
System.
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.
Description
The description of the version.
public string Description { get; set; }
Property Value
System.