文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
DescribeNetworkInterfaceAttribute
搭配 CLI 使用
下列程式碼範例示範如何使用 DescribeNetworkInterfaceAttribute
。
- CLI
-
- AWS CLI
-
描述網路介面的連接屬性
此範例命令說明指定網路介面的
attachment
屬性。命令:
aws ec2 describe-network-interface-attribute --network-interface-id
eni-686ea200
--attributeattachment
輸出:
{ "NetworkInterfaceId": "eni-686ea200", "Attachment": { "Status": "attached", "DeviceIndex": 0, "AttachTime": "2015-05-21T20:02:20.000Z", "InstanceId": "i-1234567890abcdef0", "DeleteOnTermination": true, "AttachmentId": "eni-attach-43348162", "InstanceOwnerId": "123456789012" } }
描述網路介面的描述屬性
此範例命令說明指定網路介面的
description
屬性。命令:
aws ec2 describe-network-interface-attribute --network-interface-id
eni-686ea200
--attributedescription
輸出:
{ "NetworkInterfaceId": "eni-686ea200", "Description": { "Value": "My description" } }
描述網路介面的 groupSet 屬性
此範例命令說明指定網路介面的
groupSet
屬性。命令:
aws ec2 describe-network-interface-attribute --network-interface-id
eni-686ea200
--attributegroupSet
輸出:
{ "NetworkInterfaceId": "eni-686ea200", "Groups": [ { "GroupName": "my-security-group", "GroupId": "sg-903004f8" } ] }
描述網路介面的 sourceDestCheck 屬性
此範例命令說明指定網路介面的
sourceDestCheck
屬性。命令:
aws ec2 describe-network-interface-attribute --network-interface-id
eni-686ea200
--attributesourceDestCheck
輸出:
{ "NetworkInterfaceId": "eni-686ea200", "SourceDestCheck": { "Value": true } }
-
如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 DescribeNetworkInterfaceAttribute
。
-
- PowerShell
-
- for PowerShell 工具
-
範例 1:此範例說明指定的網路介面。
Get-EC2NetworkInterfaceAttribute -NetworkInterfaceId eni-12345678 -Attribute Attachment
輸出:
Attachment : Amazon.EC2.Model.NetworkInterfaceAttachment
範例 2:此範例說明指定的網路介面。
Get-EC2NetworkInterfaceAttribute -NetworkInterfaceId eni-12345678 -Attribute Description
輸出:
Description : My description
範例 3:此範例說明指定的網路介面。
Get-EC2NetworkInterfaceAttribute -NetworkInterfaceId eni-12345678 -Attribute GroupSet
輸出:
Groups : {my-security-group}
範例 4:此範例說明指定的網路介面。
Get-EC2NetworkInterfaceAttribute -NetworkInterfaceId eni-12345678 -Attribute SourceDestCheck
輸出:
SourceDestCheck : True
-
如需 API 詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考中的 DescribeNetworkInterfaceAttribute。
-
DescribeNetworkAcls
DescribeNetworkInterfaces