Class BotVersionReference
A reference to a BotVersion resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class BotVersionReference : IBotVersionReference
Syntax (vb)
Public Class BotVersionReference Implements IBotVersionReference
Remarks
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 botVersionReference = new BotVersionReference {
BotId = "botId",
BotVersion = "botVersion"
};
Synopsis
Constructors
BotVersionReference() | A reference to a BotVersion resource. |
Properties
BotId | The BotId of the BotVersion resource. |
BotVersion | The BotVersion of the BotVersion resource. |
Constructors
BotVersionReference()
A reference to a BotVersion resource.
public BotVersionReference()
Remarks
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 botVersionReference = new BotVersionReference {
BotId = "botId",
BotVersion = "botVersion"
};
Properties
BotId
The BotId of the BotVersion resource.
public string BotId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
BotVersion
The BotVersion of the BotVersion resource.
public string BotVersion { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated