Exemplo n.º 1
0
 private Amazon.Connect.Model.StartContactStreamingResponse CallAWSServiceOperation(IAmazonConnect client, Amazon.Connect.Model.StartContactStreamingRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Connect Service", "StartContactStreaming");
     try
     {
         #if DESKTOP
         return(client.StartContactStreaming(request));
         #elif CORECLR
         return(client.StartContactStreamingAsync(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;
     }
 }
Exemplo n.º 2
0
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.Connect.Model.StartContactStreamingRequest();


            // populate ChatStreamingConfiguration
            var requestChatStreamingConfigurationIsNull = true;

            request.ChatStreamingConfiguration = new Amazon.Connect.Model.ChatStreamingConfiguration();
            System.String requestChatStreamingConfiguration_chatStreamingConfiguration_StreamingEndpointArn = null;
            if (cmdletContext.ChatStreamingConfiguration_StreamingEndpointArn != null)
            {
                requestChatStreamingConfiguration_chatStreamingConfiguration_StreamingEndpointArn = cmdletContext.ChatStreamingConfiguration_StreamingEndpointArn;
            }
            if (requestChatStreamingConfiguration_chatStreamingConfiguration_StreamingEndpointArn != null)
            {
                request.ChatStreamingConfiguration.StreamingEndpointArn = requestChatStreamingConfiguration_chatStreamingConfiguration_StreamingEndpointArn;
                requestChatStreamingConfigurationIsNull = false;
            }
            // determine if request.ChatStreamingConfiguration should be set to null
            if (requestChatStreamingConfigurationIsNull)
            {
                request.ChatStreamingConfiguration = null;
            }
            if (cmdletContext.ClientToken != null)
            {
                request.ClientToken = cmdletContext.ClientToken;
            }
            if (cmdletContext.ContactId != null)
            {
                request.ContactId = cmdletContext.ContactId;
            }
            if (cmdletContext.InstanceId != null)
            {
                request.InstanceId = cmdletContext.InstanceId;
            }

            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);
        }