EmailNotification Constructors

Definition

Overloads

EmailNotification()

Initializes a new instance of the EmailNotification class.

EmailNotification(Nullable<Boolean>, Nullable<Boolean>, IList<String>)

Initializes a new instance of the EmailNotification class.

EmailNotification()

Initializes a new instance of the EmailNotification class.

public EmailNotification ();
Public Sub New ()

Applies to

EmailNotification(Nullable<Boolean>, Nullable<Boolean>, IList<String>)

Initializes a new instance of the EmailNotification class.

public EmailNotification (bool? sendToSubscriptionAdministrator = default, bool? sendToSubscriptionCoAdministrators = default, System.Collections.Generic.IList<string> customEmails = default);
new Microsoft.Azure.Management.Monitor.Models.EmailNotification : Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Monitor.Models.EmailNotification
Public Sub New (Optional sendToSubscriptionAdministrator As Nullable(Of Boolean) = Nothing, Optional sendToSubscriptionCoAdministrators As Nullable(Of Boolean) = Nothing, Optional customEmails As IList(Of String) = Nothing)

Parameters

sendToSubscriptionAdministrator
Nullable<Boolean>

a value indicating whether to send email to subscription administrator.

sendToSubscriptionCoAdministrators
Nullable<Boolean>

a value indicating whether to send email to subscription co-administrators.

customEmails
IList<String>

the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.

Applies to