Module Values.CreateNotificationConfigurationRequestSource

Creates a new NotificationConfiguration.

Sourcetype nonrec t = {
  1. name : NotificationConfigurationName.t;
    (*

    The name of the NotificationConfiguration. Supports RFC 3986's unreserved characters.

    *)
  2. description : NotificationConfigurationDescription.t;
    (*

    The description of the NotificationConfiguration.

    *)
  3. aggregationDuration : AggregationDuration.t option;
    (*

    The aggregation preference of the NotificationConfiguration. Values: LONG Aggregate notifications for long periods of time (12 hours). SHORT Aggregate notifications for short periods of time (5 minutes). NONE Don't aggregate notifications.

    *)
  4. tags : TagMap.t option;
    (*

    A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.

    *)
}
Sourceval context_ : string
Sourceval make : ?aggregationDuration:??? -> ?tags:??? -> name:NotificationConfigurationName.t -> description:NotificationConfigurationDescription.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NotificationConfigurationName.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