Module Values.AdministratorSource

Information about the Detective administrator account for an organization.

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

    The Amazon Web Services account identifier of the Detective administrator account for the organization.

    *)
  2. graphArn : GraphArn.t option;
    (*

    The ARN of the organization behavior graph.

    *)
  3. delegationTime : Timestamp.t option;
    (*

    The date and time when the Detective administrator account was enabled. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

    *)
}
Sourceval make : ?accountId:??? -> ?graphArn:??? -> ?delegationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.t | `Timestamp of Timestamp.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