Show / Hide Table of Contents

Class CfnBotVersionMixinProps

Properties for CfnBotVersionPropsMixin.

Inheritance
object
CfnBotVersionMixinProps
Implements
ICfnBotVersionMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

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

BotVersionLocaleSpecification

Specifies the locales that Amazon Lex adds to this version.

public object? BotVersionLocaleSpecification { get; set; }
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.

public string? Description { get; set; }
Property Value

string

Remarks

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

Implements

ICfnBotVersionMixinProps
Back to top Generated by DocFX