AWS 문서 예제 리포지토리에서 더 많은 SDK
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
또는 와 GetBucketLocation
AWS SDK 함께 사용 CLI
다음 코드 예제는 GetBucketLocation
의 사용 방법을 보여 줍니다.
- CLI
-
- AWS CLI
-
다음 명령은 이름이
my-bucket
인 버킷의 위치 제약 조건을 검색합니다(제약 조건이 있는 경우).aws s3api get-bucket-location --bucket
my-bucket
출력:
{ "LocationConstraint": "us-west-2" }
-
자세한 API 내용은 명령 참조GetBucketLocation
의 섹션을 참조하세요. AWS CLI
-
- PowerShell
-
- 용 도구 PowerShell
-
예시 1: 이 명령은 제약 조건이 있는 경우 's3testbucket' 버킷에 대한 위치 제약 조건을 반환합니다.
Get-S3BucketLocation -BucketName 'amzn-s3-demo-bucket'
출력:
Value ----- ap-south-1
-
API 자세한 내용은 Cmdlet 참조GetBucketLocation의 섹션을 참조하세요. AWS Tools for PowerShell
-
- Rust
-
- SDK Rust용
-
참고
에 대한 자세한 내용은 를 참조하세요 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 자세한 내용은 Rust 참조 GetBucketLocation
의 섹션을 참조하세요. AWS SDK API
-
GetBucketLifecycleConfiguration
GetBucketLogging