Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LexNLUTestClient"/> class.
 /// </summary>
 /// <param name="botName">Bot name.</param>
 /// <param name="botAlias">Bot alias.</param>
 /// <param name="lexSettings">Lex settings.</param>
 /// <param name="credentials">Credentials.</param>
 /// <param name="regionEndpoint">Region endpoint.</param>
 public LexNLUTestClient(
     string botName,
     string botAlias,
     LexSettings lexSettings,
     AWSCredentials credentials,
     RegionEndpoint regionEndpoint)
     : this(botName, botAlias, lexSettings, new LexTestClient(credentials, regionEndpoint))
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LexNLUTestClient"/> class.
 /// </summary>
 /// <param name="botName">Bot name.</param>
 /// <param name="botAlias">Bot alias.</param>
 /// <param name="lexSettings">Lex settings.</param>
 /// <param name="lexClient">Lex client.</param>
 public LexNLUTestClient(
     string botName,
     string botAlias,
     LexSettings lexSettings,
     ILexTestClient lexClient)
 {
     this.LexBotName  = botName ?? throw new ArgumentNullException(nameof(botName));
     this.LexBotAlias = botAlias ?? throw new ArgumentNullException(nameof(botAlias));
     this.LexSettings = lexSettings ?? throw new ArgumentNullException(nameof(lexSettings));
     this.LexClient   = lexClient ?? throw new ArgumentNullException(nameof(lexClient));
 }