Module Values.AccountEnrollmentStatusSource

Describes the enrollment status of an organization's member accounts in Compute Optimizer.

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

    The Amazon Web Services account ID.

    *)
  2. status : Status.t option;
    (*

    The account enrollment status.

    *)
  3. statusReason : StatusReason.t option;
    (*

    The reason for the account enrollment status. For example, an account might show a status of Pending because member accounts of an organization require more time to be enrolled in the service.

    *)
  4. lastUpdatedTimestamp : LastUpdatedTimestamp.t option;
    (*

    The Unix epoch timestamp, in seconds, of when the account enrollment status was last updated.

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