Show / Hide Table of Contents

Class BotAliasReference

A reference to a BotAlias resource.

Inheritance
object
BotAliasReference
Implements
IBotAliasReference
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 BotAliasReference : IBotAliasReference
Syntax (vb)
Public Class BotAliasReference Implements IBotAliasReference
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 botAliasReference = new BotAliasReference {
                BotAliasArn = "botAliasArn",
                BotAliasId = "botAliasId",
                BotId = "botId"
            };

Synopsis

Constructors

BotAliasReference()

A reference to a BotAlias resource.

Properties

BotAliasArn

The ARN of the BotAlias resource.

BotAliasId

The BotAliasId of the BotAlias resource.

BotId

The BotId of the BotAlias resource.

Constructors

BotAliasReference()

A reference to a BotAlias resource.

public BotAliasReference()
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 botAliasReference = new BotAliasReference {
                BotAliasArn = "botAliasArn",
                BotAliasId = "botAliasId",
                BotId = "botId"
            };

Properties

BotAliasArn

The ARN of the BotAlias resource.

public string BotAliasArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

BotAliasId

The BotAliasId of the BotAlias resource.

public string BotAliasId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

BotId

The BotId of the BotAlias resource.

public string BotId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IBotAliasReference
Back to top Generated by DocFX