factory S3Path.fromJson(Map<String, dynamic> json) { return S3Path( bucket: json['Bucket'] as String, key: json['Key'] as String, ); }