Module Values_0.AuditNotificationTargetSource

Information about the targets to which audit notifications are sent.

Sourcetype nonrec t = {
  1. targetArn : TargetArn.t option;
    (*

    The ARN of the target (SNS topic) to which audit notifications are sent.

    *)
  2. roleArn : RoleArn.t option;
    (*

    The ARN of the role that grants permission to send notifications to the target.

    *)
  3. enabled : Enabled.t option;
    (*

    True if notifications to the target are enabled.

    *)
}
Sourceval make : ?targetArn:??? -> ?roleArn:??? -> ?enabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `String of TargetArn.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