component_configuration_recommendations
Creates, updates, deletes, gets or lists a component_configuration_recommendations resource.
Overview
| Name | component_configuration_recommendations |
| Type | Resource |
| Id | aws.application_insights.component_configuration_recommendations |
Fields
The following fields are returned by SELECT queries:
- describe_component_configuration_recommendation
| Name | Datatype | Description |
|---|---|---|
component_configuration | string | The recommended configuration settings of the component. The value is the escaped JSON of the configuration. (pattern: <code>[\S\s]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_component_configuration_recommendation | select | region | Describes the recommended monitoring configuration of the 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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_component_configuration_recommendation
Describes the recommended monitoring configuration of the component.
SELECT
component_configuration
FROM aws.application_insights.component_configuration_recommendations
WHERE region = '{{ region }}' -- required
;