Values.ResourceSnapshotSummarySourceProvides a concise summary of a resource snapshot, including its unique identifier and version information. This structure is used to quickly reference and identify specific versions of resource snapshots.
type nonrec t = {arn : ResourceSnapshotArn.t option;The Amazon Resource Name (ARN) of the snapshot. This globally unique identifier can be used for cross-service references and in IAM policies.
*)revision : ResourceSnapshotRevision.t option;The revision number of the snapshot. This integer value is incremented each time the snapshot is updated, allowing for version tracking of the resource snapshot.
*)resourceType : ResourceType.t option;The type of resource snapshotted.
*)resourceId : ResourceIdentifier.t option;The identifier of the specific resource snapshotted. The format might vary depending on the ResourceType.
*)resourceSnapshotTemplateName : ResourceTemplateName.t option;The name of the template used to create the snapshot.
*)createdBy : AwsAccount.t option;The AWS account ID of the entity that owns the resource from which the snapshot was created.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of ResourceSnapshotRevision.t
| `String of ResourceSnapshotArn.t ])
list ]