文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
GetBucketLocation
搭配 a AWS SDK 或 CLI 使用
下列程式碼範例示範如何使用 GetBucketLocation
。
- CLI
-
- AWS CLI
-
如果存在限制
my-bucket
,下列命令會擷取名為 之儲存貯體的位置限制條件:aws s3api get-bucket-location --bucket
my-bucket
輸出:
{ "LocationConstraint": "us-west-2" }
-
如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 GetBucketLocation
。
-
- PowerShell
-
- for PowerShell 工具
-
範例 1:如果存在限制,此命令會傳回儲存貯體 's3testbucket' 的位置限制。
Get-S3BucketLocation -BucketName 'amzn-s3-demo-bucket'
輸出:
Value ----- ap-south-1
-
如需 API 詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考中的 GetBucketLocation。
-
- Rust
-
- Rust 的 SDK
-
注意
還有更多 on GitHub。尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 async fn show_buckets( strict: bool, client: &Client, region: BucketLocationConstraint, ) -> Result<(), S3ExampleError> { let mut buckets = client.list_buckets().into_paginator().send(); let mut num_buckets = 0; let mut in_region = 0; while let Some(Ok(output)) = buckets.next().await { for bucket in output.buckets() { num_buckets += 1; if strict { let r = client .get_bucket_location() .bucket(bucket.name().unwrap_or_default()) .send() .await?; if r.location_constraint() == Some(®ion) { println!("{}", bucket.name().unwrap_or_default()); in_region += 1; } } else { println!("{}", bucket.name().unwrap_or_default()); } } } println!(); if strict { println!( "Found {} buckets in the {} region out of a total of {} buckets.", in_region, region, num_buckets ); } else { println!("Found {} buckets in all regions.", num_buckets); } Ok(()) }
-
如需 API 詳細資訊,請參閱 GetBucketLocation
AWS for Rust SDK 參考中的 API。
-
GetBucketLifecycleConfiguration
GetBucketLogging