Module Values.NotificationConfigurationStructureSource

Contains the complete list of fields for a NotificationConfiguration.

Sourcetype nonrec t = {
  1. arn : NotificationConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the NotificationConfiguration resource.

    *)
  2. name : NotificationConfigurationName.t option;
    (*

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

    *)
  3. description : NotificationConfigurationDescription.t option;
    (*

    The description of the NotificationConfiguration.

    *)
  4. status : NotificationConfigurationStatus.t option;
    (*

    The current status of the NotificationConfiguration.

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

    The creation time of the NotificationConfiguration.

    *)
  6. 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.

    *)
  7. subtype : NotificationConfigurationSubtype.t option;
    (*

    The subtype of the notification configuration.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?creationTime:??? -> ?aggregationDuration:??? -> ?subtype:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NotificationConfigurationArn.t | `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