Module Values.ResourceSnapshotSummarySource

Provides 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
  3. resourceType : ResourceType.t option;
    (*

    The type of resource snapshotted.

    *)
  4. resourceId : ResourceIdentifier.t option;
    (*

    The identifier of the specific resource snapshotted. The format might vary depending on the ResourceType.

    *)
  5. resourceSnapshotTemplateName : ResourceTemplateName.t option;
    (*

    The name of the template used to create the snapshot.

    *)
  6. createdBy : AwsAccount.t option;
    (*

    The AWS account ID of the entity that owns the resource from which the snapshot was created.

    *)
}
Sourceval make : ?arn:??? -> ?revision:??? -> ?resourceType:??? -> ?resourceId:??? -> ?resourceSnapshotTemplateName:??? -> ?createdBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ResourceSnapshotRevision.t | `String of ResourceSnapshotArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t