private Amazon.EC2.Model.CreateTransitGatewayConnectPeerResponse CallAWSServiceOperation(IAmazonEC2 client, Amazon.EC2.Model.CreateTransitGatewayConnectPeerRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Elastic Compute Cloud (EC2)", "CreateTransitGatewayConnectPeer");
     try
     {
         #if DESKTOP
         return(client.CreateTransitGatewayConnectPeer(request));
         #elif CORECLR
         return(client.CreateTransitGatewayConnectPeerAsync(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.EC2.Model.CreateTransitGatewayConnectPeerRequest();


            // populate BgpOptions
            var requestBgpOptionsIsNull = true;

            request.BgpOptions = new Amazon.EC2.Model.TransitGatewayConnectRequestBgpOptions();
            System.Int64?requestBgpOptions_bgpOptions_PeerAsn = null;
            if (cmdletContext.BgpOptions_PeerAsn != null)
            {
                requestBgpOptions_bgpOptions_PeerAsn = cmdletContext.BgpOptions_PeerAsn.Value;
            }
            if (requestBgpOptions_bgpOptions_PeerAsn != null)
            {
                request.BgpOptions.PeerAsn = requestBgpOptions_bgpOptions_PeerAsn.Value;
                requestBgpOptionsIsNull    = false;
            }
            // determine if request.BgpOptions should be set to null
            if (requestBgpOptionsIsNull)
            {
                request.BgpOptions = null;
            }
            if (cmdletContext.InsideCidrBlock != null)
            {
                request.InsideCidrBlocks = cmdletContext.InsideCidrBlock;
            }
            if (cmdletContext.PeerAddress != null)
            {
                request.PeerAddress = cmdletContext.PeerAddress;
            }
            if (cmdletContext.TagSpecification != null)
            {
                request.TagSpecifications = cmdletContext.TagSpecification;
            }
            if (cmdletContext.TransitGatewayAddress != null)
            {
                request.TransitGatewayAddress = cmdletContext.TransitGatewayAddress;
            }
            if (cmdletContext.TransitGatewayAttachmentId != null)
            {
                request.TransitGatewayAttachmentId = cmdletContext.TransitGatewayAttachmentId;
            }

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