Skip to content

aws.snow_device_management.describe_device

Example SQL Queries

SELECT * FROM
aws.snow_device_management.describe_device
WHERE
"managed_device_id" = 'VALUE';

Description

Checks device-specific information, such as the device type, software version, IP addresses, and lock status.

Table Definition

Column NameColumn Data Type
managed_device_id Required Input Column

The ID of the device that you checked the information for.

VARCHAR
_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.

associated_with_job

The ID of the job used when ordering the device.

VARCHAR
device_capacities

The hardware specifications of the device.

STRUCT(
"available" BIGINT,
"name" VARCHAR,
"total" BIGINT,
"unit" VARCHAR,
"used" BIGINT
)[]
Show child fields
device_capacities[]
Show child fields
device_capacities[].available

The amount of capacity available for use on the device.

device_capacities[].name

The name of the type of capacity, such as memory.

device_capacities[].total

The total capacity on the device.

device_capacities[].unit

The unit of measure for the type of capacity.

device_capacities[].used

The amount of capacity used on the device.

device_state

The current state of the device.

VARCHAR
device_type

The type of Amazon Web Services Snow Family device.

VARCHAR
last_reached_out_at

When the device last contacted the Amazon Web Services Cloud. Indicates that the device is online.

TIMESTAMP_S
last_updated_at

When the device last pushed an update to the Amazon Web Services Cloud. Indicates when the device cache was refreshed.

TIMESTAMP_S
managed_device_arn

The Amazon Resource Name (ARN) of the device.

VARCHAR
physical_network_interfaces

The network interfaces available on the device.

STRUCT(
"default_gateway" VARCHAR,
"ip_address" VARCHAR,
"ip_address_assignment" VARCHAR,
"mac_address" VARCHAR,
"netmask" VARCHAR,
"physical_connector_type" VARCHAR,
"physical_network_interface_id" VARCHAR
)[]
Show child fields
physical_network_interfaces[]
Show child fields
physical_network_interfaces[].default_gateway

The default gateway of the device.

physical_network_interfaces[].ip_address

The IP address of the device.

physical_network_interfaces[].ip_address_assignment

A value that describes whether the IP address is dynamic or persistent.

physical_network_interfaces[].mac_address

The MAC address of the device.

physical_network_interfaces[].netmask

The netmask used to divide the IP address into subnets.

physical_network_interfaces[].physical_connector_type

The physical connector type.

physical_network_interfaces[].physical_network_interface_id

The physical network interface ID.

software

The software installed on the device.

STRUCT(
"install_state" VARCHAR,
"installed_version" VARCHAR,
"installing_version" VARCHAR
)
Show child fields
software.install_state

The state of the software that is installed or that is being installed on the device.

software.installed_version

The version of the software currently installed on the device.

software.installing_version

The version of the software being installed on the device.

tags

Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, such as by purpose, owner, or environment.

MAP(VARCHAR, VARCHAR)