Snow Family デバイス上の Snow Family デバイス上の Amazon S3 互換ストレージ内のバケットまたはリージョンバケットのリストの取得 - AWS Snowball Edge デベロッパーガイド

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

Snow Family デバイス上の Snow Family デバイス上の Amazon S3 互換ストレージ内のバケットまたはリージョンバケットのリストの取得

list-regional-buckets または list-bucketsを使用して、Snow Family デバイスバケット上の Amazon S3 互換ストレージを一覧表示します AWS CLI。

例 を使用してバケットまたはリージョンバケットのリストを取得する AWS CLI
s3api syntax
aws s3api list-buckets --profile your-profile --endpoint-url https://s3api-endpoint-ip

list-buckets コマンドの詳細については、 AWS CLI 「 コマンドリファレンス」の「list-buckets」を参照してください。

s3control syntax
aws s3control list-regional-buckets --account-id 123456789012 --profile your-profile --endpoint-url https://s3ctrlapi-endpoint-ip

list-regional-buckets コマンドの詳細については、 AWS CLI 「 コマンドリファレンスlist-regional-buckets」の「」を参照してください。

Java SDKの次の例では、Snowball Edge デバイスのバケットのリストを取得します。詳細については、「Amazon Simple Storage Service APIリファレンスListBuckets」の「」を参照してください。

import com.amazonaws.services.s3.model.*; public void listBuckets() { ListBucketsRequest reqListBuckets = new ListBucketsRequest() .withAccountId(AccountId) ListBucketsResult respListBuckets = s3APIClient.RegionalBuckets(reqListBuckets); System.out.printf("ListBuckets Response: %s%n", respListBuckets.toString()); }

次の PowerShell 例では、Snowball Edge デバイスのバケットのリストを取得します。

Get-S3CRegionalBucketList -AccountId 012345678910 -Endpoint "https://snowball_ip" -Region snow

次の 。NET例では、Snowball Edge デバイスのバケットのリストを取得します。

using Amazon.S3Control; using Amazon.S3Control.Model; namespace SnowTest; internal class Program { static async Task Main(string[] args) { var config = new AmazonS3ControlConfig { ServiceURL = "https://snowball_ip", AuthenticationRegion = "snow" // Note that this is not RegionEndpoint }; var client = new AmazonS3ControlClient(config); var response = await client.ListRegionalBucketsAsync(new ListRegionalBucketsRequest() { AccountId = "012345678910" }); } }