Values.ShareDetailsSourceThe details of a resource share.
type nonrec t = {resourceArn : String_.t option;The Arn of the shared resource.
*)resourceId : String_.t option;The ID of the shared resource.
*)principalSubscriber : String_.t option;The principal subscriber is the account that is sharing the resource.
*)ownerId : String_.t option;The account ID for the data owner. The owner creates the resource share.
*)status : ShareStatus.t option;The status of the share.
*)statusMessage : StatusMessage.t option;The status message for a resource share. It provides additional details about the share status.
*)creationTime : CreationTime.t option;The timestamp of when the resource share was created.
*)updateTime : UpdateTime.t option;The timestamp of the resource share update.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of CreationTime.t ])
list ]