Values.ResourceShareAssociationSourceDescribes an association between a resource share and either a principal or a resource.
type nonrec t = {associatedEntity : String_.t option;The associated entity. This can be either of the following: For a resource association, this is the Amazon Resource Name (ARN) of the resource. For principal associations, this is one of the following: The ID of an Amazon Web Services account The Amazon Resource Name (ARN) of an organization in Organizations The ARN of an organizational unit (OU) in Organizations The ARN of an IAM role The ARN of an IAM user
*)associationType : ResourceShareAssociationType.t option;The type of entity included in this association.
*)status : ResourceShareAssociationStatus.t option;The current status of the association.
*)statusMessage : String_.t option;A message about the status of the association.
*)creationTime : DateTime.t option;The date and time when the association was created.
*)lastUpdatedTime : DateTime.t option;The date and time when the association was last updated.
*)external_ : Boolean.t option;Indicates whether the principal belongs to the same organization in Organizations as the Amazon Web Services account that owns the resource share.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of String_.t
| `Timestamp of DateTime.t ])
list ]