private Amazon.Chime.Model.CreateMeetingResponse CallAWSServiceOperation(IAmazonChime client, Amazon.Chime.Model.CreateMeetingRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Chime", "CreateMeeting"); try { #if DESKTOP return(client.CreateMeeting(request)); #elif CORECLR return(client.CreateMeetingAsync(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.Chime.Model.CreateMeetingRequest(); if (cmdletContext.ClientRequestToken != null) { request.ClientRequestToken = cmdletContext.ClientRequestToken; } if (cmdletContext.ExternalMeetingId != null) { request.ExternalMeetingId = cmdletContext.ExternalMeetingId; } if (cmdletContext.MediaRegion != null) { request.MediaRegion = cmdletContext.MediaRegion; } if (cmdletContext.MeetingHostId != null) { request.MeetingHostId = cmdletContext.MeetingHostId; } // populate NotificationsConfiguration var requestNotificationsConfigurationIsNull = true; request.NotificationsConfiguration = new Amazon.Chime.Model.MeetingNotificationConfiguration(); System.String requestNotificationsConfiguration_notificationsConfiguration_SnsTopicArn = null; if (cmdletContext.NotificationsConfiguration_SnsTopicArn != null) { requestNotificationsConfiguration_notificationsConfiguration_SnsTopicArn = cmdletContext.NotificationsConfiguration_SnsTopicArn; } if (requestNotificationsConfiguration_notificationsConfiguration_SnsTopicArn != null) { request.NotificationsConfiguration.SnsTopicArn = requestNotificationsConfiguration_notificationsConfiguration_SnsTopicArn; requestNotificationsConfigurationIsNull = false; } System.String requestNotificationsConfiguration_notificationsConfiguration_SqsQueueArn = null; if (cmdletContext.NotificationsConfiguration_SqsQueueArn != null) { requestNotificationsConfiguration_notificationsConfiguration_SqsQueueArn = cmdletContext.NotificationsConfiguration_SqsQueueArn; } if (requestNotificationsConfiguration_notificationsConfiguration_SqsQueueArn != null) { request.NotificationsConfiguration.SqsQueueArn = requestNotificationsConfiguration_notificationsConfiguration_SqsQueueArn; requestNotificationsConfigurationIsNull = false; } // determine if request.NotificationsConfiguration should be set to null if (requestNotificationsConfigurationIsNull) { request.NotificationsConfiguration = null; } if (cmdletContext.Tag != null) { request.Tags = cmdletContext.Tag; } 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); }