Skip to content

aws.migrationhubstrategy.get_server_details

Example SQL Queries

SELECT * FROM
aws.migrationhubstrategy.get_server_details
WHERE
"server_id" = 'VALUE';

Description

Retrieves detailed information about a specified server.

Table Definition

Column NameColumn Data Type
server_id Required Input Column

The ID of the server.

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_applications

The associated application group the server belongs to, as defined in AWS Application Discovery Service.

STRUCT(
"id" VARCHAR,
"name" VARCHAR
)[]
Show child fields
associated_applications[]
Show child fields
associated_applications[].id

ID of the application as defined in Application Discovery Service.

associated_applications[].name

Name of the application as defined in Application Discovery Service.

server_detail

Detailed information about the server.

STRUCT(
"antipattern_report_s3_object" STRUCT(
"s3_bucket" VARCHAR,
"s3key" VARCHAR
),
"antipattern_report_status" VARCHAR,
"antipattern_report_status_message" VARCHAR,
"application_component_strategy_summary" STRUCT(
"count" BIGINT,
"strategy" VARCHAR
)[],
"data_collection_status" VARCHAR,
"id" VARCHAR,
"last_analyzed_timestamp" TIMESTAMP_S,
"list_antipattern_severity_summary" STRUCT(
"count" BIGINT,
"severity" VARCHAR
)[],
"name" VARCHAR,
"recommendation_set" STRUCT(
"strategy" VARCHAR,
"target_destination" VARCHAR,
"transformation_tool" STRUCT(
"description" VARCHAR,
"name" VARCHAR,
"tranformation_tool_installation_link" VARCHAR
)
),
"server_error" STRUCT(
"server_error_category" VARCHAR
),
"server_type" VARCHAR,
"status_message" VARCHAR,
"system_info" STRUCT(
"cpu_architecture" VARCHAR,
"file_system_type" VARCHAR,
"network_info_list" STRUCT(
"interface_name" VARCHAR,
"ip_address" VARCHAR,
"mac_address" VARCHAR,
"net_mask" VARCHAR
)[],
"os_info" STRUCT(
"type" VARCHAR,
"version" VARCHAR
)
)
)
Show child fields
server_detail.antipattern_report_s3_object

The S3 bucket name and Amazon S3 key name for anti-pattern report.

Show child fields
server_detail.antipattern_report_s3_object.s3_bucket

The S3 bucket name.

server_detail.antipattern_report_s3_object.s3key

The Amazon S3 key name.

server_detail.antipattern_report_status

The status of the anti-pattern report generation.

server_detail.antipattern_report_status_message

A message about the status of the anti-pattern report generation.

server_detail.application_component_strategy_summary[]
Show child fields
server_detail.application_component_strategy_summary[].count

The count of recommendations per strategy.

server_detail.application_component_strategy_summary[].strategy

The name of recommended strategy.

server_detail.data_collection_status

The status of assessment for the server.

server_detail.id

The server ID.

server_detail.last_analyzed_timestamp

The timestamp of when the server was assessed.

server_detail.list_antipattern_severity_summary[]
Show child fields
server_detail.list_antipattern_severity_summary[].count

Contains the count of anti-patterns.

server_detail.list_antipattern_severity_summary[].severity

Contains the severity of anti-patterns.

server_detail.name

The name of the server.

server_detail.recommendation_set

A set of recommendations.

Show child fields
server_detail.recommendation_set.strategy

The recommended strategy.

server_detail.recommendation_set.target_destination

The recommended target destination.

server_detail.recommendation_set.transformation_tool

The target destination for the recommendation set.

Show child fields
server_detail.recommendation_set.transformation_tool.description

Description of the tool.

server_detail.recommendation_set.transformation_tool.name

Name of the tool.

server_detail.recommendation_set.transformation_tool.tranformation_tool_installation_link

URL for installing the tool.

server_detail.server_error

The error in server analysis.

Show child fields
server_detail.server_error.server_error_category

The error category of server analysis.

server_detail.server_type

The type of server.

server_detail.status_message

A message about the status of data collection, which contains detailed descriptions of any error messages.

server_detail.system_info

System information about the server.

Show child fields
server_detail.system_info.cpu_architecture

CPU architecture type for the server.

server_detail.system_info.file_system_type

File system type for the server.

server_detail.system_info.network_info_list[]
Show child fields
server_detail.system_info.network_info_list[].interface_name

Information about the name of the interface of the server for which the assessment was run.

server_detail.system_info.network_info_list[].ip_address

Information about the IP address of the server for which the assessment was run.

server_detail.system_info.network_info_list[].mac_address

Information about the MAC address of the server for which the assessment was run.

server_detail.system_info.network_info_list[].net_mask

Information about the subnet mask of the server for which the assessment was run.

server_detail.system_info.os_info

Operating system corresponding to a server.

Show child fields
server_detail.system_info.os_info.type

Information about the type of operating system.

server_detail.system_info.os_info.version

Information about the version of operating system.