Module Values.PrincipalSource

Describes a principal for use with Resource Access Manager.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The ID of the principal that can be associated with a resource share.

    *)
  2. resourceShareArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of a resource share the principal is associated with.

    *)
  3. creationTime : DateTime.t option;
    (*

    The date and time when the principal was associated with the resource share.

    *)
  4. lastUpdatedTime : DateTime.t option;
    (*

    The date and time when the association between the resource share and the principal was last updated.

    *)
  5. external_ : Boolean.t option;
    (*

    Indicates the relationship between the Amazon Web Services account the principal belongs to and the account that owns the resource share: True – The two accounts belong to same organization. False – The two accounts do not belong to the same organization.

    *)
}
Sourceval make : ?id:??? -> ?resourceShareArn:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> ?external_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Timestamp of DateTime.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