如何获取Amazon Cloudfront .NET API中的失效请求列表?

问题描述:

我在API文档中引用了this部分,但我不确定通过API发出的请求是否正确。这是我的代码看起来像:如何获取Amazon Cloudfront .NET API中的失效请求列表?

public class CfListInvalidation 
{ 
    string accessKeyID = ConfigurationManager.AppSettings["awsAccessID"]; 
    string secretAccessKeyID = ConfigurationManager.AppSettings["awsSecretAnswer"]; 
    string distributionId = ConfigurationManager.AppSettings["distributionId"]; 
    AmazonCloudFront client; 

    public void SendCommand() 
    { 

     Console.WriteLine("Connecting to Amazon Cloud Front..."); 

     using (client = AWSClientFactory.CreateAmazonCloudFrontClient(accessKeyID, secretAccessKeyID)) 
     { 
      ListInvalidationsResult result = new ListInvalidationsResult(); 

      IAsyncResult r = client.BeginListInvalidations(new ListInvalidationsRequest 
      { 
       DistributionId = distributionId,           
      }, new AsyncCallback(CfListInvalidation.CompleteRead), result);     

     } 
    } 

    static void CompleteRead(IAsyncResult result) 
    { 
     ListInvalidationsResult r = result.AsyncState as ListInvalidationsResult; 

     if (r != null && r.InvalidationList != null) 
     { 
      Console.WriteLine("listing items.."); 

      foreach (InvalidationSummary s in r.InvalidationList.Items) 
      { 
       Console.WriteLine(string.Format("ID: {0} - Status: {1}", s.Id, s.Status)); 
      } 
     } 

     else { 
      Console.WriteLine("No Items Found"); 
     } 
    } 
} 

我做错了什么?

+0

你有没有遇到任何问题,或者你只是想确保你的做法是正确的? – 2013-04-08 22:24:39

使用Begin *方法时,您需要调用匹配的End *方法来完成请求并检索结果对象。看一看this guide的一些例子。

下面是从图示的基本方法指导简化样本:

// Begin method 
client.BeginPutObject(request, CallbackWithClient, client); 

// Callback 
public static void CallbackWithClient(IAsyncResult asyncResult) 
{ 
    AmazonS3Client s3Client = (AmazonS3Client) asyncResult.AsyncState; 
    PutObjectResponse response = s3Client.EndPutObject(asyncResult); 

    // Process the response 
}