components
Creates, updates, deletes, gets or lists a components resource.
Overview
| Name | components |
| Type | Resource |
| Id | aws.ssm_sap.components |
Fields
The following fields are returned by SELECT queries:
- get_component
- list_components
| Name | Datatype | Description |
|---|---|---|
component | object | The component of an application registered with AWS Systems Manager for SAP. |
tags | object | The tags of a component. |
| Name | Datatype | Description |
|---|---|---|
application_id | string | The ID of the application. (pattern: <code>[\w\d.-]+</code>) |
arn | string | The Amazon Resource Name (ARN) of the component summary. (pattern: <code>arn:(.+:){2,4}.+$|^arn:(.+:){1,3}.+/.+</code>) |
component_id | string | The ID of the component. (pattern: <code>[\w\d-]+</code>) |
component_type | string | The type of the component. (HANA, HANA_NODE, ABAP, ASCS, DIALOG, WEBDISP, WD, ERS) |
tags | object | The tags of the component. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_component | select | region | Gets the component of an application registered with AWS Systems Manager for SAP. | |
list_components | select | region | Lists all the components registered with AWS Systems Manager for SAP. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_component
- list_components
Gets the component of an application registered with AWS Systems Manager for SAP.
SELECT
component,
tags
FROM aws.ssm_sap.components
WHERE region = '{{ region }}' -- required
;
Lists all the components registered with AWS Systems Manager for SAP.
SELECT
application_id,
arn,
component_id,
component_type,
tags
FROM aws.ssm_sap.components
WHERE region = '{{ region }}' -- required
;