Values.ResourceSourceDescribes a resource associated with a resource share in RAM.
type nonrec t = {arn : String_.t option;The Amazon Resource Name (ARN) of the resource.
*)type_ : String_.t option;The resource type. This takes the form of: service-code:resource-code, and is case-insensitive. For example, an Amazon EC2 Subnet would be represented by the string ec2:subnet.
*)resourceGroupArn : String_.t option;The Amazon Resource Name (ARN) of the resource group. This value is available only if the resource is part of a resource group.
*)status : ResourceStatus.t option;The current status of the resource.
*)statusMessage : String_.t option;A message about the status of the resource.
*)creationTime : DateTime.t option;The date and time when the resource was associated with the resource share.
*)lastUpdatedTime : DateTime.t option;The date an time when the association between the resource and the resource share was last updated.
*)resourceRegionScope : ResourceRegionScope.t option;Specifies the scope of visibility of this resource: REGIONAL – The resource can be accessed only by using requests that target the Amazon Web Services Region in which the resource exists. GLOBAL – The resource can be accessed from any Amazon Web Services Region.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of DateTime.t ])
list ]