Module Values.MemberSource

Provides information about an account that's associated with an Amazon Macie administrator account.

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

    The Amazon Web Services account ID for the account.

    *)
  2. administratorAccountId : string option;
    (*

    The Amazon Web Services account ID for the administrator account.

    *)
  3. arn : string option;
    (*

    The Amazon Resource Name (ARN) of the account.

    *)
  4. email : string option;
    (*

    The email address for the account. This value is null if the account is associated with the administrator account through Organizations.

    *)
  5. invitedAt : string option;
    (*

    The date and time, in UTC and extended ISO 8601 format, when an Amazon Macie membership invitation was last sent to the account. This value is null if a Macie membership invitation hasn't been sent to the account.

    *)
  6. masterAccountId : string option;
    (*

    (Deprecated) The Amazon Web Services account ID for the administrator account. This property has been replaced by the administratorAccountId property and is retained only for backward compatibility.

    *)
  7. relationshipStatus : RelationshipStatus.t option;
    (*

    The current status of the relationship between the account and the administrator account.

    *)
  8. tags : TagMap.t option;
    (*

    A map of key-value pairs that specifies which tags (keys and values) are associated with the account in Amazon Macie.

    *)
  9. updatedAt : string option;
    (*

    The date and time, in UTC and extended ISO 8601 format, of the most recent change to the status of the relationship between the account and the administrator account.

    *)
}
Sourceval make : ?accountId:??? -> ?administratorAccountId:??? -> ?arn:??? -> ?email:??? -> ?invitedAt:??? -> ?masterAccountId:??? -> ?relationshipStatus:??? -> ?tags:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Timestamp of string ]) 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