namespace Amazon.Lambda.LexV2Events { /// /// The class identifies the Lex V2 bot that is invoking the Lambda function. /// public class LexV2Bot { /// /// The unique identifier assigned to the bot. /// public string Id { get; set; } /// /// The name of the bot. /// public string Name { get; set; } /// /// The unique identifier assigned to the bot alias. /// public string AliasId { get; set; } /// /// The language and locale of the bot locale. /// public string LocaleId { get; set; } /// /// The numeric version of the bot. /// public string Version { get; set; } } }