AWS EBS 快照 - 相同的卷,不同的方法,它仍然是增量的吗?

AWS EBS Snapshots - Same volumes, different method, still would it be incremental?

假设我有一个 Lambda 脚本来调用 EBS 快照。几天后,我使用不同的名称和描述通过 AWS CLI 调用相同 EBS 卷的快照。新的 EBS 快照是否会通过识别 EBS 卷来增量,还是会被视为新快照?请澄清。

是的,这将是相同的增量快照。

但是,如果您稍后复制快照并对其进行加密,则会从头开始创建新快照。来自 docs:

If you copy a snapshot and encrypt it to a new CMK, a complete (non-incremental) copy is always created, resulting in additional delay and storage costs.

同样,如果您copy it到一个新区域:

If you copy a snapshot to a new Region, a complete (non-incremental) copy is always created, resulting in additional delay and storage costs.

Incremental snapshot copying 中描述了有关复制快照和增量支持的更多信息。