Show / Hide Table of Contents

Class BotVersionReference

A reference to a BotVersion resource.

Inheritance
object
BotVersionReference
Implements
IBotVersionReference
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 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

string

Remarks

ExampleMetadata: fixture=_generated

BotVersion

The BotVersion of the BotVersion resource.

public string BotVersion { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IBotVersionReference
Back to top Generated by DocFX