Module Values.TargetSource

The target account, organizational unit, or the root that is associated with an Security Hub CSPM configuration. The configuration can be a configuration policy or self-managed behavior.

Sourcetype nonrec t = {
  1. accountId : NonEmptyString.t option;
    (*

    The Amazon Web Services account ID of the target account.

    *)
  2. organizationalUnitId : NonEmptyString.t option;
    (*

    The organizational unit ID of the target organizational unit.

    *)
  3. rootId : NonEmptyString.t option;
    (*

    The ID of the organization root.

    *)
}
Sourceval make : ?accountId:??? -> ?organizationalUnitId:??? -> ?rootId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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