log_pattern_sets
Creates, updates, deletes, gets or lists a log_pattern_sets resource.
Overview
| Name | log_pattern_sets |
| Type | Resource |
| Id | aws.application_insights.log_pattern_sets |
Fields
The following fields are returned by SELECT queries:
- list_log_pattern_sets
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Amazon Web Services account ID for the resource group owner. (pattern: <code>^\d{12}$</code>) |
log_pattern_sets | array | The list of log pattern sets. |
next_token | string | The token used to retrieve the next page of results. This value is null when there are no more results to return. (pattern: <code>.+</code>) |
resource_group_name | string | The name of the resource group. (pattern: <code>[a-zA-Z0-9.-_]*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_log_pattern_sets | select | region | Lists the log pattern sets in the specific application. |
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
- list_log_pattern_sets
Lists the log pattern sets in the specific application.
SELECT
account_id,
log_pattern_sets,
next_token,
resource_group_name
FROM aws.application_insights.log_pattern_sets
WHERE region = '{{ region }}' -- required
;