AWS Doc SDK Examples
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
または AWS SDK ListHostedZonesByName
で使用する CLI
以下のコード例は、ListHostedZonesByName
の使用方法を示しています。
- CLI
-
- AWS CLI
-
次のコマンドは、ドメイン名順に最大 100 のホストゾーンを一覧表示します。
aws route53 list-hosted-zones-by-name
出力:
{ "HostedZones": [ { "ResourceRecordSetCount": 2, "CallerReference": "test20150527-2", "Config": { "Comment": "test2", "PrivateZone": false }, "Id": "/hostedzone/Z119WBBTVP5WFX", "Name": "2.example.com." }, { "ResourceRecordSetCount": 2, "CallerReference": "test20150527-1", "Config": { "Comment": "test", "PrivateZone": false }, "Id": "/hostedzone/Z3P5QSUBK4POTI", "Name": "www.example.com." } ], "IsTruncated": false, "MaxItems": "100" }
次のコマンドは、 で始まる名前順にホストゾーンを一覧表示します
www.example.com
。aws route53 list-hosted-zones-by-name --dns-name
www.example.com
出力:
{ "HostedZones": [ { "ResourceRecordSetCount": 2, "CallerReference": "mwunderl20150527-1", "Config": { "Comment": "test", "PrivateZone": false }, "Id": "/hostedzone/Z3P5QSUBK4POTI", "Name": "www.example.com." } ], "DNSName": "www.example.com", "IsTruncated": false, "MaxItems": "100" }
-
API 詳細については、AWS CLI 「 コマンドリファレンスListHostedZonesByName
」の「」を参照してください。
-
- PowerShell
-
- のツール PowerShell
-
例 1: パブリックホストゾーンとプライベートホストゾーンをドメイン名ASCII順に返します。
Get-R53HostedZonesByName
例 2: パブリックホストゾーンとプライベートホストゾーンを、指定したDNS名前からドメイン名ASCII順に返します。
Get-R53HostedZonesByName -DnsName example2.com
例 3: この例では、まず 1 つの項目を取得し、次にすべてのゾーンが返されるまで 2 つずつ繰り返して、各呼び出し後に
$AWSHistory
スタックのサービスレスポンスにアタッチされたマーカープロパティを使用して、ホストゾーンを手動で列挙する方法を示します。Get-R53HostedZonesByName -MaxItem 1 while ($LastServiceResponse.IsTruncated) { $nextPageParams = @{ DnsName=$LastServiceResponse.NextDNSName HostedZoneId=$LastServiceResponse.NextHostedZoneId } Get-R53HostedZonesByName -MaxItem 2 @nextPageParams }
-
API 詳細については、「 コマンドレットリファレンスListHostedZonesByName」の「」を参照してください。 AWS Tools for PowerShell
-
ListHostedZones
ListQueryLoggingConfigs