application_component_details
Creates, updates, deletes, gets or lists an application_component_details resource.
Overview
| Name | application_component_details |
| Type | Resource |
| Id | aws.migrationhubstrategy.application_component_details |
Fields
The following fields are returned by SELECT queries:
- get_application_component_details
| Name | Datatype | Description |
|---|---|---|
application_component_detail | object | Detailed information about an application component. |
associated_applications | array | The associated application group as defined in AWS Application Discovery Service. |
associated_server_ids | array | A list of the IDs of the servers on which the application component is running. |
more_application_resource | boolean | Set to true if the application component belongs to more than one application group. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_application_component_details | select | application_component_id, region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
application_component_id | string | The ID of the application component. The ID is unique within an AWS account. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_application_component_details
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
;