private Amazon.Connect.Model.AssociateLexBotResponse CallAWSServiceOperation(IAmazonConnect client, Amazon.Connect.Model.AssociateLexBotRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Connect Service", "AssociateLexBot"); try { #if DESKTOP return(client.AssociateLexBot(request)); #elif CORECLR return(client.AssociateLexBotAsync(request).GetAwaiter().GetResult()); #else #error "Unknown build edition" #endif } catch (AmazonServiceException exc) { var webException = exc.InnerException as System.Net.WebException; if (webException != null) { throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException); } throw; } }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.Connect.Model.AssociateLexBotRequest(); if (cmdletContext.InstanceId != null) { request.InstanceId = cmdletContext.InstanceId; } // populate LexBot var requestLexBotIsNull = true; request.LexBot = new Amazon.Connect.Model.LexBot(); System.String requestLexBot_lexBot_LexRegion = null; if (cmdletContext.LexBot_LexRegion != null) { requestLexBot_lexBot_LexRegion = cmdletContext.LexBot_LexRegion; } if (requestLexBot_lexBot_LexRegion != null) { request.LexBot.LexRegion = requestLexBot_lexBot_LexRegion; requestLexBotIsNull = false; } System.String requestLexBot_lexBot_Name = null; if (cmdletContext.LexBot_Name != null) { requestLexBot_lexBot_Name = cmdletContext.LexBot_Name; } if (requestLexBot_lexBot_Name != null) { request.LexBot.Name = requestLexBot_lexBot_Name; requestLexBotIsNull = false; } // determine if request.LexBot should be set to null if (requestLexBotIsNull) { request.LexBot = null; } CmdletOutput output; // issue call var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint); try { var response = CallAWSServiceOperation(client, request); object pipelineOutput = null; pipelineOutput = cmdletContext.Select(response, this); output = new CmdletOutput { PipelineOutput = pipelineOutput, ServiceResponse = response }; } catch (Exception e) { output = new CmdletOutput { ErrorResponse = e }; } return(output); }