Skip to main content

log_pattern_sets

Creates, updates, deletes, gets or lists a log_pattern_sets resource.

Overview

Namelog_pattern_sets
TypeResource
Idaws.application_insights.log_pattern_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_idstringThe Amazon Web Services account ID for the resource group owner. (pattern: <code>^\d{12}$</code>)
log_pattern_setsarrayThe list of log pattern sets.
next_tokenstringThe 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_namestringThe name of the resource group. (pattern: <code>[a-zA-Z0-9.-_]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_log_pattern_setsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;