Class EmailNotification
Email notification of an autoscale event.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class EmailNotification
Constructors
EmailNotification()
Initializes a new instance of the EmailNotification class.
Declaration
public EmailNotification ();
EmailNotification(Nullable<Boolean>, Nullable<Boolean>, IList<String>)
Initializes a new instance of the EmailNotification class.
Declaration
public EmailNotification (Nullable<bool> sendToSubscriptionAdministrator = null, Nullable<bool> sendToSubscriptionCoAdministrators = null, System.Collections.Generic.IList<string> customEmails = null);
Parameters
|
Nullable<Boolean>
sendToSubscriptionAdministrator
a value indicating whether to send email to subscription administrator. |
|
Nullable<Boolean>
sendToSubscriptionCoAdministrators
a value indicating whether to send email to subscription co-administrators. |
|
IList<String>
customEmails
the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored. |
Properties
CustomEmails
Gets or sets the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="customEmails")]
public System.Collections.Generic.IList<string> CustomEmails { get; set; }
Property Value
|
IList<String>
|
SendToSubscriptionAdministrator
Gets or sets a value indicating whether to send email to subscription administrator.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="sendToSubscriptionAdministrator")]
public Nullable<bool> SendToSubscriptionAdministrator { get; set; }
Property Value
|
Nullable<Boolean>
|