Module Values.MemberAccountSource

Contains information about a member account.

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

    The Amazon Resource Name (ARN) of the notification configuration associated with the member account.

    *)
  2. accountId : AccountId.t option;
    (*

    The AWS account ID of the member account.

    *)
  3. status : MemberAccountNotificationConfigurationStatus.t option;
    (*

    The current status of the member account.

    *)
  4. statusReason : String_.t option;
    (*

    The reason for the current status of the member account.

    *)
  5. organizationalUnitId : OrganizationalUnitId.t option;
    (*

    The unique identifier of the organizational unit containing the member account.

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