# DatadogAPIClient::V1::LogsURLParser ## Properties | Name | Type | Description | Notes | | ---------------------------- | --------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------- | | **is_enabled** | **Boolean** | Whether or not the processor is enabled. | [optional][default to false] | | **name** | **String** | Name of the processor. | [optional] | | **normalize_ending_slashes** | **Boolean** | Normalize the ending slashes or not. | [optional][default to false] | | **sources** | **Array<String>** | Array of source attributes. | | | **target** | **String** | Name of the parent attribute that contains all the extracted details from the `sources`. | [default to 'http.url_details'] | | **type** | [**LogsURLParserType**](LogsURLParserType.md) | | [default to 'url-parser'] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::LogsURLParser.new( is_enabled: null, name: null, normalize_ending_slashes: null, sources: ["http.url"], target: http.url_details, type: null ) ```