最近更新时间:2021-10-29
以下代码用于获取桶的policy。
using System;
using Amazon.S3; using Amazon.S3.Model;
namespace GetBucketPolicy { class Program { static void Main(string[] args) { var Ak = "xxx"; var Sk = "xxx"; var endpoint = "http://s3.test.com"; AmazonS3Client serviceClient = new AmazonS3Client(Ak,Sk, new AmazonS3Config{ ServiceURL = endpoint });
try { GetBucketPolicyResponse response; // Retrieve current policy GetBucketPolicyRequest getRequest = new GetBucketPolicyRequest { BucketName = "xxx" }; response = serviceClient.GetBucketPolicyAsync(getRequest).GetAwaiter().GetResult();;
Console.WriteLine(response.Policy);
} catch (AmazonS3Exception e) { Console.WriteLine(e.Message); throw; } catch (Exception e) { Console.WriteLine(e); throw; }
}
} } |