Skip to content

aws.ec2.describe_network_interface_attribute

Example SQL Queries

SELECT * FROM
aws.ec2.describe_network_interface_attribute
WHERE
"network_interface_id" = 'VALUE';

Description

Describes a network interface attribute. You can specify only one attribute at a time.

Table Definition

Column NameColumn Data Type
network_interface_id Required Input Column

The ID of the network interface.

VARCHAR
attribute Input Column

The attribute of the network interface. This parameter is required.

VARCHAR
dry_run Input Column

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

BOOLEAN
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_aws_region Input Column

The AWS region to use.

VARCHAR
associate_public_ip_address

Indicates whether to assign a public IPv4 address to a network interface. This option can be enabled for any network interface but will only apply to the primary network interface (eth0).

BOOLEAN
attachment

The attachment (if any) of the network interface.

STRUCT(
"attach_time" TIMESTAMP_S,
"attachment_id" VARCHAR,
"delete_on_termination" BOOLEAN,
"device_index" BIGINT,
"network_card_index" BIGINT,
"instance_id" VARCHAR,
"instance_owner_id" VARCHAR,
"status" VARCHAR,
"ena_srd_specification" STRUCT(
"ena_srd_enabled" BOOLEAN,
"ena_srd_udp_specification" STRUCT(
"ena_srd_udp_enabled" BOOLEAN
)
)
)
Show child fields
attachment.attach_time

The timestamp indicating when the attachment initiated.

attachment.attachment_id

The ID of the network interface attachment.

attachment.delete_on_termination

Indicates whether the network interface is deleted when the instance is terminated.

attachment.device_index

The device index of the network interface attachment on the instance.

attachment.ena_srd_specification

Configures ENA Express for the network interface that this action attaches to the instance.

Show child fields
attachment.ena_srd_specification.ena_srd_enabled

Indicates whether ENA Express is enabled for the network interface.

attachment.ena_srd_specification.ena_srd_udp_specification

Configures ENA Express for UDP network traffic.

Show child fields
attachment.ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled

Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.

attachment.instance_id

The ID of the instance.

attachment.instance_owner_id

The Amazon Web Services account ID of the owner of the instance.

attachment.network_card_index

The index of the network card.

attachment.status

The attachment state.

description

The description of the network interface.

STRUCT(
"value" VARCHAR
)
Show child fields
description.value

The attribute value. The value is case-sensitive.

groups

The security groups associated with the network interface.

STRUCT(
"group_name" VARCHAR,
"group_id" VARCHAR
)[]
Show child fields
groups[]
Show child fields
groups[].group_id

The ID of the security group.

groups[].group_name

The name of the security group.

source_dest_check

Indicates whether source/destination checking is enabled.

STRUCT(
"value" BOOLEAN
)
Show child fields
source_dest_check.value

The attribute value. The valid values are true or false.