Class CfnBotVersionMixinProps
Properties for CfnBotVersionPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnBotVersionMixinProps : ICfnBotVersionMixinProps
Syntax (vb)
Public Class CfnBotVersionMixinProps Implements 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.Mixins.Preview.AWS.Lex.Mixins;
var cfnBotVersionMixinProps = new CfnBotVersionMixinProps {
BotId = "botId",
BotVersionLocaleSpecification = new [] { new BotVersionLocaleSpecificationProperty {
BotVersionLocaleDetails = new BotVersionLocaleDetailsProperty {
SourceBotVersion = "sourceBotVersion"
},
LocaleId = "localeId"
} },
Description = "description"
};
Synopsis
Constructors
| CfnBotVersionMixinProps() | Properties for CfnBotVersionPropsMixin. |
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. |
Constructors
CfnBotVersionMixinProps()
Properties for CfnBotVersionPropsMixin.
public CfnBotVersionMixinProps()
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.Mixins.Preview.AWS.Lex.Mixins;
var cfnBotVersionMixinProps = new CfnBotVersionMixinProps {
BotId = "botId",
BotVersionLocaleSpecification = new [] { new BotVersionLocaleSpecificationProperty {
BotVersionLocaleDetails = new BotVersionLocaleDetailsProperty {
SourceBotVersion = "sourceBotVersion"
},
LocaleId = "localeId"
} },
Description = "description"
};
Properties
BotId
The unique identifier of the bot.
public string? BotId { get; set; }
Property Value
Remarks
BotVersionLocaleSpecification
Specifies the locales that Amazon Lex adds to this version.
public object? BotVersionLocaleSpecification { get; set; }
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.
public string? Description { get; set; }