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
Remarks
Type union: either string or IBotRef
BotVersionLocaleSpecification
Specifies the locales that Amazon Lex adds to this version.
object? BotVersionLocaleSpecification { get; }
Property Value
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.
Type union: either IResolvable or (either IResolvable or CfnBotVersionPropsMixin.IBotVersionLocaleSpecificationProperty)[]
Description
The description of the version.
string? Description { get; }