文件範例儲存庫中有更多 AWS SDK可用的AWS SDK範例
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
CreateHostedZone
搭配 使用 CLI
下列程式碼範例示範如何使用 CreateHostedZone
。
- CLI
-
- AWS CLI
-
若要建立託管區域
下列
create-hosted-zone
命令example.com
會使用呼叫者參考 新增名為 的託管區域2014-04-01-18:47
。選用的註解包含空格,因此必須以引號括住:aws route53 create-hosted-zone --name
example.com
--caller-reference2014-04-01-18:47
--hosted-zone-config Comment="command-line version"如需詳細資訊,請參閱《Amazon Route 53 開發人員指南》中的使用託管區域。
-
如需API詳細資訊,請參閱 AWS CLI 命令參考CreateHostedZone
中的 。
-
- PowerShell
-
- 適用於 的工具 PowerShell
-
範例 1:建立新的託管區域,名稱為 'example.com',與可重複使用的委派集相關聯。請注意,您必須為 CallerReference 參數提供值,以便需要在必要時重試的請求,而不會有執行操作兩次的風險。因為託管區域是在 中建立VPC,所以它會自動私有,而且您不應該設定 -HostedZoneConfig_PrivateZone parameter。
$params = @{ Name="example.com" CallerReference="myUniqueIdentifier" HostedZoneConfig_Comment="This is my first hosted zone" DelegationSetId="NZ8X2CISAMPLE" VPC_VPCId="vpc-1a2b3c4d" VPC_VPCRegion="us-east-1" } New-R53HostedZone @params
-
如需API詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考CreateHostedZone中的 。
-
ChangeResourceRecordSets
DeleteHostedZone