computation_model_execution_summaries
Creates, updates, deletes, gets or lists a computation_model_execution_summaries resource.
Overview
| Name | computation_model_execution_summaries |
| Type | Resource |
| Id | aws.iotsitewise.computation_model_execution_summaries |
Fields
The following fields are returned by SELECT queries:
- describe_computation_model_execution_summary
| Name | Datatype | Description |
|---|---|---|
computation_model_execution_summary | object | Contains the execution summary of the computation model. |
computation_model_id | string | The ID of the computation model. (pattern: <code>^(?!00000000-0000-0000-0000-000000000000)[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$</code>) |
resolve_to | object | The detailed resource this execution summary resolves to. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_computation_model_execution_summary | select | computation_model_id, region | resolveToResourceType, resolveToResourceId | Retrieves information about the execution summary of a computation model. |
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 |
|---|---|---|
computation_model_id | string | The ID of the computation model. |
region | string | AWS region (default: us-east-1) |
resolveToResourceId | string | The ID of the resolved resource. |
resolveToResourceType | string | The type of the resolved resource. |
SELECT examples
- describe_computation_model_execution_summary
Retrieves information about the execution summary of a computation model.
SELECT
computation_model_execution_summary,
computation_model_id,
resolve_to
FROM aws.iotsitewise.computation_model_execution_summaries
WHERE computation_model_id = '{{ computation_model_id }}' -- required
AND region = '{{ region }}' -- required
AND resolveToResourceType = '{{ resolveToResourceType }}'
AND resolveToResourceId = '{{ resolveToResourceId }}'
;