Show / Hide Table of Contents

Class CfnBotVersionProps

Properties for defining a CfnBotVersion.

Inheritance
object
CfnBotVersionProps
Implements
ICfnBotVersionProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBotVersionProps : ICfnBotVersionProps
Syntax (vb)
Public Class CfnBotVersionProps 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

CfnBotVersionProps()

Properties for defining a CfnBotVersion.

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

CfnBotVersionProps()

Properties for defining a CfnBotVersion.

public CfnBotVersionProps()
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"
             };

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

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

ICfnBotVersionProps
Back to top Generated by DocFX