# DatadogAPIClient::V1::ServiceMapWidgetDefinition ## Properties | Name | Type | Description | Notes | | ---------------- | ----------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------- | | **custom_links** | [**Array<WidgetCustomLink>**](WidgetCustomLink.md) | List of custom links. | [optional] | | **filters** | **Array<String>** | Your environment and primary tag (or \* if enabled for your account). | | | **service** | **String** | The ID of the service you want to map. | | | **title** | **String** | The title of your widget. | [optional] | | **title_align** | [**WidgetTextAlign**](WidgetTextAlign.md) | | [optional] | | **title_size** | **String** | Size of the title. | [optional] | | **type** | [**ServiceMapWidgetDefinitionType**](ServiceMapWidgetDefinitionType.md) | | [default to 'servicemap'] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::ServiceMapWidgetDefinition.new( custom_links: null, filters: ["*"], service: , title: null, title_align: null, title_size: null, type: null ) ```