Values.AggregateResourceIdentifierSourceThe details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region.
type nonrec t = {sourceAccountId : AccountId.t;The 12-digit account ID of the source account.
*)sourceRegion : AwsRegion.t;The source region where data is aggregated.
*)resourceId : ResourceId.t;The ID of the Amazon Web Services resource.
*)resourceType : ResourceType.t;The type of the Amazon Web Services resource.
*)resourceName : ResourceName.t option;The name of the Amazon Web Services resource.
*)}val make :
?resourceName:??? ->
sourceAccountId:AccountId.t ->
sourceRegion:AwsRegion.t ->
resourceId:ResourceId.t ->
resourceType:ResourceType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of AccountId.t ]) list ]