Module Values.NotificationHubOverviewSource

Describes an overview of a NotificationHub. A NotificationConfiguration is an account-level setting used to select the Regions where you want to store, process and replicate your notifications.

Sourcetype nonrec t = {
  1. notificationHubRegion : Region.t option;
    (*

    The Region of the resource.

    *)
  2. statusSummary : NotificationHubStatusSummary.t option;
    (*

    The status summary of the resource.

    *)
  3. creationTime : CreationTime.t option;
    (*

    The date and time the NotificationHubOverview was created.

    *)
  4. lastActivationTime : LastActivationTime.t option;
    (*

    The most recent time this NotificationHub had an ACTIVE status.

    *)
}
Sourceval make : ?notificationHubRegion:??? -> ?statusSummary:??? -> ?creationTime:??? -> ?lastActivationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Region.t | `Structure of (string * [> `Enum of string | `String of NotificationHubStatusReason.t ]) list | `Timestamp of CreationTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t