CreateSnapshotFromVolumeRecoveryPointOutput.fromJson constructor
Implementation
factory CreateSnapshotFromVolumeRecoveryPointOutput.fromJson(
    Map<String, dynamic> json) {
  return CreateSnapshotFromVolumeRecoveryPointOutput(
    snapshotId: json['SnapshotId'] as String?,
    volumeARN: json['VolumeARN'] as String?,
    volumeRecoveryPointTime: json['VolumeRecoveryPointTime'] as String?,
  );
}