Skip to main content

application_component_details

Creates, updates, deletes, gets or lists an application_component_details resource.

Overview

Nameapplication_component_details
TypeResource
Idaws.migrationhubstrategy.application_component_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_component_detailobjectDetailed information about an application component.
associated_applicationsarrayThe associated application group as defined in AWS Application Discovery Service.
associated_server_idsarrayA list of the IDs of the servers on which the application component is running.
more_application_resourcebooleanSet to true if the application component belongs to more than one application group.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_application_component_detailsselectapplication_component_id, regionRetrieves details about an application component.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
application_component_idstringThe ID of the application component. The ID is unique within an AWS account.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves details about an application component.

SELECT
application_component_detail,
associated_applications,
associated_server_ids,
more_application_resource
FROM aws.migrationhubstrategy.application_component_details
WHERE application_component_id = '{{ application_component_id }}' -- required
AND region = '{{ region }}' -- required
;