SetSubnets 搭配 使用 CLI - AWS SDK 程式碼範例

文件範例儲存庫中有更多 AWS SDK可用的AWS SDK範例 GitHub 。

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

SetSubnets 搭配 使用 CLI

下列程式碼範例示範如何使用 SetSubnets

CLI
AWS CLI

啟用負載平衡器的可用區域

此範例會啟用指定負載平衡器之指定子網路的可用區域。

命令:

aws elbv2 set-subnets --load-balancer-arn arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188 --subnets subnet-8360a9e7 subnet-b7d581c0

輸出:

{ "AvailabilityZones": [ { "SubnetId": "subnet-8360a9e7", "ZoneName": "us-west-2a" }, { "SubnetId": "subnet-b7d581c0", "ZoneName": "us-west-2b" } ] }
  • 如需API詳細資訊,請參閱 AWS CLI 命令參考SetSubnets中的 。

PowerShell
的工具 PowerShell

範例 1:此範例會修改指定負載平衡器的子網路。

Set-ELB2Subnet -LoadBalancerArn 'arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/test-alb/3651b4394dd9a24f' -Subnet 'subnet-7d8a0a51','subnet-c37a67a6'

輸出:

LoadBalancerAddresses SubnetId ZoneName --------------------- -------- -------- {} subnet-7d8a0a51 us-east-1c {} subnet-c37a67a6 us-east-1b
  • 如需API詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考SetSubnets中的 。