published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
Dynatrace Documentation
Email integration - https://www.dynatrace.com/support/help/setup-and-configuration/integrations/problem-notifications/email-integration
Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId:
builtin:problem.notifications)
Export Example Usage
terraform-provider-dynatrace -export dynatrace.EmailNotificationdownloads the existing problem notifications via Email
The full documentation of the export feature is available here.
Create EmailNotification Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EmailNotification(name: string, args: EmailNotificationArgs, opts?: CustomResourceOptions);@overload
def EmailNotification(resource_name: str,
args: EmailNotificationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EmailNotification(resource_name: str,
opts: Optional[ResourceOptions] = None,
body: Optional[str] = None,
profile: Optional[str] = None,
subject: Optional[str] = None,
tos: Optional[Sequence[str]] = None,
active: Optional[bool] = None,
bccs: Optional[Sequence[str]] = None,
ccs: Optional[Sequence[str]] = None,
legacy_id: Optional[str] = None,
name: Optional[str] = None,
notify_closed_problems: Optional[bool] = None)func NewEmailNotification(ctx *Context, name string, args EmailNotificationArgs, opts ...ResourceOption) (*EmailNotification, error)public EmailNotification(string name, EmailNotificationArgs args, CustomResourceOptions? opts = null)
public EmailNotification(String name, EmailNotificationArgs args)
public EmailNotification(String name, EmailNotificationArgs args, CustomResourceOptions options)
type: dynatrace:EmailNotification
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_emailnotification" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args EmailNotificationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EmailNotificationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EmailNotificationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EmailNotificationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EmailNotificationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var emailNotificationResource = new Dynatrace.EmailNotification("emailNotificationResource", new()
{
Body = "string",
Profile = "string",
Subject = "string",
Tos = new[]
{
"string",
},
Active = false,
Bccs = new[]
{
"string",
},
Ccs = new[]
{
"string",
},
LegacyId = "string",
Name = "string",
NotifyClosedProblems = false,
});
example, err := dynatrace.NewEmailNotification(ctx, "emailNotificationResource", &dynatrace.EmailNotificationArgs{
Body: pulumi.String("string"),
Profile: pulumi.String("string"),
Subject: pulumi.String("string"),
Tos: pulumi.StringArray{
pulumi.String("string"),
},
Active: pulumi.Bool(false),
Bccs: pulumi.StringArray{
pulumi.String("string"),
},
Ccs: pulumi.StringArray{
pulumi.String("string"),
},
LegacyId: pulumi.String("string"),
Name: pulumi.String("string"),
NotifyClosedProblems: pulumi.Bool(false),
})
resource "dynatrace_emailnotification" "emailNotificationResource" {
body = "string"
profile = "string"
subject = "string"
tos = ["string"]
active = false
bccs = ["string"]
ccs = ["string"]
legacy_id = "string"
name = "string"
notify_closed_problems = false
}
var emailNotificationResource = new EmailNotification("emailNotificationResource", EmailNotificationArgs.builder()
.body("string")
.profile("string")
.subject("string")
.tos("string")
.active(false)
.bccs("string")
.ccs("string")
.legacyId("string")
.name("string")
.notifyClosedProblems(false)
.build());
email_notification_resource = dynatrace.EmailNotification("emailNotificationResource",
body="string",
profile="string",
subject="string",
tos=["string"],
active=False,
bccs=["string"],
ccs=["string"],
legacy_id="string",
name="string",
notify_closed_problems=False)
const emailNotificationResource = new dynatrace.EmailNotification("emailNotificationResource", {
body: "string",
profile: "string",
subject: "string",
tos: ["string"],
active: false,
bccs: ["string"],
ccs: ["string"],
legacyId: "string",
name: "string",
notifyClosedProblems: false,
});
type: dynatrace:EmailNotification
properties:
active: false
bccs:
- string
body: string
ccs:
- string
legacyId: string
name: string
notifyClosedProblems: false
profile: string
subject: string
tos:
- string
EmailNotification Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EmailNotification resource accepts the following input properties:
- Body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- Profile string
- The ID of the associated alerting profile
- Subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- Tos List<string>
- To
- Active bool
- This setting is enabled (
true) or disabled (false) - Bccs List<string>
- BCC
- Ccs List<string>
- CC
- Legacy
Id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- Name string
- The name of the notification configuration.
- Notify
Closed boolProblems - Send email if problem is closed
- Body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- Profile string
- The ID of the associated alerting profile
- Subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- Tos []string
- To
- Active bool
- This setting is enabled (
true) or disabled (false) - Bccs []string
- BCC
- Ccs []string
- CC
- Legacy
Id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- Name string
- The name of the notification configuration.
- Notify
Closed boolProblems - Send email if problem is closed
- body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- profile string
- The ID of the associated alerting profile
- subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos list(string)
- To
- active bool
- This setting is enabled (
true) or disabled (false) - bccs list(string)
- BCC
- ccs list(string)
- CC
- legacy_
id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name string
- The name of the notification configuration.
- notify_
closed_ boolproblems - Send email if problem is closed
- body String
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- profile String
- The ID of the associated alerting profile
- subject String
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos List<String>
- To
- active Boolean
- This setting is enabled (
true) or disabled (false) - bccs List<String>
- BCC
- ccs List<String>
- CC
- legacy
Id String - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name String
- The name of the notification configuration.
- notify
Closed BooleanProblems - Send email if problem is closed
- body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- profile string
- The ID of the associated alerting profile
- subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos string[]
- To
- active boolean
- This setting is enabled (
true) or disabled (false) - bccs string[]
- BCC
- ccs string[]
- CC
- legacy
Id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name string
- The name of the notification configuration.
- notify
Closed booleanProblems - Send email if problem is closed
- body str
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- profile str
- The ID of the associated alerting profile
- subject str
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos Sequence[str]
- To
- active bool
- This setting is enabled (
true) or disabled (false) - bccs Sequence[str]
- BCC
- ccs Sequence[str]
- CC
- legacy_
id str - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name str
- The name of the notification configuration.
- notify_
closed_ boolproblems - Send email if problem is closed
- body String
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- profile String
- The ID of the associated alerting profile
- subject String
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos List<String>
- To
- active Boolean
- This setting is enabled (
true) or disabled (false) - bccs List<String>
- BCC
- ccs List<String>
- CC
- legacy
Id String - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name String
- The name of the notification configuration.
- notify
Closed BooleanProblems - Send email if problem is closed
Outputs
All input properties are implicitly available as output properties. Additionally, the EmailNotification resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing EmailNotification Resource
Get an existing EmailNotification resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EmailNotificationState, opts?: CustomResourceOptions): EmailNotification@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
bccs: Optional[Sequence[str]] = None,
body: Optional[str] = None,
ccs: Optional[Sequence[str]] = None,
legacy_id: Optional[str] = None,
name: Optional[str] = None,
notify_closed_problems: Optional[bool] = None,
profile: Optional[str] = None,
subject: Optional[str] = None,
tos: Optional[Sequence[str]] = None) -> EmailNotificationfunc GetEmailNotification(ctx *Context, name string, id IDInput, state *EmailNotificationState, opts ...ResourceOption) (*EmailNotification, error)public static EmailNotification Get(string name, Input<string> id, EmailNotificationState? state, CustomResourceOptions? opts = null)public static EmailNotification get(String name, Output<String> id, EmailNotificationState state, CustomResourceOptions options)resources: _: type: dynatrace:EmailNotification get: id: ${id}import {
to = dynatrace_emailnotification.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Active bool
- This setting is enabled (
true) or disabled (false) - Bccs List<string>
- BCC
- Body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- Ccs List<string>
- CC
- Legacy
Id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- Name string
- The name of the notification configuration.
- Notify
Closed boolProblems - Send email if problem is closed
- Profile string
- The ID of the associated alerting profile
- Subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- Tos List<string>
- To
- Active bool
- This setting is enabled (
true) or disabled (false) - Bccs []string
- BCC
- Body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- Ccs []string
- CC
- Legacy
Id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- Name string
- The name of the notification configuration.
- Notify
Closed boolProblems - Send email if problem is closed
- Profile string
- The ID of the associated alerting profile
- Subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- Tos []string
- To
- active bool
- This setting is enabled (
true) or disabled (false) - bccs list(string)
- BCC
- body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- ccs list(string)
- CC
- legacy_
id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name string
- The name of the notification configuration.
- notify_
closed_ boolproblems - Send email if problem is closed
- profile string
- The ID of the associated alerting profile
- subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos list(string)
- To
- active Boolean
- This setting is enabled (
true) or disabled (false) - bccs List<String>
- BCC
- body String
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- ccs List<String>
- CC
- legacy
Id String - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name String
- The name of the notification configuration.
- notify
Closed BooleanProblems - Send email if problem is closed
- profile String
- The ID of the associated alerting profile
- subject String
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos List<String>
- To
- active boolean
- This setting is enabled (
true) or disabled (false) - bccs string[]
- BCC
- body string
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- ccs string[]
- CC
- legacy
Id string - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name string
- The name of the notification configuration.
- notify
Closed booleanProblems - Send email if problem is closed
- profile string
- The ID of the associated alerting profile
- subject string
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos string[]
- To
- active bool
- This setting is enabled (
true) or disabled (false) - bccs Sequence[str]
- BCC
- body str
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- ccs Sequence[str]
- CC
- legacy_
id str - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name str
- The name of the notification configuration.
- notify_
closed_ boolproblems - Send email if problem is closed
- profile str
- The ID of the associated alerting profile
- subject str
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos Sequence[str]
- To
- active Boolean
- This setting is enabled (
true) or disabled (false) - bccs List<String>
- BCC
- body String
- The template of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
- ccs List<String>
- CC
- legacy
Id String - The ID of these settings when referred to from resources requiring the REST API V1 keys
- name String
- The name of the notification configuration.
- notify
Closed BooleanProblems - Send email if problem is closed
- profile String
- The ID of the associated alerting profile
- subject String
The subject of the email notifications. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntity}: A short description of the problem and impacted entity (or multiple impacted entities).
{ImpactedEntityNames}: The entity impacted by the problem.
{NamesOfImpactedEntities}: The names of all entities that are impacted by the problem.
{PID}: Unique system identifier of the reported problem.
{ProblemID}: Display number of the reported problem.
{ProblemImpact}: Impact level of the problem. Possible values are APPLICATION, SERVICE, or INFRASTRUCTURE.
{ProblemSeverity}: Severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, or CUSTOM_ALERT.
{ProblemTitle}: Short description of the problem.
{ProblemURL}: URL of the problem within Dynatrace.
{State}: Problem state. Possible values are OPEN or RESOLVED.
{Tags}: Comma separated list of tags that are defined for all impacted entities. To refer to the value of a specific tag, specify the tag's key in square brackets: {Tags[key]}. If the tag does not have any assigned value, the placeholder will be replaced by an empty string. The placeholder will not be replaced if the tag key does not exist.
- tos List<String>
- To
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
published on Tuesday, Jun 9, 2026 by Pulumiverse