private async Task <CreateApiKeyResponse> CreateApiKeyRequest(string identityId)
 {
     return(await _amazonApiGatewayClient.CreateApiKeyAsync(new CreateApiKeyRequest
     {
         Name = identityId,
         Description = $"Dev Portal API Key for Identity Pool user {identityId}",
         Enabled = true,
         GenerateDistinctId = true
     }));
 }
Ejemplo n.º 2
0
 private Amazon.APIGateway.Model.CreateApiKeyResponse CallAWSServiceOperation(IAmazonAPIGateway client, Amazon.APIGateway.Model.CreateApiKeyRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon API Gateway", "CreateApiKey");
     try
     {
         #if DESKTOP
         return(client.CreateApiKey(request));
         #elif CORECLR
         return(client.CreateApiKeyAsync(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;
     }
 }