public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.ElasticMapReduce.Model.GetStudioSessionMappingRequest(); if (cmdletContext.IdentityId != null) { request.IdentityId = cmdletContext.IdentityId; } if (cmdletContext.IdentityName != null) { request.IdentityName = cmdletContext.IdentityName; } if (cmdletContext.IdentityType != null) { request.IdentityType = cmdletContext.IdentityType; } if (cmdletContext.StudioId != null) { request.StudioId = cmdletContext.StudioId; } 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); }
private Amazon.ElasticMapReduce.Model.GetStudioSessionMappingResponse CallAWSServiceOperation(IAmazonElasticMapReduce client, Amazon.ElasticMapReduce.Model.GetStudioSessionMappingRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Elastic MapReduce", "GetStudioSessionMapping"); try { #if DESKTOP return(client.GetStudioSessionMapping(request)); #elif CORECLR return(client.GetStudioSessionMappingAsync(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; } }